@apple/tree-sitter-pkl 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (698) hide show
  1. package/.editorconfig +46 -0
  2. package/.gitattributes +50 -0
  3. package/CHANGELOG.adoc +48 -0
  4. package/CMakeLists.txt +66 -0
  5. package/Cargo.lock +21 -21
  6. package/Cargo.toml +1 -1
  7. package/Makefile +97 -0
  8. package/README.md +11 -13
  9. package/bindings/c/tree-sitter-pkl.pc.in +10 -0
  10. package/bindings/c/tree_sitter/tree-sitter-pkl.h +16 -0
  11. package/bindings/go/binding.go +15 -0
  12. package/bindings/go/binding_test.go +15 -0
  13. package/bindings/node/binding_test.js +9 -0
  14. package/bindings/node/index.d.ts +27 -0
  15. package/bindings/python/tests/test_binding.py +12 -0
  16. package/bindings/python/tree_sitter_pkl/__init__.py +42 -0
  17. package/bindings/python/tree_sitter_pkl/__init__.pyi +10 -0
  18. package/bindings/python/tree_sitter_pkl/binding.c +35 -0
  19. package/bindings/python/tree_sitter_pkl/py.typed +0 -0
  20. package/bindings/swift/TreeSitterPklTests/TreeSitterPklTests.swift +12 -0
  21. package/go.mod +5 -0
  22. package/gradle.properties +5 -0
  23. package/gradlew +251 -0
  24. package/gradlew.bat +94 -0
  25. package/grammar.js +223 -193
  26. package/licenserc.toml +23 -0
  27. package/package.json +3 -2
  28. package/pyproject.toml +29 -0
  29. package/queries/highlights.scm +11 -16
  30. package/queries/injections.scm +1 -1
  31. package/queries/locals.scm +2 -2
  32. package/scripts/license-header.txt +13 -0
  33. package/setup.py +77 -0
  34. package/src/grammar.json +957 -900
  35. package/src/node-types.json +4392 -2028
  36. package/src/parser.c +31780 -35682
  37. package/src/scanner.c +42 -6
  38. package/src/tree_sitter/alloc.h +4 -4
  39. package/src/tree_sitter/array.h +2 -1
  40. package/src/tree_sitter/parser.h +29 -7
  41. package/test/corpus/basic/annotation.txt +28 -30
  42. package/test/corpus/basic/comments.txt +5 -5
  43. package/test/corpus/basic/shebangComment.txt +1 -1
  44. package/test/corpus/basic/types.txt +86 -131
  45. package/test/corpus/class/constModifier.txt +4 -5
  46. package/test/corpus/class/fixedModifier.txt +4 -5
  47. package/test/corpus/expr/binary.txt +75 -77
  48. package/test/corpus/expr/binary2.txt +18 -0
  49. package/test/corpus/expr/functionLiteral.txt +7 -8
  50. package/test/corpus/expr/if.txt +3 -3
  51. package/test/corpus/expr/import.txt +1 -1
  52. package/test/corpus/expr/let.txt +2 -2
  53. package/test/corpus/expr/new.txt +8 -10
  54. package/test/corpus/expr/qualifiedAccess.txt +34 -27
  55. package/test/corpus/expr/read.txt +8 -11
  56. package/test/corpus/expr/subscript.txt +48 -0
  57. package/test/corpus/expr/super.txt +27 -0
  58. package/test/corpus/expr/throw.txt +2 -3
  59. package/test/corpus/expr/trace.txt +2 -3
  60. package/test/corpus/expr/typeTest.txt +29 -0
  61. package/test/corpus/expr/unaryMinus.txt +22 -0
  62. package/test/corpus/module/moduleHeader1.txt +1 -1
  63. package/test/corpus/module/moduleHeader2.txt +1 -1
  64. package/test/corpus/module/moduleHeader3.error.txt +5 -5
  65. package/test/corpus/module/moduleHeader4.txt +1 -1
  66. package/test/corpus/number/underscores.txt +25 -25
  67. package/test/corpus/object/mixedEntriesAndElements.txt +52 -0
  68. package/test/corpus/object/objectAmendChain.txt +4 -4
  69. package/test/corpus/object/objectBodyParams.txt +21 -0
  70. package/test/corpus/object/objectElementWithTypeConstraint +30 -0
  71. package/test/corpus/object/objectElementsWithParens.txt +10 -10
  72. package/test/corpus/object/objectElementsWithTypeParams +65 -0
  73. package/test/corpus/object/objectGenerator.txt +8 -8
  74. package/test/corpus/object/objectMember.txt +27 -27
  75. package/test/corpus/object/objectMemberPredicate.txt +14 -14
  76. package/test/corpus/object/objectSpread.txt +8 -8
  77. package/test/corpus/object/objectWhenGenerator.txt +10 -10
  78. package/test/corpus/snippetTests/annotation/annotation1.txt +284 -0
  79. package/test/corpus/snippetTests/annotation/annotation2.txt +20 -0
  80. package/test/corpus/snippetTests/annotation/annotation3.txt +24 -0
  81. package/test/corpus/snippetTests/annotation/annotation4.txt +32 -0
  82. package/test/corpus/snippetTests/annotation/annotation5.txt +28 -0
  83. package/test/corpus/snippetTests/annotation/annotation6.txt +19 -0
  84. package/test/corpus/snippetTests/annotation/annotationIsNotExpression.txt +29 -0
  85. package/test/corpus/snippetTests/annotation/deprecated1.txt +385 -0
  86. package/test/corpus/snippetTests/annotation/deprecated2.txt +99 -0
  87. package/test/corpus/snippetTests/annotation/deprecated3.txt +155 -0
  88. package/test/corpus/snippetTests/annotation/deprecatedNoRepeatedWarnings.txt +58 -0
  89. package/test/corpus/snippetTests/annotation/deprecatedWithMessage1.txt +405 -0
  90. package/test/corpus/snippetTests/annotation/deprecatedWithMessage2.txt +104 -0
  91. package/test/corpus/snippetTests/annotation/deprecatedWithMessage3.txt +155 -0
  92. package/test/corpus/snippetTests/annotation/deprecationSuperMethod.txt +144 -0
  93. package/test/corpus/snippetTests/api/Resource.txt +128 -0
  94. package/test/corpus/snippetTests/api/analyze1.txt +176 -0
  95. package/test/corpus/snippetTests/api/any.txt +523 -0
  96. package/test/corpus/snippetTests/api/anyConverter.txt +161 -0
  97. package/test/corpus/snippetTests/api/baseModule.txt +170 -0
  98. package/test/corpus/snippetTests/api/dataSize.txt +1165 -0
  99. package/test/corpus/snippetTests/api/duration.txt +800 -0
  100. package/test/corpus/snippetTests/api/float.txt +1334 -0
  101. package/test/corpus/snippetTests/api/int.txt +1142 -0
  102. package/test/corpus/snippetTests/api/intseq.txt +1021 -0
  103. package/test/corpus/snippetTests/api/jsonParser1.txt +279 -0
  104. package/test/corpus/snippetTests/api/jsonParser2.txt +294 -0
  105. package/test/corpus/snippetTests/api/jsonParser3.txt +143 -0
  106. package/test/corpus/snippetTests/api/jsonParser4.txt +112 -0
  107. package/test/corpus/snippetTests/api/jsonParser5.txt +171 -0
  108. package/test/corpus/snippetTests/api/jsonRenderer1.json.txt +41 -0
  109. package/test/corpus/snippetTests/api/jsonRenderer2b.txt +300 -0
  110. package/test/corpus/snippetTests/api/jsonRenderer3.json.txt +334 -0
  111. package/test/corpus/snippetTests/api/jsonRenderer4.txt +388 -0
  112. package/test/corpus/snippetTests/api/jsonRenderer5.txt +388 -0
  113. package/test/corpus/snippetTests/api/jsonRenderer6.json.txt +163 -0
  114. package/test/corpus/snippetTests/api/jsonRenderer7.txt +53 -0
  115. package/test/corpus/snippetTests/api/jsonRenderer8.txt +30 -0
  116. package/test/corpus/snippetTests/api/jsonRendererEmptyComposites.txt +114 -0
  117. package/test/corpus/snippetTests/api/jsonnetRenderer3.jsonnet.txt +356 -0
  118. package/test/corpus/snippetTests/api/jsonnetRenderer4.txt +393 -0
  119. package/test/corpus/snippetTests/api/jsonnetRenderer5.txt +393 -0
  120. package/test/corpus/snippetTests/api/jsonnetRenderer6.jsonnet.txt +169 -0
  121. package/test/corpus/snippetTests/api/jsonnetRenderer7.txt +36 -0
  122. package/test/corpus/snippetTests/api/list.txt +4432 -0
  123. package/test/corpus/snippetTests/api/listNullable.txt +1513 -0
  124. package/test/corpus/snippetTests/api/map.txt +1144 -0
  125. package/test/corpus/snippetTests/api/mapping.txt +948 -0
  126. package/test/corpus/snippetTests/api/mathModule.txt +1426 -0
  127. package/test/corpus/snippetTests/api/module.txt +77 -0
  128. package/test/corpus/snippetTests/api/moduleOutput.txt +24 -0
  129. package/test/corpus/snippetTests/api/moduleOutput2.txt +25 -0
  130. package/test/corpus/snippetTests/api/pListRenderer1.plist.txt +41 -0
  131. package/test/corpus/snippetTests/api/pListRenderer3.plist.txt +348 -0
  132. package/test/corpus/snippetTests/api/pListRenderer4.txt +375 -0
  133. package/test/corpus/snippetTests/api/pListRenderer5.txt +424 -0
  134. package/test/corpus/snippetTests/api/pListRenderer6.plist.txt +163 -0
  135. package/test/corpus/snippetTests/api/pListRenderer7.txt +30 -0
  136. package/test/corpus/snippetTests/api/pair.txt +170 -0
  137. package/test/corpus/snippetTests/api/pcfRenderer1.txt +95 -0
  138. package/test/corpus/snippetTests/api/pcfRenderer2b.txt +301 -0
  139. package/test/corpus/snippetTests/api/pcfRenderer3.txt +350 -0
  140. package/test/corpus/snippetTests/api/pcfRenderer4.txt +391 -0
  141. package/test/corpus/snippetTests/api/pcfRenderer5.txt +460 -0
  142. package/test/corpus/snippetTests/api/pcfRenderer6.txt +118 -0
  143. package/test/corpus/snippetTests/api/pcfRenderer8.txt +16 -0
  144. package/test/corpus/snippetTests/api/platformModule.txt +147 -0
  145. package/test/corpus/snippetTests/api/plistRenderer2b.txt +300 -0
  146. package/test/corpus/snippetTests/api/propertiesRenderer1.properties.txt +41 -0
  147. package/test/corpus/snippetTests/api/propertiesRenderer10.properties.txt +24 -0
  148. package/test/corpus/snippetTests/api/propertiesRenderer11.txt +30 -0
  149. package/test/corpus/snippetTests/api/propertiesRenderer2b.txt +303 -0
  150. package/test/corpus/snippetTests/api/propertiesRenderer4.txt +484 -0
  151. package/test/corpus/snippetTests/api/propertiesRenderer5.txt +491 -0
  152. package/test/corpus/snippetTests/api/propertiesRenderer8.properties.txt +628 -0
  153. package/test/corpus/snippetTests/api/propertiesRenderer9.properties.txt +292 -0
  154. package/test/corpus/snippetTests/api/propertiesRendererBug66849708.properties.txt +106 -0
  155. package/test/corpus/snippetTests/api/protobuf2.txt +408 -0
  156. package/test/corpus/snippetTests/api/reflect1.txt +1686 -0
  157. package/test/corpus/snippetTests/api/reflect2.txt +480 -0
  158. package/test/corpus/snippetTests/api/reflect3.txt +193 -0
  159. package/test/corpus/snippetTests/api/reflectedDeclaration.txt +64 -0
  160. package/test/corpus/snippetTests/api/regex.txt +320 -0
  161. package/test/corpus/snippetTests/api/releaseModule.txt +262 -0
  162. package/test/corpus/snippetTests/api/renderDirective2.txt +374 -0
  163. package/test/corpus/snippetTests/api/semverModule.txt +2224 -0
  164. package/test/corpus/snippetTests/api/set.txt +3891 -0
  165. package/test/corpus/snippetTests/api/setNullable.txt +1113 -0
  166. package/test/corpus/snippetTests/api/typeAliases.txt +449 -0
  167. package/test/corpus/snippetTests/api/typeConverters.txt +211 -0
  168. package/test/corpus/snippetTests/api/xmlRenderer1.xml.txt +174 -0
  169. package/test/corpus/snippetTests/api/xmlRenderer2b.txt +306 -0
  170. package/test/corpus/snippetTests/api/xmlRenderer3.xml.txt +320 -0
  171. package/test/corpus/snippetTests/api/xmlRenderer4.txt +401 -0
  172. package/test/corpus/snippetTests/api/xmlRenderer5.txt +402 -0
  173. package/test/corpus/snippetTests/api/xmlRenderer6.xml.txt +169 -0
  174. package/test/corpus/snippetTests/api/xmlRenderer8.txt +36 -0
  175. package/test/corpus/snippetTests/api/xmlRendererCData.xml.txt +48 -0
  176. package/test/corpus/snippetTests/api/xmlRendererElement.xml.txt +103 -0
  177. package/test/corpus/snippetTests/api/xmlRendererHtml.xml.txt +212 -0
  178. package/test/corpus/snippetTests/api/xmlRendererInline.xml.txt +175 -0
  179. package/test/corpus/snippetTests/api/xmlRendererInline3.xml.txt +152 -0
  180. package/test/corpus/snippetTests/api/yamlParser1Yaml11.txt +22 -0
  181. package/test/corpus/snippetTests/api/yamlParser1Yaml12.txt +22 -0
  182. package/test/corpus/snippetTests/api/yamlParser2.txt +253 -0
  183. package/test/corpus/snippetTests/api/yamlParser3.txt +194 -0
  184. package/test/corpus/snippetTests/api/yamlParser4.txt +198 -0
  185. package/test/corpus/snippetTests/api/yamlParser5.txt +86 -0
  186. package/test/corpus/snippetTests/api/yamlParser6.txt +92 -0
  187. package/test/corpus/snippetTests/api/yamlRenderer1.yml.txt +41 -0
  188. package/test/corpus/snippetTests/api/yamlRenderer2b.txt +300 -0
  189. package/test/corpus/snippetTests/api/yamlRenderer3.yml.txt +342 -0
  190. package/test/corpus/snippetTests/api/yamlRenderer4.txt +441 -0
  191. package/test/corpus/snippetTests/api/yamlRenderer5.txt +441 -0
  192. package/test/corpus/snippetTests/api/yamlRenderer6.yml.txt +163 -0
  193. package/test/corpus/snippetTests/api/yamlRenderer7.txt +30 -0
  194. package/test/corpus/snippetTests/api/yamlRenderer8.yml.txt +142 -0
  195. package/test/corpus/snippetTests/api/yamlRendererBug66849708.yml.txt +106 -0
  196. package/test/corpus/snippetTests/api/yamlRendererEmpty.yml.txt +326 -0
  197. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth2.yml.txt +227 -0
  198. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth4.yml.txt +32 -0
  199. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth5.yml.txt +32 -0
  200. package/test/corpus/snippetTests/api/yamlRendererStream1.txt +140 -0
  201. package/test/corpus/snippetTests/api/yamlRendererStringsYaml11.txt +22 -0
  202. package/test/corpus/snippetTests/api/yamlRendererStringsYaml12.txt +22 -0
  203. package/test/corpus/snippetTests/basic/amendsChains.txt +275 -0
  204. package/test/corpus/snippetTests/basic/as.txt +1468 -0
  205. package/test/corpus/snippetTests/basic/as2.txt +1077 -0
  206. package/test/corpus/snippetTests/basic/as3.txt +297 -0
  207. package/test/corpus/snippetTests/basic/baseModule.txt +11 -0
  208. package/test/corpus/snippetTests/basic/boolean.txt +430 -0
  209. package/test/corpus/snippetTests/basic/constModifier.txt +324 -0
  210. package/test/corpus/snippetTests/basic/constModifier2.txt +227 -0
  211. package/test/corpus/snippetTests/basic/constModifier3.txt +136 -0
  212. package/test/corpus/snippetTests/basic/constModifier4.txt +64 -0
  213. package/test/corpus/snippetTests/basic/constModifier5.txt +68 -0
  214. package/test/corpus/snippetTests/basic/dataSize.txt +658 -0
  215. package/test/corpus/snippetTests/basic/duration.txt +618 -0
  216. package/test/corpus/snippetTests/basic/exceptions.txt +18 -0
  217. package/test/corpus/snippetTests/basic/fixedProperty1.txt +62 -0
  218. package/test/corpus/snippetTests/basic/fixedProperty2.txt +33 -0
  219. package/test/corpus/snippetTests/basic/fixedProperty3.txt +31 -0
  220. package/test/corpus/snippetTests/basic/fixedProperty4.txt +15 -0
  221. package/test/corpus/snippetTests/basic/fixedProperty5.txt +20 -0
  222. package/test/corpus/snippetTests/basic/fixedProperty6.txt +15 -0
  223. package/test/corpus/snippetTests/basic/if.txt +83 -0
  224. package/test/corpus/snippetTests/basic/import1.txt +51 -0
  225. package/test/corpus/snippetTests/basic/import1b.txt +51 -0
  226. package/test/corpus/snippetTests/basic/import2.txt +34 -0
  227. package/test/corpus/snippetTests/basic/import3.txt +34 -0
  228. package/test/corpus/snippetTests/basic/imported.txt +19 -0
  229. package/test/corpus/snippetTests/basic/indexExpressions.txt +53 -0
  230. package/test/corpus/snippetTests/basic/intseq.txt +365 -0
  231. package/test/corpus/snippetTests/basic/is.txt +1504 -0
  232. package/test/corpus/snippetTests/basic/is2.txt +677 -0
  233. package/test/corpus/snippetTests/basic/let.txt +515 -0
  234. package/test/corpus/snippetTests/basic/letTyped.txt +293 -0
  235. package/test/corpus/snippetTests/basic/list.txt +252 -0
  236. package/test/corpus/snippetTests/basic/localMethodDynamicBinding.txt +187 -0
  237. package/test/corpus/snippetTests/basic/localMethodInAmendingModule.txt +216 -0
  238. package/test/corpus/snippetTests/basic/localMethodOverride1.txt +152 -0
  239. package/test/corpus/snippetTests/basic/localMethodOverride2.txt +173 -0
  240. package/test/corpus/snippetTests/basic/localMethodTyped.txt +564 -0
  241. package/test/corpus/snippetTests/basic/localMethodTyped2.txt +580 -0
  242. package/test/corpus/snippetTests/basic/localMethodTyped3.txt +218 -0
  243. package/test/corpus/snippetTests/basic/localMethodTyped4.txt +232 -0
  244. package/test/corpus/snippetTests/basic/localMethodTyped5.txt +211 -0
  245. package/test/corpus/snippetTests/basic/localMethodTyped6.txt +225 -0
  246. package/test/corpus/snippetTests/basic/localMethodUntyped.txt +488 -0
  247. package/test/corpus/snippetTests/basic/localModuleMemberOverride1.txt +227 -0
  248. package/test/corpus/snippetTests/basic/localModuleMemberOverride2.txt +202 -0
  249. package/test/corpus/snippetTests/basic/localProperty1.txt +33 -0
  250. package/test/corpus/snippetTests/basic/localProperty2.txt +77 -0
  251. package/test/corpus/snippetTests/basic/localPropertyAmendInAmendingModule.txt +25 -0
  252. package/test/corpus/snippetTests/basic/localPropertyInAmendingModule.txt +205 -0
  253. package/test/corpus/snippetTests/basic/localPropertyOverride1.txt +131 -0
  254. package/test/corpus/snippetTests/basic/localPropertyOverride2.txt +152 -0
  255. package/test/corpus/snippetTests/basic/localPropertyOverride3.txt +52 -0
  256. package/test/corpus/snippetTests/basic/localTypedClassMember.txt +277 -0
  257. package/test/corpus/snippetTests/basic/localTypedModuleMember.txt +265 -0
  258. package/test/corpus/snippetTests/basic/localTypedObjectMember.txt +268 -0
  259. package/test/corpus/snippetTests/basic/map.txt +398 -0
  260. package/test/corpus/snippetTests/basic/minPklVersion.txt +40 -0
  261. package/test/corpus/snippetTests/basic/moduleRef1.txt +108 -0
  262. package/test/corpus/snippetTests/basic/moduleRef2.txt +80 -0
  263. package/test/corpus/snippetTests/basic/moduleRef3.txt +112 -0
  264. package/test/corpus/snippetTests/basic/moduleRefLibrary.txt +33 -0
  265. package/test/corpus/snippetTests/basic/new.txt +1028 -0
  266. package/test/corpus/snippetTests/basic/newInAmendingModuleMethod.txt +116 -0
  267. package/test/corpus/snippetTests/basic/newInsideIf.txt +841 -0
  268. package/test/corpus/snippetTests/basic/newInsideLet.txt +869 -0
  269. package/test/corpus/snippetTests/basic/newType.txt +686 -0
  270. package/test/corpus/snippetTests/basic/nonNull.txt +131 -0
  271. package/test/corpus/snippetTests/basic/nullable.txt +239 -0
  272. package/test/corpus/snippetTests/basic/objectMember.txt +129 -0
  273. package/test/corpus/snippetTests/basic/objectMemberInvalid.txt +18 -0
  274. package/test/corpus/snippetTests/basic/objectMemberInvalid2.txt +18 -0
  275. package/test/corpus/snippetTests/basic/objectMemberInvalid3.txt +22 -0
  276. package/test/corpus/snippetTests/basic/parens.txt +59 -0
  277. package/test/corpus/snippetTests/basic/propertyDefaults.txt +126 -0
  278. package/test/corpus/snippetTests/basic/read.txt +250 -0
  279. package/test/corpus/snippetTests/basic/readGlob.txt +209 -0
  280. package/test/corpus/snippetTests/basic/semicolon.txt +18 -0
  281. package/test/corpus/snippetTests/basic/set.txt +340 -0
  282. package/test/corpus/snippetTests/basic/trace.txt +130 -0
  283. package/test/corpus/snippetTests/basic/typeResolution1.txt +31 -0
  284. package/test/corpus/snippetTests/basic/typeResolution2.txt +37 -0
  285. package/test/corpus/snippetTests/basic/typeResolution3.txt +63 -0
  286. package/test/corpus/snippetTests/basic/typeResolution4.txt +61 -0
  287. package/test/corpus/snippetTests/basic/underscore.txt +419 -0
  288. package/test/corpus/snippetTests/classes/class1.txt +54 -0
  289. package/test/corpus/snippetTests/classes/class2.txt +123 -0
  290. package/test/corpus/snippetTests/classes/class2a.txt +110 -0
  291. package/test/corpus/snippetTests/classes/class3.txt +65 -0
  292. package/test/corpus/snippetTests/classes/class4.txt +58 -0
  293. package/test/corpus/snippetTests/classes/constraints1.txt +141 -0
  294. package/test/corpus/snippetTests/classes/constraints11.txt +201 -0
  295. package/test/corpus/snippetTests/classes/constraints12.txt +204 -0
  296. package/test/corpus/snippetTests/classes/constraints13.txt +86 -0
  297. package/test/corpus/snippetTests/classes/constraints14.txt +39 -0
  298. package/test/corpus/snippetTests/classes/constraints2.txt +69 -0
  299. package/test/corpus/snippetTests/classes/constraints3.txt +97 -0
  300. package/test/corpus/snippetTests/classes/constraints4.txt +86 -0
  301. package/test/corpus/snippetTests/classes/constraints5.txt +71 -0
  302. package/test/corpus/snippetTests/classes/constraints6.txt +85 -0
  303. package/test/corpus/snippetTests/classes/constraints7.txt +148 -0
  304. package/test/corpus/snippetTests/classes/constraints8.txt +103 -0
  305. package/test/corpus/snippetTests/classes/constraints9.txt +92 -0
  306. package/test/corpus/snippetTests/classes/constraintsLambdaThis.txt +216 -0
  307. package/test/corpus/snippetTests/classes/equality.txt +123 -0
  308. package/test/corpus/snippetTests/classes/externalClass.txt +12 -0
  309. package/test/corpus/snippetTests/classes/externalFunction.txt +18 -0
  310. package/test/corpus/snippetTests/classes/externalProperty.txt +20 -0
  311. package/test/corpus/snippetTests/classes/functions1.txt +77 -0
  312. package/test/corpus/snippetTests/classes/functions2.txt +56 -0
  313. package/test/corpus/snippetTests/classes/functions3.txt +81 -0
  314. package/test/corpus/snippetTests/classes/functions4.txt +125 -0
  315. package/test/corpus/snippetTests/classes/inheritance1.txt +98 -0
  316. package/test/corpus/snippetTests/classes/inheritance2.txt +91 -0
  317. package/test/corpus/snippetTests/classes/invalidInstantiation1.txt +16 -0
  318. package/test/corpus/snippetTests/classes/invalidInstantiation2.txt +21 -0
  319. package/test/corpus/snippetTests/classes/lambdaConstraints1.txt +190 -0
  320. package/test/corpus/snippetTests/classes/listConstraints1.txt +312 -0
  321. package/test/corpus/snippetTests/classes/mapConstraints1.txt +495 -0
  322. package/test/corpus/snippetTests/classes/nullableTypes.txt +187 -0
  323. package/test/corpus/snippetTests/classes/setConstraints1.txt +312 -0
  324. package/test/corpus/snippetTests/classes/supercalls.txt +317 -0
  325. package/test/corpus/snippetTests/classes/unionTypes.txt +543 -0
  326. package/test/corpus/snippetTests/classes/unionTypesErrorAlias.txt +93 -0
  327. package/test/corpus/snippetTests/classes/unionTypesErrorDifferent1.txt +47 -0
  328. package/test/corpus/snippetTests/classes/unionTypesErrorDifferent2.txt +52 -0
  329. package/test/corpus/snippetTests/classes/unionTypesErrorMultipleAliases.txt +36 -0
  330. package/test/corpus/snippetTests/classes/unionTypesErrorNested.txt +99 -0
  331. package/test/corpus/snippetTests/classes/unionTypesErrorSimple.txt +42 -0
  332. package/test/corpus/snippetTests/classes/unionTypesErrorString1.txt +43 -0
  333. package/test/corpus/snippetTests/classes/unionTypesErrorString2.txt +85 -0
  334. package/test/corpus/snippetTests/classes/wrongType1.txt +34 -0
  335. package/test/corpus/snippetTests/classes/wrongType2.txt +47 -0
  336. package/test/corpus/snippetTests/classes/wrongType3.txt +71 -0
  337. package/test/corpus/snippetTests/classes/wrongType4.txt +77 -0
  338. package/test/corpus/snippetTests/classes/wrongType6.txt +43 -0
  339. package/test/corpus/snippetTests/errors/abstractOpenMember.txt +13 -0
  340. package/test/corpus/snippetTests/errors/analyzeImportsCannotFindModule.txt +41 -0
  341. package/test/corpus/snippetTests/errors/analyzeImportsInvalidGlob.txt +41 -0
  342. package/test/corpus/snippetTests/errors/analyzeInvalidHttpModule.txt +26 -0
  343. package/test/corpus/snippetTests/errors/analyzeInvalidModuleUri.txt +26 -0
  344. package/test/corpus/snippetTests/errors/analyzeRelativeModuleUri.txt +26 -0
  345. package/test/corpus/snippetTests/errors/anyConverterError.txt +56 -0
  346. package/test/corpus/snippetTests/errors/baseModule.txt +24 -0
  347. package/test/corpus/snippetTests/errors/cannotAmendFixedProperty1.txt +62 -0
  348. package/test/corpus/snippetTests/errors/cannotAmendFixedProperty2.txt +24 -0
  349. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty1.txt +45 -0
  350. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty2.txt +19 -0
  351. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty3.txt +31 -0
  352. package/test/corpus/snippetTests/errors/cannotAssignToNothing.txt +15 -0
  353. package/test/corpus/snippetTests/errors/cannotChangeFixed1.txt +35 -0
  354. package/test/corpus/snippetTests/errors/cannotChangeFixed2.txt +35 -0
  355. package/test/corpus/snippetTests/errors/cannotFindMapKey.txt +39 -0
  356. package/test/corpus/snippetTests/errors/cannotFindStdLibModule.txt +20 -0
  357. package/test/corpus/snippetTests/errors/cannotInferParent2.txt +14 -0
  358. package/test/corpus/snippetTests/errors/cannotInferParent3.txt +48 -0
  359. package/test/corpus/snippetTests/errors/cannotInstantiateAbstractModule.txt +21 -0
  360. package/test/corpus/snippetTests/errors/cannotRenderMixin.txt +41 -0
  361. package/test/corpus/snippetTests/errors/classExtendsSelf.txt +27 -0
  362. package/test/corpus/snippetTests/errors/constraintDetails1.txt +80 -0
  363. package/test/corpus/snippetTests/errors/constraintDetails2.txt +77 -0
  364. package/test/corpus/snippetTests/errors/constraintDetails3.txt +87 -0
  365. package/test/corpus/snippetTests/errors/duplicateTypeParameter.txt +22 -0
  366. package/test/corpus/snippetTests/errors/extendExternalClass.txt +12 -0
  367. package/test/corpus/snippetTests/errors/extendTypeAlias.txt +33 -0
  368. package/test/corpus/snippetTests/errors/forGeneratorCannotGenerateMethods.txt +30 -0
  369. package/test/corpus/snippetTests/errors/forGeneratorCannotGenerateProperties.txt +28 -0
  370. package/test/corpus/snippetTests/errors/forGeneratorCannotIterateOverThisValue.txt +21 -0
  371. package/test/corpus/snippetTests/errors/forGeneratorCannotIterateOverTyped.txt +27 -0
  372. package/test/corpus/snippetTests/errors/forGeneratorDuplicateParams1.txt +38 -0
  373. package/test/corpus/snippetTests/errors/fullStackTraces.txt +64 -0
  374. package/test/corpus/snippetTests/errors/fullStackTraces2.txt +56 -0
  375. package/test/corpus/snippetTests/errors/functionNotFoundInClass.txt +35 -0
  376. package/test/corpus/snippetTests/errors/functionNotFoundInModule.txt +25 -0
  377. package/test/corpus/snippetTests/errors/functionNotFoundInScope.txt +38 -0
  378. package/test/corpus/snippetTests/errors/functionNotFoundMaybeLambda.txt +24 -0
  379. package/test/corpus/snippetTests/errors/functionNotFoundMaybeProperty.txt +18 -0
  380. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias1.txt +16 -0
  381. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias2.txt +16 -0
  382. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias3.txt +15 -0
  383. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias4.txt +15 -0
  384. package/test/corpus/snippetTests/errors/invalidClassMethodModifier.txt +29 -0
  385. package/test/corpus/snippetTests/errors/invalidClassModifier.txt +11 -0
  386. package/test/corpus/snippetTests/errors/invalidClassModifier2.txt +12 -0
  387. package/test/corpus/snippetTests/errors/invalidClassPropertyModifier.txt +31 -0
  388. package/test/corpus/snippetTests/errors/invalidGlobImport1.txt +19 -0
  389. package/test/corpus/snippetTests/errors/invalidGlobImport4.txt +19 -0
  390. package/test/corpus/snippetTests/errors/invalidGlobImport5.txt +20 -0
  391. package/test/corpus/snippetTests/errors/invalidGlobImport6.txt +14 -0
  392. package/test/corpus/snippetTests/errors/invalidGlobImport7.txt +21 -0
  393. package/test/corpus/snippetTests/errors/invalidGlobImport8.txt +22 -0
  394. package/test/corpus/snippetTests/errors/invalidGlobRead1.txt +14 -0
  395. package/test/corpus/snippetTests/errors/invalidGlobRead2.txt +14 -0
  396. package/test/corpus/snippetTests/errors/invalidGlobRead3.txt +14 -0
  397. package/test/corpus/snippetTests/errors/invalidImportBackslashSep.txt +14 -0
  398. package/test/corpus/snippetTests/errors/invalidImportUri.txt +19 -0
  399. package/test/corpus/snippetTests/errors/invalidMethodModifier.txt +14 -0
  400. package/test/corpus/snippetTests/errors/invalidModuleModifier.txt +20 -0
  401. package/test/corpus/snippetTests/errors/invalidObjectPropertyModifier.txt +17 -0
  402. package/test/corpus/snippetTests/errors/invalidOutput1.txt +17 -0
  403. package/test/corpus/snippetTests/errors/invalidOutput2.txt +22 -0
  404. package/test/corpus/snippetTests/errors/invalidOutput3.txt +12 -0
  405. package/test/corpus/snippetTests/errors/invalidPropertyModifier.txt +16 -0
  406. package/test/corpus/snippetTests/errors/invalidTripleDotSyntax1.txt +11 -0
  407. package/test/corpus/snippetTests/errors/invalidTripleDotSyntax2.txt +11 -0
  408. package/test/corpus/snippetTests/errors/invalidTypeAliasModifier.txt +14 -0
  409. package/test/corpus/snippetTests/errors/invalidTypeName1.txt +24 -0
  410. package/test/corpus/snippetTests/errors/invalidTypeName2.txt +31 -0
  411. package/test/corpus/snippetTests/errors/invalidTypeName3.txt +19 -0
  412. package/test/corpus/snippetTests/errors/invalidTypeName4.txt +24 -0
  413. package/test/corpus/snippetTests/errors/letExpressionError1.txt +24 -0
  414. package/test/corpus/snippetTests/errors/letExpressionError2.txt +27 -0
  415. package/test/corpus/snippetTests/errors/letExpressionErrorTyped.txt +27 -0
  416. package/test/corpus/snippetTests/errors/listingTypeCheckError1.txt +24 -0
  417. package/test/corpus/snippetTests/errors/listingTypeCheckError2.txt +30 -0
  418. package/test/corpus/snippetTests/errors/listingTypeCheckError3.txt +36 -0
  419. package/test/corpus/snippetTests/errors/listingTypeCheckError4.txt +43 -0
  420. package/test/corpus/snippetTests/errors/listingTypeCheckError5.txt +40 -0
  421. package/test/corpus/snippetTests/errors/listingTypeCheckError6.txt +58 -0
  422. package/test/corpus/snippetTests/errors/listingTypeCheckError7.txt +42 -0
  423. package/test/corpus/snippetTests/errors/listingTypeCheckError8.txt +84 -0
  424. package/test/corpus/snippetTests/errors/listingTypeCheckError9.txt +97 -0
  425. package/test/corpus/snippetTests/errors/localFixedMember.txt +19 -0
  426. package/test/corpus/snippetTests/errors/localFunctionWithTypeParameter.txt +18 -0
  427. package/test/corpus/snippetTests/errors/localHiddenMember.txt +17 -0
  428. package/test/corpus/snippetTests/errors/mappingTypeCheckError1.txt +29 -0
  429. package/test/corpus/snippetTests/errors/mappingTypeCheckError10.txt +49 -0
  430. package/test/corpus/snippetTests/errors/mappingTypeCheckError11.txt +106 -0
  431. package/test/corpus/snippetTests/errors/mappingTypeCheckError2.txt +30 -0
  432. package/test/corpus/snippetTests/errors/mappingTypeCheckError3.txt +30 -0
  433. package/test/corpus/snippetTests/errors/mappingTypeCheckError4.txt +36 -0
  434. package/test/corpus/snippetTests/errors/mappingTypeCheckError5.txt +41 -0
  435. package/test/corpus/snippetTests/errors/mappingTypeCheckError6.txt +75 -0
  436. package/test/corpus/snippetTests/errors/mappingTypeCheckError7.txt +45 -0
  437. package/test/corpus/snippetTests/errors/mappingTypeCheckError8.txt +33 -0
  438. package/test/corpus/snippetTests/errors/mappingTypeCheckError9.txt +69 -0
  439. package/test/corpus/snippetTests/errors/missingLocalPropertyValue1.txt +15 -0
  440. package/test/corpus/snippetTests/errors/missingLocalPropertyValue2.txt +22 -0
  441. package/test/corpus/snippetTests/errors/moduleAmendsSelf.txt +13 -0
  442. package/test/corpus/snippetTests/errors/moduleAmendsVersionCheck.txt +13 -0
  443. package/test/corpus/snippetTests/errors/moduleAmendsVersionCheck2.txt +22 -0
  444. package/test/corpus/snippetTests/errors/moduleExpected.txt +43 -0
  445. package/test/corpus/snippetTests/errors/moduleExtendsSelf.txt +20 -0
  446. package/test/corpus/snippetTests/errors/moduleExtendsVersionCheck.txt +13 -0
  447. package/test/corpus/snippetTests/errors/moduleExtendsVersionCheck2.txt +22 -0
  448. package/test/corpus/snippetTests/errors/moduleImportVersionCheck.txt +20 -0
  449. package/test/corpus/snippetTests/errors/moduleWithHighMinPklVersion.txt +29 -0
  450. package/test/corpus/snippetTests/errors/noDefault.txt +23 -0
  451. package/test/corpus/snippetTests/errors/noDefault2.txt +31 -0
  452. package/test/corpus/snippetTests/errors/objectCannotHaveElement.txt +72 -0
  453. package/test/corpus/snippetTests/errors/objectCannotHaveElement2.txt +98 -0
  454. package/test/corpus/snippetTests/errors/objectCannotHavePredicateMember.txt +25 -0
  455. package/test/corpus/snippetTests/errors/outOfRange1.txt +14 -0
  456. package/test/corpus/snippetTests/errors/outOfRange2.txt +17 -0
  457. package/test/corpus/snippetTests/errors/outOfRange3.txt +21 -0
  458. package/test/corpus/snippetTests/errors/propertyNotFound1.txt +32 -0
  459. package/test/corpus/snippetTests/errors/propertyNotFound2.txt +18 -0
  460. package/test/corpus/snippetTests/errors/refusingToLoadModule.txt +18 -0
  461. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveElement.txt +38 -0
  462. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveEntry.txt +34 -0
  463. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveProperty.txt +34 -0
  464. package/test/corpus/snippetTests/errors/spreadSyntaxCannotIterateOverTyped.txt +44 -0
  465. package/test/corpus/snippetTests/errors/spreadSyntaxCannotSpreadListIntoMapping.txt +37 -0
  466. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateEntry1.txt +39 -0
  467. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateEntry2.txt +39 -0
  468. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateProperty1.txt +32 -0
  469. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateProperty2.txt +32 -0
  470. package/test/corpus/snippetTests/errors/spreadSyntaxNullValue.txt +20 -0
  471. package/test/corpus/snippetTests/errors/spreadSyntaxUnknownTypedProperty.txt +47 -0
  472. package/test/corpus/snippetTests/errors/stackTraceWithQuotedMemberName.txt +23 -0
  473. package/test/corpus/snippetTests/errors/supercalls.txt +18 -0
  474. package/test/corpus/snippetTests/errors/typeMismatchHelper.txt +19 -0
  475. package/test/corpus/snippetTests/errors/typeMismatchWithSameQualifiedClassName.txt +38 -0
  476. package/test/corpus/snippetTests/errors/typeMismatchWithSameQualifiedModuleName.txt +28 -0
  477. package/test/corpus/snippetTests/errors/undefinedOp1.txt +12 -0
  478. package/test/corpus/snippetTests/errors/undefinedOp2.txt +14 -0
  479. package/test/corpus/snippetTests/errors/undefinedOp3.txt +24 -0
  480. package/test/corpus/snippetTests/errors/undefinedProperty1.txt +28 -0
  481. package/test/corpus/snippetTests/errors/undefinedProperty2.txt +15 -0
  482. package/test/corpus/snippetTests/errors/undefinedProperty3.txt +95 -0
  483. package/test/corpus/snippetTests/errors/undefinedProperty4.txt +141 -0
  484. package/test/corpus/snippetTests/errors/undefinedProperty5.txt +160 -0
  485. package/test/corpus/snippetTests/errors/undefinedProperty6.txt +40 -0
  486. package/test/corpus/snippetTests/errors/undefinedProperty7.txt +35 -0
  487. package/test/corpus/snippetTests/errors/undefinedProperty8.txt +34 -0
  488. package/test/corpus/snippetTests/errors/underscoreLambda.txt +37 -0
  489. package/test/corpus/snippetTests/errors/underscoreLet.txt +17 -0
  490. package/test/corpus/snippetTests/errors/userDefinedTypeParameter1.txt +22 -0
  491. package/test/corpus/snippetTests/errors/userDefinedTypeParameter2.txt +32 -0
  492. package/test/corpus/snippetTests/errors/wrongForGeneratorType1.txt +35 -0
  493. package/test/corpus/snippetTests/errors/wrongForGeneratorType2.txt +37 -0
  494. package/test/corpus/snippetTests/errors/wrongNumberOfMapArguments.txt +16 -0
  495. package/test/corpus/snippetTests/generators/duplicateDefinition1.txt +23 -0
  496. package/test/corpus/snippetTests/generators/duplicateDefinition2.txt +30 -0
  497. package/test/corpus/snippetTests/generators/duplicateDefinition3.txt +26 -0
  498. package/test/corpus/snippetTests/generators/elementGenerators.txt +2628 -0
  499. package/test/corpus/snippetTests/generators/elementGeneratorsTyped.txt +1593 -0
  500. package/test/corpus/snippetTests/generators/entryGenerators.txt +3013 -0
  501. package/test/corpus/snippetTests/generators/entryGeneratorsTyped.txt +1858 -0
  502. package/test/corpus/snippetTests/generators/forGeneratorInMixins.txt +301 -0
  503. package/test/corpus/snippetTests/generators/forGeneratorLexicalScope.txt +199 -0
  504. package/test/corpus/snippetTests/generators/forGeneratorNestedReference.txt +277 -0
  505. package/test/corpus/snippetTests/generators/forGeneratorNestedReference2.txt +98 -0
  506. package/test/corpus/snippetTests/generators/forGeneratorVariableShadowing.txt +177 -0
  507. package/test/corpus/snippetTests/generators/generatorNoMembers.txt +157 -0
  508. package/test/corpus/snippetTests/generators/predicateMembersDynamicListing.txt +461 -0
  509. package/test/corpus/snippetTests/generators/predicateMembersDynamicMapping.txt +473 -0
  510. package/test/corpus/snippetTests/generators/predicateMembersListing.txt +463 -0
  511. package/test/corpus/snippetTests/generators/predicateMembersMapping.txt +474 -0
  512. package/test/corpus/snippetTests/generators/predicateMembersThis.txt +82 -0
  513. package/test/corpus/snippetTests/generators/propertyGenerators.txt +104 -0
  514. package/test/corpus/snippetTests/generators/spreadSyntaxDynamic.txt +411 -0
  515. package/test/corpus/snippetTests/generators/spreadSyntaxListing.txt +496 -0
  516. package/test/corpus/snippetTests/generators/spreadSyntaxMapping.txt +655 -0
  517. package/test/corpus/snippetTests/generators/spreadSyntaxNoSpace.txt +32 -0
  518. package/test/corpus/snippetTests/generators/spreadSyntaxNullable.txt +37 -0
  519. package/test/corpus/snippetTests/generators/spreadSyntaxTyped.txt +59 -0
  520. package/test/corpus/snippetTests/implementation/equality.txt +198 -0
  521. package/test/corpus/snippetTests/implementation/inequality.txt +198 -0
  522. package/test/corpus/snippetTests/internal/polymorphicCallSite.txt +499 -0
  523. package/test/corpus/snippetTests/lambdas/amendLambdaDef.txt +310 -0
  524. package/test/corpus/snippetTests/lambdas/amendLambdaExpr.txt +325 -0
  525. package/test/corpus/snippetTests/lambdas/amendLambdaExternalClassError.txt +45 -0
  526. package/test/corpus/snippetTests/lambdas/amendLambdaParameters.txt +155 -0
  527. package/test/corpus/snippetTests/lambdas/amendLambdaParametersTyped.txt +420 -0
  528. package/test/corpus/snippetTests/lambdas/amendLambdaThatReturnsAnotherLambda.txt +380 -0
  529. package/test/corpus/snippetTests/lambdas/amendLambdaTooFewArgsError.txt +60 -0
  530. package/test/corpus/snippetTests/lambdas/amendLambdaTooManyArgsError.txt +62 -0
  531. package/test/corpus/snippetTests/lambdas/equality.txt +62 -0
  532. package/test/corpus/snippetTests/lambdas/inequality.txt +62 -0
  533. package/test/corpus/snippetTests/lambdas/lambda1.txt +85 -0
  534. package/test/corpus/snippetTests/lambdas/lambda2.txt +78 -0
  535. package/test/corpus/snippetTests/lambdas/lambda3.txt +381 -0
  536. package/test/corpus/snippetTests/lambdas/lambda4.txt +147 -0
  537. package/test/corpus/snippetTests/lambdas/lambda5.txt +307 -0
  538. package/test/corpus/snippetTests/lambdas/lambdaStackTrace1.txt +35 -0
  539. package/test/corpus/snippetTests/lambdas/lambdaStackTrace2.txt +37 -0
  540. package/test/corpus/snippetTests/lambdas/lambdaStackTrace3.txt +33 -0
  541. package/test/corpus/snippetTests/lambdas/pipeOperator.txt +189 -0
  542. package/test/corpus/snippetTests/lambdas/tooManyLambdaParams.txt +27 -0
  543. package/test/corpus/snippetTests/lambdas/typedLambdas.txt +278 -0
  544. package/test/corpus/snippetTests/lambdas/wrongArgumentListLength.txt +37 -0
  545. package/test/corpus/snippetTests/listings/cacheStealing.txt +56 -0
  546. package/test/corpus/snippetTests/listings/cacheStealingTypeCheck.txt +27 -0
  547. package/test/corpus/snippetTests/listings/default.txt +133 -0
  548. package/test/corpus/snippetTests/listings/equality.txt +341 -0
  549. package/test/corpus/snippetTests/listings/hashCode.txt +438 -0
  550. package/test/corpus/snippetTests/listings/inequality.txt +173 -0
  551. package/test/corpus/snippetTests/listings/listing1.txt +360 -0
  552. package/test/corpus/snippetTests/listings/listing2.txt +755 -0
  553. package/test/corpus/snippetTests/listings/listing3.txt +490 -0
  554. package/test/corpus/snippetTests/listings/listing4.txt +156 -0
  555. package/test/corpus/snippetTests/listings/listing6.txt +208 -0
  556. package/test/corpus/snippetTests/listings/listing7.txt +71 -0
  557. package/test/corpus/snippetTests/listings/typeCheck.txt +2506 -0
  558. package/test/corpus/snippetTests/listings/wrongIndex.txt +121 -0
  559. package/test/corpus/snippetTests/listings/wrongParent.txt +253 -0
  560. package/test/corpus/snippetTests/listings2/default.txt +157 -0
  561. package/test/corpus/snippetTests/listings2/equality.txt +358 -0
  562. package/test/corpus/snippetTests/listings2/inequality.txt +227 -0
  563. package/test/corpus/snippetTests/listings2/listing1.txt +372 -0
  564. package/test/corpus/snippetTests/listings2/listing2.txt +904 -0
  565. package/test/corpus/snippetTests/listings2/listing3.txt +568 -0
  566. package/test/corpus/snippetTests/listings2/typeCheck.txt +336 -0
  567. package/test/corpus/snippetTests/listings2/wrongIndex.txt +151 -0
  568. package/test/corpus/snippetTests/listings2/wrongParent.txt +313 -0
  569. package/test/corpus/snippetTests/mappings/default.txt +174 -0
  570. package/test/corpus/snippetTests/mappings/duplicateComputedKey.txt +85 -0
  571. package/test/corpus/snippetTests/mappings/duplicateConstantKey.txt +32 -0
  572. package/test/corpus/snippetTests/mappings/equality.txt +383 -0
  573. package/test/corpus/snippetTests/mappings/hashCode.txt +461 -0
  574. package/test/corpus/snippetTests/mappings/inequality.txt +198 -0
  575. package/test/corpus/snippetTests/mappings/mapping1.txt +590 -0
  576. package/test/corpus/snippetTests/mappings/mapping2.txt +491 -0
  577. package/test/corpus/snippetTests/mappings/stringKeyNotFound.txt +50 -0
  578. package/test/corpus/snippetTests/mappings/typeCheck.txt +2877 -0
  579. package/test/corpus/snippetTests/mappings/wrongParent.txt +262 -0
  580. package/test/corpus/snippetTests/mappings2/default.txt +195 -0
  581. package/test/corpus/snippetTests/mappings2/duplicateComputedKey.txt +99 -0
  582. package/test/corpus/snippetTests/mappings2/duplicateConstantKey.txt +39 -0
  583. package/test/corpus/snippetTests/mappings2/equality.txt +416 -0
  584. package/test/corpus/snippetTests/mappings2/inequality.txt +268 -0
  585. package/test/corpus/snippetTests/mappings2/mapping1.txt +604 -0
  586. package/test/corpus/snippetTests/mappings2/mapping2.txt +595 -0
  587. package/test/corpus/snippetTests/mappings2/stringKeyNotFound.txt +57 -0
  588. package/test/corpus/snippetTests/mappings2/typeCheck.txt +582 -0
  589. package/test/corpus/snippetTests/mappings2/wrongParent.txt +334 -0
  590. package/test/corpus/snippetTests/methods/methodParameterConstraints1.txt +220 -0
  591. package/test/corpus/snippetTests/methods/methodParameterConstraints2.txt +382 -0
  592. package/test/corpus/snippetTests/methods/methodParameterTypes2.txt +734 -0
  593. package/test/corpus/snippetTests/methods/methodParameterTypes3.txt +196 -0
  594. package/test/corpus/snippetTests/modules/amendModule1.txt +36 -0
  595. package/test/corpus/snippetTests/modules/amendModule2.txt +28 -0
  596. package/test/corpus/snippetTests/modules/amendModule3.txt +24 -0
  597. package/test/corpus/snippetTests/modules/amendModule4.txt +35 -0
  598. package/test/corpus/snippetTests/modules/amendModule5.txt +68 -0
  599. package/test/corpus/snippetTests/modules/amendModule6.txt +13 -0
  600. package/test/corpus/snippetTests/modules/equality.txt +91 -0
  601. package/test/corpus/snippetTests/modules/extendModule1.txt +80 -0
  602. package/test/corpus/snippetTests/modules/externalFunction.txt +14 -0
  603. package/test/corpus/snippetTests/modules/externalProperty.txt +16 -0
  604. package/test/corpus/snippetTests/modules/filename with spaces 2.txt +14 -0
  605. package/test/corpus/snippetTests/modules/filename with spaces.txt +13 -0
  606. package/test/corpus/snippetTests/modules/functions.txt +264 -0
  607. package/test/corpus/snippetTests/modules/invalidAmend1.txt +18 -0
  608. package/test/corpus/snippetTests/modules/invalidAmend2.txt +19 -0
  609. package/test/corpus/snippetTests/modules/invalidAmend3.txt +23 -0
  610. package/test/corpus/snippetTests/modules/invalidAmend4.txt +21 -0
  611. package/test/corpus/snippetTests/modules/invalidAmend5.txt +17 -0
  612. package/test/corpus/snippetTests/modules/invalidAmend6.txt +22 -0
  613. package/test/corpus/snippetTests/modules/invalidExtend1.txt +18 -0
  614. package/test/corpus/snippetTests/modules/invalidExtend2.txt +13 -0
  615. package/test/corpus/snippetTests/modules/invalidExtend3.txt +13 -0
  616. package/test/corpus/snippetTests/modules/library.txt +77 -0
  617. package/test/corpus/snippetTests/modules/lists.txt +26 -0
  618. package/test/corpus/snippetTests/modules/objects.txt +22 -0
  619. package/test/corpus/snippetTests/modules/recursiveModule1.txt +51 -0
  620. package/test/corpus/snippetTests/modules/recursiveModule2.txt +26 -0
  621. package/test/corpus/snippetTests/modules/supercalls1.txt +43 -0
  622. package/test/corpus/snippetTests/modules/supercalls2.txt +76 -0
  623. package/test/corpus/snippetTests/modules/supercalls3.txt +142 -0
  624. package/test/corpus/snippetTests/modules/typedModuleMethods1.txt +229 -0
  625. package/test/corpus/snippetTests/modules/typedModuleProperties1.txt +106 -0
  626. package/test/corpus/snippetTests/modules/typedModuleProperties2.txt +16 -0
  627. package/test/corpus/snippetTests/modules/typedModuleProperties3.txt +20 -0
  628. package/test/corpus/snippetTests/modules//346/227/245/346/234/254/350/252/236.txt +45 -0
  629. package/test/corpus/snippetTests/modules//346/227/245/346/234/254/350/252/236_error.txt +14 -0
  630. package/test/corpus/snippetTests/objects/closure.txt +143 -0
  631. package/test/corpus/snippetTests/objects/configureObjectAssign.txt +78 -0
  632. package/test/corpus/snippetTests/objects/equality.txt +989 -0
  633. package/test/corpus/snippetTests/objects/hashCode.txt +566 -0
  634. package/test/corpus/snippetTests/objects/implicitReceiver1.txt +37 -0
  635. package/test/corpus/snippetTests/objects/implicitReceiver2.txt +33 -0
  636. package/test/corpus/snippetTests/objects/implicitReceiver3.txt +29 -0
  637. package/test/corpus/snippetTests/objects/implicitReceiver4.txt +25 -0
  638. package/test/corpus/snippetTests/objects/inequality.txt +777 -0
  639. package/test/corpus/snippetTests/objects/lateBinding1.txt +60 -0
  640. package/test/corpus/snippetTests/objects/lateBinding2.txt +60 -0
  641. package/test/corpus/snippetTests/objects/lateBinding3.txt +81 -0
  642. package/test/corpus/snippetTests/objects/lateBinding4.txt +77 -0
  643. package/test/corpus/snippetTests/objects/outer.txt +91 -0
  644. package/test/corpus/snippetTests/objects/outer2.txt +28 -0
  645. package/test/corpus/snippetTests/objects/super1.txt +67 -0
  646. package/test/corpus/snippetTests/objects/super2.txt +59 -0
  647. package/test/corpus/snippetTests/objects/super3.txt +59 -0
  648. package/test/corpus/snippetTests/objects/super4.txt +66 -0
  649. package/test/corpus/snippetTests/objects/super5.txt +69 -0
  650. package/test/corpus/snippetTests/objects/this1.txt +24 -0
  651. package/test/corpus/snippetTests/objects/this2.txt +71 -0
  652. package/test/corpus/snippetTests/packages/badImport1.error.txt +14 -0
  653. package/test/corpus/snippetTests/packages/badImport10.error.txt +14 -0
  654. package/test/corpus/snippetTests/packages/badImport11.error.txt +14 -0
  655. package/test/corpus/snippetTests/packages/badImport2.error.txt +14 -0
  656. package/test/corpus/snippetTests/packages/badImport3.error.txt +14 -0
  657. package/test/corpus/snippetTests/packages/badImport4.error.txt +14 -0
  658. package/test/corpus/snippetTests/packages/badImport6.error.txt +20 -0
  659. package/test/corpus/snippetTests/packages/badImport7.error.txt +14 -0
  660. package/test/corpus/snippetTests/packages/badImport8.error.txt +14 -0
  661. package/test/corpus/snippetTests/packages/badImport9.error.txt +14 -0
  662. package/test/corpus/snippetTests/packages/badRead1.error.txt +14 -0
  663. package/test/corpus/snippetTests/packages/badRead2.error.txt +14 -0
  664. package/test/corpus/snippetTests/packages/badRead3.error.txt +14 -0
  665. package/test/corpus/snippetTests/packages/badRead4.error.txt +14 -0
  666. package/test/corpus/snippetTests/packages/badRead8.error.txt +14 -0
  667. package/test/corpus/snippetTests/packages/badRead9.error.txt +14 -0
  668. package/test/corpus/snippetTests/packages/packages1.txt +103 -0
  669. package/test/corpus/snippetTests/packages/packages2.txt +104 -0
  670. package/test/corpus/snippetTests/packages/redirects.txt +54 -0
  671. package/test/corpus/snippetTests/types/ThisInTypeConstraint.txt +342 -0
  672. package/test/corpus/snippetTests/types/currentModuleType1.txt +343 -0
  673. package/test/corpus/snippetTests/types/currentModuleType2.txt +351 -0
  674. package/test/corpus/snippetTests/types/currentModuleType3.txt +18 -0
  675. package/test/corpus/snippetTests/types/cyclicTypeAlias1.txt +17 -0
  676. package/test/corpus/snippetTests/types/cyclicTypeAlias2.txt +42 -0
  677. package/test/corpus/snippetTests/types/modifiersForTypes.txt +68 -0
  678. package/test/corpus/snippetTests/types/moduleType.txt +58 -0
  679. package/test/corpus/snippetTests/types/nothingType.txt +29 -0
  680. package/test/corpus/snippetTests/types/nothingWithUnions.txt +31 -0
  681. package/test/corpus/snippetTests/types/typeAlias1.txt +925 -0
  682. package/test/corpus/snippetTests/types/typeAlias2.txt +361 -0
  683. package/test/corpus/snippetTests/types/typeAliasConstraint1.txt +79 -0
  684. package/test/corpus/snippetTests/types/typeAliasConstraint2.txt +77 -0
  685. package/test/corpus/snippetTests/types/typeAliasContext.txt +26 -0
  686. package/test/corpus/snippetTests/types/typeAliasUnion.txt +169 -0
  687. package/test/corpus/string/customStringDelimiters.txt +74 -74
  688. package/test/corpus/string/multiline.txt +4 -4
  689. package/test/corpus/string/multilineInterpolation.txt +21 -21
  690. package/test/corpus/string/multilineInterpolation2.txt +15 -0
  691. package/test/corpus/string/simple.txt +1 -1
  692. package/test/corpus/string/singleLineEscapes.txt +7 -7
  693. package/test/corpus/string/singleLineInterpolation.txt +28 -28
  694. package/test/corpus/string/stringWithTwoSlashes.txt +2 -2
  695. package/test/corpus/type/unionType.txt +34 -0
  696. package/test/corpus/type/unionTypeDefaults.txt +46 -0
  697. package/tree-sitter.json +41 -0
  698. package/test/corpus/string/missingDelimiter.txt +0 -28
@@ -0,0 +1,2877 @@
1
+ ===
2
+ mappings/typeCheck.pkl
3
+ ===
4
+
5
+ import "pkl:test"
6
+
7
+ local x1: Mapping<String, List<Int>> = new {
8
+ ["pigeon"] = List(1, 2, 3)
9
+ ["barn owl"] = 42
10
+ }
11
+
12
+ local x2: Mapping<String, List<Int>> = new {
13
+ ["fr" + "ed"] = List(1) + List(2, 3)
14
+ ["bar" + "ney"] = 21 + 21
15
+ }
16
+
17
+ local x3: Mapping<List<Int>, String> = new {
18
+ [List(1, 2, 3)] = "pigeon"
19
+ [42] = "barn owl"
20
+ }
21
+
22
+ local x4: Mapping<List<Int>, String> = new {
23
+ [List(1) + List(2, 3)] = "fr" + "ed"
24
+ [21 + 21] = "bar" + "ney"
25
+ }
26
+
27
+ local x5: Mapping<String(!isEmpty), String> = new {
28
+ [""] = "pigeon"
29
+ }
30
+ local x6: Mapping<String, String(!isEmpty)> = new {
31
+ ["pigeon"] = ""
32
+ }
33
+
34
+ res1 = x1.length
35
+ res2 = test.catch(() -> x1["barn owl"])
36
+ res3 = x2.length
37
+ res4 = x2["fred"]
38
+ res5 = test.catch(() -> x2["barney"])
39
+ res6 = test.catch(() -> x3)
40
+ res7 = test.catch(() -> x4)
41
+ res8 = test.catch(() -> x5)
42
+ res9 = x6.length
43
+ res10 = test.catch(() -> x6["pigeon"])
44
+
45
+ hidden x7: Mapping = new {
46
+ ["first"] = throw("value unnecessarily evaluated")
47
+ }
48
+
49
+ hidden x8: Mapping<String, Any> = new {
50
+ ["first"] = throw("value unnecessarily evaluated")
51
+ }
52
+
53
+ hidden x9: Mapping<String, unknown> = new {
54
+ ["first"] = throw("value unnecessarily evaluated")
55
+ }
56
+
57
+ hidden x10 = new Mapping {
58
+ ["first"] = throw("value unnecessarily evaluated")
59
+ ["second"] = 42
60
+ ["third"] = throw("value unnecessarily evaluated")
61
+ }
62
+
63
+ res11 = x7.length
64
+ res12 = x8.length
65
+ res13 = x9.length
66
+ res14 = x10.length
67
+ res15 = x10["second"]
68
+
69
+ local x11: Mapping<String, String(!isEmpty)> = new Mapping<String, String> {
70
+ ["foo"] = ""
71
+ }
72
+
73
+ res16 = x11.length
74
+ res17 = test.catch(() -> x11["foo"])
75
+
76
+ local x12: Mapping<String, String> = new Mapping<String, String(!isEmpty)> {
77
+ ["foo"] = ""
78
+ }
79
+
80
+ res18 = x12.length
81
+ res19 = test.catch(() -> x12["foo"])
82
+
83
+ local m = new Mapping {
84
+ ["one"] = 1
85
+ ["two"] = "two"
86
+ }
87
+
88
+ local x13: Mapping<String, String>|Mapping<String, Int> = m
89
+ local x14: Mapping<String, String>|Mapping<String, Int>? = m
90
+ local x15: Mapping<String, String>|(Mapping<String, Int>|Int) = m
91
+ local x16: Mapping<String, String>|Int = m
92
+
93
+ res20 = test.catch(() -> x13)
94
+ res21 = test.catch(() -> x14)
95
+ res22 = test.catch(() -> x15)
96
+ res23 = x16.length
97
+ res24 = test.catch(() -> x16["one"])
98
+
99
+ local x17: Mapping<String, Mapping<String, String>> = new {
100
+ ["foo"] {
101
+ ["bar"] = 1
102
+ }
103
+ }
104
+
105
+ res25 = x17.length
106
+ res26 = x17["foo"].length
107
+ res27 = test.catch(() -> x17["foo"]["bar"])
108
+
109
+ local x18 = new Mapping { ["foo"] = 1 } as Mapping<String, String>
110
+
111
+ res28 = x18.length
112
+ res29 = test.catch(() -> x18["foo"])
113
+
114
+ local x19 = new Mapping<String, String> {
115
+ when (true) {
116
+ ["foo"] = 1
117
+ }
118
+ }
119
+
120
+ res30 = x19.length
121
+ res31 = test.catch(() -> x19["foo"])
122
+
123
+ local x20 = new Mapping<String, String> {
124
+ ...Map("foo", 1)
125
+ }
126
+
127
+ res32 = x20.length
128
+ res33 = test.catch(() -> x20["foo"])
129
+
130
+ local x21 = new Mapping<String, String> {
131
+ for (k, v in Map("foo", 1)) {
132
+ [k] = v
133
+ }
134
+ }
135
+
136
+ res34 = x21.length
137
+ res35 = test.catch(() -> x21["foo"])
138
+
139
+ local x22: Mapping<String, String> = new {
140
+ ["hi"] = "hi"
141
+ }
142
+
143
+ res36 = (x22) {
144
+ ["hi2"] = 1
145
+ }
146
+
147
+ res37 = (x22) {
148
+ when (true) {
149
+ ["hi2"] = 1
150
+ }
151
+ }
152
+
153
+ res38 = (x22) {
154
+ ...Map("hi2", 1)
155
+ }
156
+
157
+ local x23: Mapping<String, Mapping<String, String(length.isOdd)>> = new Mapping<String, Mapping<String, String(this == capitalize())>> {
158
+ ["foo"] {
159
+ ["first"] = "Ba"
160
+ ["second"] = "bar"
161
+ }
162
+ }
163
+
164
+ res39 = test.catch(() -> x23["foo"]["first"])
165
+ res40 = test.catch(() -> x23[""])
166
+
167
+ local x24: List<Mapping<String, String(length.isOdd)>> = List(
168
+ new Mapping<String, String(this == capitalize())> {
169
+ ["first"] = "Ba"
170
+ ["second"] = "bar"
171
+ }
172
+ )
173
+
174
+ res41 = test.catch(() -> x24[0]["first"])
175
+ res42 = test.catch(() -> x24[0]["second"])
176
+
177
+ local x25: List<String|Mapping<String, Int>> = List(
178
+ "hello",
179
+ new Mapping {
180
+ ["foo"] = "foo"
181
+ },
182
+ "goodbye"
183
+ )
184
+
185
+ res43 = x25[0]
186
+ res44 = x25[1].length
187
+ res45 = test.catch(() -> x25[1]["foo"])
188
+ res46 = x25[2]
189
+
190
+ local x26: Set<Mapping<String, String(length.isOdd)>> = Set(
191
+ new Mapping<String, String(this == capitalize())> {
192
+ ["first"] = "Ba"
193
+ ["second"] = "bar"
194
+ }
195
+ )
196
+
197
+ res47 = test.catch(() -> x26)
198
+
199
+ local x28: List<Mapping<String, Int>>|List<Mapping<String, String>> = List(
200
+ new Mapping { ["foo"] = 1 }
201
+ )
202
+
203
+ res48 = x28[0]["foo"]
204
+
205
+ local x29: List<Mapping<String, Int>>|List<Mapping<String, String>> = List(
206
+ new Mapping {
207
+ ["foo"] = 1
208
+ ["bar"] = "hi"
209
+ }
210
+ )
211
+
212
+ res49 = test.catch(() -> x29)
213
+
214
+ local x30: Map<String, Mapping<String, String(length.isOdd)>> = Map(
215
+ "hello",
216
+ new Mapping<String, String(this == capitalize())> {
217
+ ["first"] = "Ba"
218
+ ["second"] = "bar"
219
+ }
220
+ )
221
+
222
+ res50 = x30["hello"].length
223
+ res51 = test.catch(() -> x30["hello"]["first"])
224
+ res52 = test.catch(() -> x30["hello"]["second"])
225
+
226
+ local x31: Map<String, Int|Mapping<String, String>> = Map(
227
+ "hello", 1,
228
+ "themapping", new Mapping {
229
+ ["one"] = 1
230
+ ["two"] = 2
231
+ },
232
+ "goodbye", 2
233
+ )
234
+
235
+ res53 = x31.length
236
+ res54 = x31["hello"]
237
+ res55 = x31["goodbye"]
238
+ res56 = x31["themapping"].length
239
+ res57 = test.catch(() -> x31["themapping"]["one"])
240
+ res58 = test.catch(() -> x31["themapping"]["two"])
241
+
242
+ local x32: Map<Mapping<String, String>, Int> = Map(
243
+ new Mapping { ["one"] = 1 },
244
+ 1
245
+ )
246
+
247
+ res59 = test.catch(() -> x32)
248
+
249
+ local x33: Map<String, Mapping<String, Int>|Int> = Map(
250
+ "first", 1,
251
+ "second", new Mapping { ["hi"] = "hi" }
252
+ )
253
+
254
+ res60 = x33.length
255
+ res61 = x33["first"]
256
+ res62 = x33["second"].length
257
+ res63 = test.catch(() -> x33["second"]["hi"])
258
+
259
+ local x34: Pair<Mapping<String, String>, Mapping<String, String>> = Pair(
260
+ new Mapping { ["one"] = 1 },
261
+ new Mapping { ["one"] = 1 }
262
+ )
263
+
264
+ res64 = x34.first.length
265
+ res65 = x34.second.length
266
+
267
+ res66 = test.catch(() -> x34.first["one"])
268
+ res67 = test.catch(() -> x34.second["one"])
269
+
270
+ local x35: Pair<Int, Mapping<String, String>> = Pair(
271
+ 5,
272
+ new Mapping { ["one"] = 1 }
273
+ )
274
+
275
+ res68 = x35.first
276
+ res69 = x35.second.length
277
+ res70 = test.catch(() -> x35.second["one"])
278
+
279
+ local x36: Collection<Int|Mapping<String, String>> = List(
280
+ 1,
281
+ new Mapping {
282
+ ["one"] = "hello"
283
+ ["two"] = 1
284
+ }
285
+ )
286
+
287
+
288
+ res71 = x36.length
289
+ res72 = x36.first
290
+ res73 = x36[1].length
291
+ res74 = x36[1]["one"]
292
+ res75 = test.catch(() -> x36[1]["two"])
293
+
294
+ local x37: Collection<Int|Mapping<String, String>> = Set(
295
+ 1,
296
+ new Mapping {
297
+ ["one"] = "hello"
298
+ ["two"] = 1
299
+ }
300
+ )
301
+
302
+ res77 = test.catch(() -> x37)
303
+
304
+ local x38: Collection<Mapping<String, String>>|Collection<Mapping<String, Int>> =
305
+ List(new Mapping {
306
+ ["one"] = "hello"
307
+ ["two"] = 1
308
+ })
309
+
310
+ res78 = test.catch(() -> x38)
311
+
312
+ local class Person {
313
+ prop1 = 1
314
+ prop2 = 2
315
+ prop3 = "hi"
316
+ }
317
+
318
+ local x39: Mapping<String, Int> = new Person {}
319
+ .toMap()
320
+ .toMapping()
321
+
322
+
323
+ res79 = x39.length
324
+ res80 = x39["prop1"]
325
+ res81 = x39["prop2"]
326
+ res82 = test.catch(() -> x39["prop3"])
327
+
328
+ local x40: Mapping<String, Int> = new {
329
+ ...Map("one", 1, "two", 2, "three", "hello")
330
+ }
331
+
332
+ res83 = x40.length
333
+ res84 = x40["one"]
334
+ res85 = x40["two"]
335
+ res86 = test.catch(() -> x40["three"])
336
+
337
+ function myFunction(elem: Mapping<String, Int>) = elem
338
+
339
+ local x41 = myFunction(new Mapping { ["hello"] = "hello" })
340
+
341
+ res87 = x41.length
342
+ res88 = test.catch(() -> x41["hello"])
343
+
344
+ function myFunction2(elem): Mapping<String, Int> = elem
345
+
346
+ local x42 = myFunction(new Mapping { ["hello"] = "hello" })
347
+
348
+ res89 = x42.length
349
+ res90 = test.catch(() -> x42["hello"])
350
+
351
+ local x43 = (it: Mapping<String, Int>) -> it
352
+ local x44 = x43.apply(new Mapping { ["hello"] = "hello" })
353
+
354
+ res91 = x44.length
355
+ res92 = test.catch(() -> x44["hello"])
356
+
357
+ function myFunction3(elem: Mapping<String, Int>): Mapping<String, Int> = elem
358
+ local x45 = myFunction3(new Mapping { ["hello"] = "hello" })
359
+
360
+ res93 = x45.length
361
+ res94 = test.catch(() -> x45["hello"])
362
+
363
+ ---
364
+
365
+ (module
366
+ (importClause
367
+ (stringConstant
368
+ (slStringLiteralPart)))
369
+ (classProperty
370
+ (modifier)
371
+ (identifier)
372
+ (typeAnnotation
373
+ (declaredType
374
+ (qualifiedIdentifier
375
+ (identifier))
376
+ (typeArgumentList
377
+ (declaredType
378
+ (qualifiedIdentifier
379
+ (identifier)))
380
+ (declaredType
381
+ (qualifiedIdentifier
382
+ (identifier))
383
+ (typeArgumentList
384
+ (declaredType
385
+ (qualifiedIdentifier
386
+ (identifier))))))))
387
+ (newExpr
388
+ (objectBody
389
+ (objectEntry
390
+ (slStringLiteralExpr
391
+ (slStringLiteralPart))
392
+ (unqualifiedAccessExpr
393
+ (identifier)
394
+ (argumentList
395
+ (intLiteralExpr)
396
+ (intLiteralExpr)
397
+ (intLiteralExpr))))
398
+ (objectEntry
399
+ (slStringLiteralExpr
400
+ (slStringLiteralPart))
401
+ (intLiteralExpr)))))
402
+ (classProperty
403
+ (modifier)
404
+ (identifier)
405
+ (typeAnnotation
406
+ (declaredType
407
+ (qualifiedIdentifier
408
+ (identifier))
409
+ (typeArgumentList
410
+ (declaredType
411
+ (qualifiedIdentifier
412
+ (identifier)))
413
+ (declaredType
414
+ (qualifiedIdentifier
415
+ (identifier))
416
+ (typeArgumentList
417
+ (declaredType
418
+ (qualifiedIdentifier
419
+ (identifier))))))))
420
+ (newExpr
421
+ (objectBody
422
+ (objectEntry
423
+ (additiveExpr
424
+ (slStringLiteralExpr
425
+ (slStringLiteralPart))
426
+ (slStringLiteralExpr
427
+ (slStringLiteralPart)))
428
+ (additiveExpr
429
+ (unqualifiedAccessExpr
430
+ (identifier)
431
+ (argumentList
432
+ (intLiteralExpr)))
433
+ (unqualifiedAccessExpr
434
+ (identifier)
435
+ (argumentList
436
+ (intLiteralExpr)
437
+ (intLiteralExpr)))))
438
+ (objectEntry
439
+ (additiveExpr
440
+ (slStringLiteralExpr
441
+ (slStringLiteralPart))
442
+ (slStringLiteralExpr
443
+ (slStringLiteralPart)))
444
+ (additiveExpr
445
+ (intLiteralExpr)
446
+ (intLiteralExpr))))))
447
+ (classProperty
448
+ (modifier)
449
+ (identifier)
450
+ (typeAnnotation
451
+ (declaredType
452
+ (qualifiedIdentifier
453
+ (identifier))
454
+ (typeArgumentList
455
+ (declaredType
456
+ (qualifiedIdentifier
457
+ (identifier))
458
+ (typeArgumentList
459
+ (declaredType
460
+ (qualifiedIdentifier
461
+ (identifier)))))
462
+ (declaredType
463
+ (qualifiedIdentifier
464
+ (identifier))))))
465
+ (newExpr
466
+ (objectBody
467
+ (objectEntry
468
+ (unqualifiedAccessExpr
469
+ (identifier)
470
+ (argumentList
471
+ (intLiteralExpr)
472
+ (intLiteralExpr)
473
+ (intLiteralExpr)))
474
+ (slStringLiteralExpr
475
+ (slStringLiteralPart)))
476
+ (objectEntry
477
+ (intLiteralExpr)
478
+ (slStringLiteralExpr
479
+ (slStringLiteralPart))))))
480
+ (classProperty
481
+ (modifier)
482
+ (identifier)
483
+ (typeAnnotation
484
+ (declaredType
485
+ (qualifiedIdentifier
486
+ (identifier))
487
+ (typeArgumentList
488
+ (declaredType
489
+ (qualifiedIdentifier
490
+ (identifier))
491
+ (typeArgumentList
492
+ (declaredType
493
+ (qualifiedIdentifier
494
+ (identifier)))))
495
+ (declaredType
496
+ (qualifiedIdentifier
497
+ (identifier))))))
498
+ (newExpr
499
+ (objectBody
500
+ (objectEntry
501
+ (additiveExpr
502
+ (unqualifiedAccessExpr
503
+ (identifier)
504
+ (argumentList
505
+ (intLiteralExpr)))
506
+ (unqualifiedAccessExpr
507
+ (identifier)
508
+ (argumentList
509
+ (intLiteralExpr)
510
+ (intLiteralExpr))))
511
+ (additiveExpr
512
+ (slStringLiteralExpr
513
+ (slStringLiteralPart))
514
+ (slStringLiteralExpr
515
+ (slStringLiteralPart))))
516
+ (objectEntry
517
+ (additiveExpr
518
+ (intLiteralExpr)
519
+ (intLiteralExpr))
520
+ (additiveExpr
521
+ (slStringLiteralExpr
522
+ (slStringLiteralPart))
523
+ (slStringLiteralExpr
524
+ (slStringLiteralPart)))))))
525
+ (classProperty
526
+ (modifier)
527
+ (identifier)
528
+ (typeAnnotation
529
+ (declaredType
530
+ (qualifiedIdentifier
531
+ (identifier))
532
+ (typeArgumentList
533
+ (constrainedType
534
+ (declaredType
535
+ (qualifiedIdentifier
536
+ (identifier)))
537
+ (logicalNotExpr
538
+ (unqualifiedAccessExpr
539
+ (identifier))))
540
+ (declaredType
541
+ (qualifiedIdentifier
542
+ (identifier))))))
543
+ (newExpr
544
+ (objectBody
545
+ (objectEntry
546
+ (slStringLiteralExpr)
547
+ (slStringLiteralExpr
548
+ (slStringLiteralPart))))))
549
+ (classProperty
550
+ (modifier)
551
+ (identifier)
552
+ (typeAnnotation
553
+ (declaredType
554
+ (qualifiedIdentifier
555
+ (identifier))
556
+ (typeArgumentList
557
+ (declaredType
558
+ (qualifiedIdentifier
559
+ (identifier)))
560
+ (constrainedType
561
+ (declaredType
562
+ (qualifiedIdentifier
563
+ (identifier)))
564
+ (logicalNotExpr
565
+ (unqualifiedAccessExpr
566
+ (identifier)))))))
567
+ (newExpr
568
+ (objectBody
569
+ (objectEntry
570
+ (slStringLiteralExpr
571
+ (slStringLiteralPart))
572
+ (slStringLiteralExpr)))))
573
+ (classProperty
574
+ (identifier)
575
+ (qualifiedAccessExpr
576
+ (unqualifiedAccessExpr
577
+ (identifier))
578
+ (identifier)))
579
+ (classProperty
580
+ (identifier)
581
+ (qualifiedAccessExpr
582
+ (unqualifiedAccessExpr
583
+ (identifier))
584
+ (identifier)
585
+ (argumentList
586
+ (functionLiteralExpr
587
+ (parameterList)
588
+ (subscriptExpr
589
+ (unqualifiedAccessExpr
590
+ (identifier))
591
+ (slStringLiteralExpr
592
+ (slStringLiteralPart)))))))
593
+ (classProperty
594
+ (identifier)
595
+ (qualifiedAccessExpr
596
+ (unqualifiedAccessExpr
597
+ (identifier))
598
+ (identifier)))
599
+ (classProperty
600
+ (identifier)
601
+ (subscriptExpr
602
+ (unqualifiedAccessExpr
603
+ (identifier))
604
+ (slStringLiteralExpr
605
+ (slStringLiteralPart))))
606
+ (classProperty
607
+ (identifier)
608
+ (qualifiedAccessExpr
609
+ (unqualifiedAccessExpr
610
+ (identifier))
611
+ (identifier)
612
+ (argumentList
613
+ (functionLiteralExpr
614
+ (parameterList)
615
+ (subscriptExpr
616
+ (unqualifiedAccessExpr
617
+ (identifier))
618
+ (slStringLiteralExpr
619
+ (slStringLiteralPart)))))))
620
+ (classProperty
621
+ (identifier)
622
+ (qualifiedAccessExpr
623
+ (unqualifiedAccessExpr
624
+ (identifier))
625
+ (identifier)
626
+ (argumentList
627
+ (functionLiteralExpr
628
+ (parameterList)
629
+ (unqualifiedAccessExpr
630
+ (identifier))))))
631
+ (classProperty
632
+ (identifier)
633
+ (qualifiedAccessExpr
634
+ (unqualifiedAccessExpr
635
+ (identifier))
636
+ (identifier)
637
+ (argumentList
638
+ (functionLiteralExpr
639
+ (parameterList)
640
+ (unqualifiedAccessExpr
641
+ (identifier))))))
642
+ (classProperty
643
+ (identifier)
644
+ (qualifiedAccessExpr
645
+ (unqualifiedAccessExpr
646
+ (identifier))
647
+ (identifier)
648
+ (argumentList
649
+ (functionLiteralExpr
650
+ (parameterList)
651
+ (unqualifiedAccessExpr
652
+ (identifier))))))
653
+ (classProperty
654
+ (identifier)
655
+ (qualifiedAccessExpr
656
+ (unqualifiedAccessExpr
657
+ (identifier))
658
+ (identifier)))
659
+ (classProperty
660
+ (identifier)
661
+ (qualifiedAccessExpr
662
+ (unqualifiedAccessExpr
663
+ (identifier))
664
+ (identifier)
665
+ (argumentList
666
+ (functionLiteralExpr
667
+ (parameterList)
668
+ (subscriptExpr
669
+ (unqualifiedAccessExpr
670
+ (identifier))
671
+ (slStringLiteralExpr
672
+ (slStringLiteralPart)))))))
673
+ (classProperty
674
+ (modifier)
675
+ (identifier)
676
+ (typeAnnotation
677
+ (declaredType
678
+ (qualifiedIdentifier
679
+ (identifier))))
680
+ (newExpr
681
+ (objectBody
682
+ (objectEntry
683
+ (slStringLiteralExpr
684
+ (slStringLiteralPart))
685
+ (throwExpr
686
+ (slStringLiteralExpr
687
+ (slStringLiteralPart)))))))
688
+ (classProperty
689
+ (modifier)
690
+ (identifier)
691
+ (typeAnnotation
692
+ (declaredType
693
+ (qualifiedIdentifier
694
+ (identifier))
695
+ (typeArgumentList
696
+ (declaredType
697
+ (qualifiedIdentifier
698
+ (identifier)))
699
+ (declaredType
700
+ (qualifiedIdentifier
701
+ (identifier))))))
702
+ (newExpr
703
+ (objectBody
704
+ (objectEntry
705
+ (slStringLiteralExpr
706
+ (slStringLiteralPart))
707
+ (throwExpr
708
+ (slStringLiteralExpr
709
+ (slStringLiteralPart)))))))
710
+ (classProperty
711
+ (modifier)
712
+ (identifier)
713
+ (typeAnnotation
714
+ (declaredType
715
+ (qualifiedIdentifier
716
+ (identifier))
717
+ (typeArgumentList
718
+ (declaredType
719
+ (qualifiedIdentifier
720
+ (identifier)))
721
+ (unknownType))))
722
+ (newExpr
723
+ (objectBody
724
+ (objectEntry
725
+ (slStringLiteralExpr
726
+ (slStringLiteralPart))
727
+ (throwExpr
728
+ (slStringLiteralExpr
729
+ (slStringLiteralPart)))))))
730
+ (classProperty
731
+ (modifier)
732
+ (identifier)
733
+ (newExpr
734
+ (declaredType
735
+ (qualifiedIdentifier
736
+ (identifier)))
737
+ (objectBody
738
+ (objectEntry
739
+ (slStringLiteralExpr
740
+ (slStringLiteralPart))
741
+ (throwExpr
742
+ (slStringLiteralExpr
743
+ (slStringLiteralPart))))
744
+ (objectEntry
745
+ (slStringLiteralExpr
746
+ (slStringLiteralPart))
747
+ (intLiteralExpr))
748
+ (objectEntry
749
+ (slStringLiteralExpr
750
+ (slStringLiteralPart))
751
+ (throwExpr
752
+ (slStringLiteralExpr
753
+ (slStringLiteralPart)))))))
754
+ (classProperty
755
+ (identifier)
756
+ (qualifiedAccessExpr
757
+ (unqualifiedAccessExpr
758
+ (identifier))
759
+ (identifier)))
760
+ (classProperty
761
+ (identifier)
762
+ (qualifiedAccessExpr
763
+ (unqualifiedAccessExpr
764
+ (identifier))
765
+ (identifier)))
766
+ (classProperty
767
+ (identifier)
768
+ (qualifiedAccessExpr
769
+ (unqualifiedAccessExpr
770
+ (identifier))
771
+ (identifier)))
772
+ (classProperty
773
+ (identifier)
774
+ (qualifiedAccessExpr
775
+ (unqualifiedAccessExpr
776
+ (identifier))
777
+ (identifier)))
778
+ (classProperty
779
+ (identifier)
780
+ (subscriptExpr
781
+ (unqualifiedAccessExpr
782
+ (identifier))
783
+ (slStringLiteralExpr
784
+ (slStringLiteralPart))))
785
+ (classProperty
786
+ (modifier)
787
+ (identifier)
788
+ (typeAnnotation
789
+ (declaredType
790
+ (qualifiedIdentifier
791
+ (identifier))
792
+ (typeArgumentList
793
+ (declaredType
794
+ (qualifiedIdentifier
795
+ (identifier)))
796
+ (constrainedType
797
+ (declaredType
798
+ (qualifiedIdentifier
799
+ (identifier)))
800
+ (logicalNotExpr
801
+ (unqualifiedAccessExpr
802
+ (identifier)))))))
803
+ (newExpr
804
+ (declaredType
805
+ (qualifiedIdentifier
806
+ (identifier))
807
+ (typeArgumentList
808
+ (declaredType
809
+ (qualifiedIdentifier
810
+ (identifier)))
811
+ (declaredType
812
+ (qualifiedIdentifier
813
+ (identifier)))))
814
+ (objectBody
815
+ (objectEntry
816
+ (slStringLiteralExpr
817
+ (slStringLiteralPart))
818
+ (slStringLiteralExpr)))))
819
+ (classProperty
820
+ (identifier)
821
+ (qualifiedAccessExpr
822
+ (unqualifiedAccessExpr
823
+ (identifier))
824
+ (identifier)))
825
+ (classProperty
826
+ (identifier)
827
+ (qualifiedAccessExpr
828
+ (unqualifiedAccessExpr
829
+ (identifier))
830
+ (identifier)
831
+ (argumentList
832
+ (functionLiteralExpr
833
+ (parameterList)
834
+ (subscriptExpr
835
+ (unqualifiedAccessExpr
836
+ (identifier))
837
+ (slStringLiteralExpr
838
+ (slStringLiteralPart)))))))
839
+ (classProperty
840
+ (modifier)
841
+ (identifier)
842
+ (typeAnnotation
843
+ (declaredType
844
+ (qualifiedIdentifier
845
+ (identifier))
846
+ (typeArgumentList
847
+ (declaredType
848
+ (qualifiedIdentifier
849
+ (identifier)))
850
+ (declaredType
851
+ (qualifiedIdentifier
852
+ (identifier))))))
853
+ (newExpr
854
+ (declaredType
855
+ (qualifiedIdentifier
856
+ (identifier))
857
+ (typeArgumentList
858
+ (declaredType
859
+ (qualifiedIdentifier
860
+ (identifier)))
861
+ (constrainedType
862
+ (declaredType
863
+ (qualifiedIdentifier
864
+ (identifier)))
865
+ (logicalNotExpr
866
+ (unqualifiedAccessExpr
867
+ (identifier))))))
868
+ (objectBody
869
+ (objectEntry
870
+ (slStringLiteralExpr
871
+ (slStringLiteralPart))
872
+ (slStringLiteralExpr)))))
873
+ (classProperty
874
+ (identifier)
875
+ (qualifiedAccessExpr
876
+ (unqualifiedAccessExpr
877
+ (identifier))
878
+ (identifier)))
879
+ (classProperty
880
+ (identifier)
881
+ (qualifiedAccessExpr
882
+ (unqualifiedAccessExpr
883
+ (identifier))
884
+ (identifier)
885
+ (argumentList
886
+ (functionLiteralExpr
887
+ (parameterList)
888
+ (subscriptExpr
889
+ (unqualifiedAccessExpr
890
+ (identifier))
891
+ (slStringLiteralExpr
892
+ (slStringLiteralPart)))))))
893
+ (classProperty
894
+ (modifier)
895
+ (identifier)
896
+ (newExpr
897
+ (declaredType
898
+ (qualifiedIdentifier
899
+ (identifier)))
900
+ (objectBody
901
+ (objectEntry
902
+ (slStringLiteralExpr
903
+ (slStringLiteralPart))
904
+ (intLiteralExpr))
905
+ (objectEntry
906
+ (slStringLiteralExpr
907
+ (slStringLiteralPart))
908
+ (slStringLiteralExpr
909
+ (slStringLiteralPart))))))
910
+ (classProperty
911
+ (modifier)
912
+ (identifier)
913
+ (typeAnnotation
914
+ (unionType
915
+ (declaredType
916
+ (qualifiedIdentifier
917
+ (identifier))
918
+ (typeArgumentList
919
+ (declaredType
920
+ (qualifiedIdentifier
921
+ (identifier)))
922
+ (declaredType
923
+ (qualifiedIdentifier
924
+ (identifier)))))
925
+ (declaredType
926
+ (qualifiedIdentifier
927
+ (identifier))
928
+ (typeArgumentList
929
+ (declaredType
930
+ (qualifiedIdentifier
931
+ (identifier)))
932
+ (declaredType
933
+ (qualifiedIdentifier
934
+ (identifier)))))))
935
+ (unqualifiedAccessExpr
936
+ (identifier)))
937
+ (classProperty
938
+ (modifier)
939
+ (identifier)
940
+ (typeAnnotation
941
+ (unionType
942
+ (declaredType
943
+ (qualifiedIdentifier
944
+ (identifier))
945
+ (typeArgumentList
946
+ (declaredType
947
+ (qualifiedIdentifier
948
+ (identifier)))
949
+ (declaredType
950
+ (qualifiedIdentifier
951
+ (identifier)))))
952
+ (nullableType
953
+ (declaredType
954
+ (qualifiedIdentifier
955
+ (identifier))
956
+ (typeArgumentList
957
+ (declaredType
958
+ (qualifiedIdentifier
959
+ (identifier)))
960
+ (declaredType
961
+ (qualifiedIdentifier
962
+ (identifier))))))))
963
+ (unqualifiedAccessExpr
964
+ (identifier)))
965
+ (classProperty
966
+ (modifier)
967
+ (identifier)
968
+ (typeAnnotation
969
+ (unionType
970
+ (declaredType
971
+ (qualifiedIdentifier
972
+ (identifier))
973
+ (typeArgumentList
974
+ (declaredType
975
+ (qualifiedIdentifier
976
+ (identifier)))
977
+ (declaredType
978
+ (qualifiedIdentifier
979
+ (identifier)))))
980
+ (parenthesizedType
981
+ (unionType
982
+ (declaredType
983
+ (qualifiedIdentifier
984
+ (identifier))
985
+ (typeArgumentList
986
+ (declaredType
987
+ (qualifiedIdentifier
988
+ (identifier)))
989
+ (declaredType
990
+ (qualifiedIdentifier
991
+ (identifier)))))
992
+ (declaredType
993
+ (qualifiedIdentifier
994
+ (identifier)))))))
995
+ (unqualifiedAccessExpr
996
+ (identifier)))
997
+ (classProperty
998
+ (modifier)
999
+ (identifier)
1000
+ (typeAnnotation
1001
+ (unionType
1002
+ (declaredType
1003
+ (qualifiedIdentifier
1004
+ (identifier))
1005
+ (typeArgumentList
1006
+ (declaredType
1007
+ (qualifiedIdentifier
1008
+ (identifier)))
1009
+ (declaredType
1010
+ (qualifiedIdentifier
1011
+ (identifier)))))
1012
+ (declaredType
1013
+ (qualifiedIdentifier
1014
+ (identifier)))))
1015
+ (unqualifiedAccessExpr
1016
+ (identifier)))
1017
+ (classProperty
1018
+ (identifier)
1019
+ (qualifiedAccessExpr
1020
+ (unqualifiedAccessExpr
1021
+ (identifier))
1022
+ (identifier)
1023
+ (argumentList
1024
+ (functionLiteralExpr
1025
+ (parameterList)
1026
+ (unqualifiedAccessExpr
1027
+ (identifier))))))
1028
+ (classProperty
1029
+ (identifier)
1030
+ (qualifiedAccessExpr
1031
+ (unqualifiedAccessExpr
1032
+ (identifier))
1033
+ (identifier)
1034
+ (argumentList
1035
+ (functionLiteralExpr
1036
+ (parameterList)
1037
+ (unqualifiedAccessExpr
1038
+ (identifier))))))
1039
+ (classProperty
1040
+ (identifier)
1041
+ (qualifiedAccessExpr
1042
+ (unqualifiedAccessExpr
1043
+ (identifier))
1044
+ (identifier)
1045
+ (argumentList
1046
+ (functionLiteralExpr
1047
+ (parameterList)
1048
+ (unqualifiedAccessExpr
1049
+ (identifier))))))
1050
+ (classProperty
1051
+ (identifier)
1052
+ (qualifiedAccessExpr
1053
+ (unqualifiedAccessExpr
1054
+ (identifier))
1055
+ (identifier)))
1056
+ (classProperty
1057
+ (identifier)
1058
+ (qualifiedAccessExpr
1059
+ (unqualifiedAccessExpr
1060
+ (identifier))
1061
+ (identifier)
1062
+ (argumentList
1063
+ (functionLiteralExpr
1064
+ (parameterList)
1065
+ (subscriptExpr
1066
+ (unqualifiedAccessExpr
1067
+ (identifier))
1068
+ (slStringLiteralExpr
1069
+ (slStringLiteralPart)))))))
1070
+ (classProperty
1071
+ (modifier)
1072
+ (identifier)
1073
+ (typeAnnotation
1074
+ (declaredType
1075
+ (qualifiedIdentifier
1076
+ (identifier))
1077
+ (typeArgumentList
1078
+ (declaredType
1079
+ (qualifiedIdentifier
1080
+ (identifier)))
1081
+ (declaredType
1082
+ (qualifiedIdentifier
1083
+ (identifier))
1084
+ (typeArgumentList
1085
+ (declaredType
1086
+ (qualifiedIdentifier
1087
+ (identifier)))
1088
+ (declaredType
1089
+ (qualifiedIdentifier
1090
+ (identifier))))))))
1091
+ (newExpr
1092
+ (objectBody
1093
+ (objectEntry
1094
+ (slStringLiteralExpr
1095
+ (slStringLiteralPart))
1096
+ (objectBody
1097
+ (objectEntry
1098
+ (slStringLiteralExpr
1099
+ (slStringLiteralPart))
1100
+ (intLiteralExpr)))))))
1101
+ (classProperty
1102
+ (identifier)
1103
+ (qualifiedAccessExpr
1104
+ (unqualifiedAccessExpr
1105
+ (identifier))
1106
+ (identifier)))
1107
+ (classProperty
1108
+ (identifier)
1109
+ (qualifiedAccessExpr
1110
+ (subscriptExpr
1111
+ (unqualifiedAccessExpr
1112
+ (identifier))
1113
+ (slStringLiteralExpr
1114
+ (slStringLiteralPart)))
1115
+ (identifier)))
1116
+ (classProperty
1117
+ (identifier)
1118
+ (qualifiedAccessExpr
1119
+ (unqualifiedAccessExpr
1120
+ (identifier))
1121
+ (identifier)
1122
+ (argumentList
1123
+ (functionLiteralExpr
1124
+ (parameterList)
1125
+ (subscriptExpr
1126
+ (subscriptExpr
1127
+ (unqualifiedAccessExpr
1128
+ (identifier))
1129
+ (slStringLiteralExpr
1130
+ (slStringLiteralPart)))
1131
+ (slStringLiteralExpr
1132
+ (slStringLiteralPart)))))))
1133
+ (classProperty
1134
+ (modifier)
1135
+ (identifier)
1136
+ (typeCastExpr
1137
+ (newExpr
1138
+ (declaredType
1139
+ (qualifiedIdentifier
1140
+ (identifier)))
1141
+ (objectBody
1142
+ (objectEntry
1143
+ (slStringLiteralExpr
1144
+ (slStringLiteralPart))
1145
+ (intLiteralExpr))))
1146
+ (declaredType
1147
+ (qualifiedIdentifier
1148
+ (identifier))
1149
+ (typeArgumentList
1150
+ (declaredType
1151
+ (qualifiedIdentifier
1152
+ (identifier)))
1153
+ (declaredType
1154
+ (qualifiedIdentifier
1155
+ (identifier)))))))
1156
+ (classProperty
1157
+ (identifier)
1158
+ (qualifiedAccessExpr
1159
+ (unqualifiedAccessExpr
1160
+ (identifier))
1161
+ (identifier)))
1162
+ (classProperty
1163
+ (identifier)
1164
+ (qualifiedAccessExpr
1165
+ (unqualifiedAccessExpr
1166
+ (identifier))
1167
+ (identifier)
1168
+ (argumentList
1169
+ (functionLiteralExpr
1170
+ (parameterList)
1171
+ (subscriptExpr
1172
+ (unqualifiedAccessExpr
1173
+ (identifier))
1174
+ (slStringLiteralExpr
1175
+ (slStringLiteralPart)))))))
1176
+ (classProperty
1177
+ (modifier)
1178
+ (identifier)
1179
+ (newExpr
1180
+ (declaredType
1181
+ (qualifiedIdentifier
1182
+ (identifier))
1183
+ (typeArgumentList
1184
+ (declaredType
1185
+ (qualifiedIdentifier
1186
+ (identifier)))
1187
+ (declaredType
1188
+ (qualifiedIdentifier
1189
+ (identifier)))))
1190
+ (objectBody
1191
+ (whenGenerator
1192
+ (trueLiteralExpr)
1193
+ (objectBody
1194
+ (objectEntry
1195
+ (slStringLiteralExpr
1196
+ (slStringLiteralPart))
1197
+ (intLiteralExpr)))))))
1198
+ (classProperty
1199
+ (identifier)
1200
+ (qualifiedAccessExpr
1201
+ (unqualifiedAccessExpr
1202
+ (identifier))
1203
+ (identifier)))
1204
+ (classProperty
1205
+ (identifier)
1206
+ (qualifiedAccessExpr
1207
+ (unqualifiedAccessExpr
1208
+ (identifier))
1209
+ (identifier)
1210
+ (argumentList
1211
+ (functionLiteralExpr
1212
+ (parameterList)
1213
+ (subscriptExpr
1214
+ (unqualifiedAccessExpr
1215
+ (identifier))
1216
+ (slStringLiteralExpr
1217
+ (slStringLiteralPart)))))))
1218
+ (classProperty
1219
+ (modifier)
1220
+ (identifier)
1221
+ (newExpr
1222
+ (declaredType
1223
+ (qualifiedIdentifier
1224
+ (identifier))
1225
+ (typeArgumentList
1226
+ (declaredType
1227
+ (qualifiedIdentifier
1228
+ (identifier)))
1229
+ (declaredType
1230
+ (qualifiedIdentifier
1231
+ (identifier)))))
1232
+ (objectBody
1233
+ (objectSpread
1234
+ (unqualifiedAccessExpr
1235
+ (identifier)
1236
+ (argumentList
1237
+ (slStringLiteralExpr
1238
+ (slStringLiteralPart))
1239
+ (intLiteralExpr)))))))
1240
+ (classProperty
1241
+ (identifier)
1242
+ (qualifiedAccessExpr
1243
+ (unqualifiedAccessExpr
1244
+ (identifier))
1245
+ (identifier)))
1246
+ (classProperty
1247
+ (identifier)
1248
+ (qualifiedAccessExpr
1249
+ (unqualifiedAccessExpr
1250
+ (identifier))
1251
+ (identifier)
1252
+ (argumentList
1253
+ (functionLiteralExpr
1254
+ (parameterList)
1255
+ (subscriptExpr
1256
+ (unqualifiedAccessExpr
1257
+ (identifier))
1258
+ (slStringLiteralExpr
1259
+ (slStringLiteralPart)))))))
1260
+ (classProperty
1261
+ (modifier)
1262
+ (identifier)
1263
+ (newExpr
1264
+ (declaredType
1265
+ (qualifiedIdentifier
1266
+ (identifier))
1267
+ (typeArgumentList
1268
+ (declaredType
1269
+ (qualifiedIdentifier
1270
+ (identifier)))
1271
+ (declaredType
1272
+ (qualifiedIdentifier
1273
+ (identifier)))))
1274
+ (objectBody
1275
+ (forGenerator
1276
+ (typedIdentifier
1277
+ (identifier))
1278
+ (typedIdentifier
1279
+ (identifier))
1280
+ (unqualifiedAccessExpr
1281
+ (identifier)
1282
+ (argumentList
1283
+ (slStringLiteralExpr
1284
+ (slStringLiteralPart))
1285
+ (intLiteralExpr)))
1286
+ (objectBody
1287
+ (objectEntry
1288
+ (unqualifiedAccessExpr
1289
+ (identifier))
1290
+ (unqualifiedAccessExpr
1291
+ (identifier))))))))
1292
+ (classProperty
1293
+ (identifier)
1294
+ (qualifiedAccessExpr
1295
+ (unqualifiedAccessExpr
1296
+ (identifier))
1297
+ (identifier)))
1298
+ (classProperty
1299
+ (identifier)
1300
+ (qualifiedAccessExpr
1301
+ (unqualifiedAccessExpr
1302
+ (identifier))
1303
+ (identifier)
1304
+ (argumentList
1305
+ (functionLiteralExpr
1306
+ (parameterList)
1307
+ (subscriptExpr
1308
+ (unqualifiedAccessExpr
1309
+ (identifier))
1310
+ (slStringLiteralExpr
1311
+ (slStringLiteralPart)))))))
1312
+ (classProperty
1313
+ (modifier)
1314
+ (identifier)
1315
+ (typeAnnotation
1316
+ (declaredType
1317
+ (qualifiedIdentifier
1318
+ (identifier))
1319
+ (typeArgumentList
1320
+ (declaredType
1321
+ (qualifiedIdentifier
1322
+ (identifier)))
1323
+ (declaredType
1324
+ (qualifiedIdentifier
1325
+ (identifier))))))
1326
+ (newExpr
1327
+ (objectBody
1328
+ (objectEntry
1329
+ (slStringLiteralExpr
1330
+ (slStringLiteralPart))
1331
+ (slStringLiteralExpr
1332
+ (slStringLiteralPart))))))
1333
+ (classProperty
1334
+ (identifier)
1335
+ (amendExpr
1336
+ (parenthesizedExpr
1337
+ (unqualifiedAccessExpr
1338
+ (identifier)))
1339
+ (objectBody
1340
+ (objectEntry
1341
+ (slStringLiteralExpr
1342
+ (slStringLiteralPart))
1343
+ (intLiteralExpr)))))
1344
+ (classProperty
1345
+ (identifier)
1346
+ (amendExpr
1347
+ (parenthesizedExpr
1348
+ (unqualifiedAccessExpr
1349
+ (identifier)))
1350
+ (objectBody
1351
+ (whenGenerator
1352
+ (trueLiteralExpr)
1353
+ (objectBody
1354
+ (objectEntry
1355
+ (slStringLiteralExpr
1356
+ (slStringLiteralPart))
1357
+ (intLiteralExpr)))))))
1358
+ (classProperty
1359
+ (identifier)
1360
+ (amendExpr
1361
+ (parenthesizedExpr
1362
+ (unqualifiedAccessExpr
1363
+ (identifier)))
1364
+ (objectBody
1365
+ (objectSpread
1366
+ (unqualifiedAccessExpr
1367
+ (identifier)
1368
+ (argumentList
1369
+ (slStringLiteralExpr
1370
+ (slStringLiteralPart))
1371
+ (intLiteralExpr)))))))
1372
+ (classProperty
1373
+ (modifier)
1374
+ (identifier)
1375
+ (typeAnnotation
1376
+ (declaredType
1377
+ (qualifiedIdentifier
1378
+ (identifier))
1379
+ (typeArgumentList
1380
+ (declaredType
1381
+ (qualifiedIdentifier
1382
+ (identifier)))
1383
+ (declaredType
1384
+ (qualifiedIdentifier
1385
+ (identifier))
1386
+ (typeArgumentList
1387
+ (declaredType
1388
+ (qualifiedIdentifier
1389
+ (identifier)))
1390
+ (constrainedType
1391
+ (declaredType
1392
+ (qualifiedIdentifier
1393
+ (identifier)))
1394
+ (qualifiedAccessExpr
1395
+ (unqualifiedAccessExpr
1396
+ (identifier))
1397
+ (identifier))))))))
1398
+ (newExpr
1399
+ (declaredType
1400
+ (qualifiedIdentifier
1401
+ (identifier))
1402
+ (typeArgumentList
1403
+ (declaredType
1404
+ (qualifiedIdentifier
1405
+ (identifier)))
1406
+ (declaredType
1407
+ (qualifiedIdentifier
1408
+ (identifier))
1409
+ (typeArgumentList
1410
+ (declaredType
1411
+ (qualifiedIdentifier
1412
+ (identifier)))
1413
+ (constrainedType
1414
+ (declaredType
1415
+ (qualifiedIdentifier
1416
+ (identifier)))
1417
+ (equalityExpr
1418
+ (thisExpr)
1419
+ (unqualifiedAccessExpr
1420
+ (identifier)
1421
+ (argumentList))))))))
1422
+ (objectBody
1423
+ (objectEntry
1424
+ (slStringLiteralExpr
1425
+ (slStringLiteralPart))
1426
+ (objectBody
1427
+ (objectEntry
1428
+ (slStringLiteralExpr
1429
+ (slStringLiteralPart))
1430
+ (slStringLiteralExpr
1431
+ (slStringLiteralPart)))
1432
+ (objectEntry
1433
+ (slStringLiteralExpr
1434
+ (slStringLiteralPart))
1435
+ (slStringLiteralExpr
1436
+ (slStringLiteralPart))))))))
1437
+ (classProperty
1438
+ (identifier)
1439
+ (qualifiedAccessExpr
1440
+ (unqualifiedAccessExpr
1441
+ (identifier))
1442
+ (identifier)
1443
+ (argumentList
1444
+ (functionLiteralExpr
1445
+ (parameterList)
1446
+ (subscriptExpr
1447
+ (subscriptExpr
1448
+ (unqualifiedAccessExpr
1449
+ (identifier))
1450
+ (slStringLiteralExpr
1451
+ (slStringLiteralPart)))
1452
+ (slStringLiteralExpr
1453
+ (slStringLiteralPart)))))))
1454
+ (classProperty
1455
+ (identifier)
1456
+ (qualifiedAccessExpr
1457
+ (unqualifiedAccessExpr
1458
+ (identifier))
1459
+ (identifier)
1460
+ (argumentList
1461
+ (functionLiteralExpr
1462
+ (parameterList)
1463
+ (subscriptExpr
1464
+ (unqualifiedAccessExpr
1465
+ (identifier))
1466
+ (slStringLiteralExpr))))))
1467
+ (classProperty
1468
+ (modifier)
1469
+ (identifier)
1470
+ (typeAnnotation
1471
+ (declaredType
1472
+ (qualifiedIdentifier
1473
+ (identifier))
1474
+ (typeArgumentList
1475
+ (declaredType
1476
+ (qualifiedIdentifier
1477
+ (identifier))
1478
+ (typeArgumentList
1479
+ (declaredType
1480
+ (qualifiedIdentifier
1481
+ (identifier)))
1482
+ (constrainedType
1483
+ (declaredType
1484
+ (qualifiedIdentifier
1485
+ (identifier)))
1486
+ (qualifiedAccessExpr
1487
+ (unqualifiedAccessExpr
1488
+ (identifier))
1489
+ (identifier))))))))
1490
+ (unqualifiedAccessExpr
1491
+ (identifier)
1492
+ (argumentList
1493
+ (newExpr
1494
+ (declaredType
1495
+ (qualifiedIdentifier
1496
+ (identifier))
1497
+ (typeArgumentList
1498
+ (declaredType
1499
+ (qualifiedIdentifier
1500
+ (identifier)))
1501
+ (constrainedType
1502
+ (declaredType
1503
+ (qualifiedIdentifier
1504
+ (identifier)))
1505
+ (equalityExpr
1506
+ (thisExpr)
1507
+ (unqualifiedAccessExpr
1508
+ (identifier)
1509
+ (argumentList))))))
1510
+ (objectBody
1511
+ (objectEntry
1512
+ (slStringLiteralExpr
1513
+ (slStringLiteralPart))
1514
+ (slStringLiteralExpr
1515
+ (slStringLiteralPart)))
1516
+ (objectEntry
1517
+ (slStringLiteralExpr
1518
+ (slStringLiteralPart))
1519
+ (slStringLiteralExpr
1520
+ (slStringLiteralPart))))))))
1521
+ (classProperty
1522
+ (identifier)
1523
+ (qualifiedAccessExpr
1524
+ (unqualifiedAccessExpr
1525
+ (identifier))
1526
+ (identifier)
1527
+ (argumentList
1528
+ (functionLiteralExpr
1529
+ (parameterList)
1530
+ (subscriptExpr
1531
+ (subscriptExpr
1532
+ (unqualifiedAccessExpr
1533
+ (identifier))
1534
+ (intLiteralExpr))
1535
+ (slStringLiteralExpr
1536
+ (slStringLiteralPart)))))))
1537
+ (classProperty
1538
+ (identifier)
1539
+ (qualifiedAccessExpr
1540
+ (unqualifiedAccessExpr
1541
+ (identifier))
1542
+ (identifier)
1543
+ (argumentList
1544
+ (functionLiteralExpr
1545
+ (parameterList)
1546
+ (subscriptExpr
1547
+ (subscriptExpr
1548
+ (unqualifiedAccessExpr
1549
+ (identifier))
1550
+ (intLiteralExpr))
1551
+ (slStringLiteralExpr
1552
+ (slStringLiteralPart)))))))
1553
+ (classProperty
1554
+ (modifier)
1555
+ (identifier)
1556
+ (typeAnnotation
1557
+ (declaredType
1558
+ (qualifiedIdentifier
1559
+ (identifier))
1560
+ (typeArgumentList
1561
+ (unionType
1562
+ (declaredType
1563
+ (qualifiedIdentifier
1564
+ (identifier)))
1565
+ (declaredType
1566
+ (qualifiedIdentifier
1567
+ (identifier))
1568
+ (typeArgumentList
1569
+ (declaredType
1570
+ (qualifiedIdentifier
1571
+ (identifier)))
1572
+ (declaredType
1573
+ (qualifiedIdentifier
1574
+ (identifier)))))))))
1575
+ (unqualifiedAccessExpr
1576
+ (identifier)
1577
+ (argumentList
1578
+ (slStringLiteralExpr
1579
+ (slStringLiteralPart))
1580
+ (newExpr
1581
+ (declaredType
1582
+ (qualifiedIdentifier
1583
+ (identifier)))
1584
+ (objectBody
1585
+ (objectEntry
1586
+ (slStringLiteralExpr
1587
+ (slStringLiteralPart))
1588
+ (slStringLiteralExpr
1589
+ (slStringLiteralPart)))))
1590
+ (slStringLiteralExpr
1591
+ (slStringLiteralPart)))))
1592
+ (classProperty
1593
+ (identifier)
1594
+ (subscriptExpr
1595
+ (unqualifiedAccessExpr
1596
+ (identifier))
1597
+ (intLiteralExpr)))
1598
+ (classProperty
1599
+ (identifier)
1600
+ (qualifiedAccessExpr
1601
+ (subscriptExpr
1602
+ (unqualifiedAccessExpr
1603
+ (identifier))
1604
+ (intLiteralExpr))
1605
+ (identifier)))
1606
+ (classProperty
1607
+ (identifier)
1608
+ (qualifiedAccessExpr
1609
+ (unqualifiedAccessExpr
1610
+ (identifier))
1611
+ (identifier)
1612
+ (argumentList
1613
+ (functionLiteralExpr
1614
+ (parameterList)
1615
+ (subscriptExpr
1616
+ (subscriptExpr
1617
+ (unqualifiedAccessExpr
1618
+ (identifier))
1619
+ (intLiteralExpr))
1620
+ (slStringLiteralExpr
1621
+ (slStringLiteralPart)))))))
1622
+ (classProperty
1623
+ (identifier)
1624
+ (subscriptExpr
1625
+ (unqualifiedAccessExpr
1626
+ (identifier))
1627
+ (intLiteralExpr)))
1628
+ (classProperty
1629
+ (modifier)
1630
+ (identifier)
1631
+ (typeAnnotation
1632
+ (declaredType
1633
+ (qualifiedIdentifier
1634
+ (identifier))
1635
+ (typeArgumentList
1636
+ (declaredType
1637
+ (qualifiedIdentifier
1638
+ (identifier))
1639
+ (typeArgumentList
1640
+ (declaredType
1641
+ (qualifiedIdentifier
1642
+ (identifier)))
1643
+ (constrainedType
1644
+ (declaredType
1645
+ (qualifiedIdentifier
1646
+ (identifier)))
1647
+ (qualifiedAccessExpr
1648
+ (unqualifiedAccessExpr
1649
+ (identifier))
1650
+ (identifier))))))))
1651
+ (unqualifiedAccessExpr
1652
+ (identifier)
1653
+ (argumentList
1654
+ (newExpr
1655
+ (declaredType
1656
+ (qualifiedIdentifier
1657
+ (identifier))
1658
+ (typeArgumentList
1659
+ (declaredType
1660
+ (qualifiedIdentifier
1661
+ (identifier)))
1662
+ (constrainedType
1663
+ (declaredType
1664
+ (qualifiedIdentifier
1665
+ (identifier)))
1666
+ (equalityExpr
1667
+ (thisExpr)
1668
+ (unqualifiedAccessExpr
1669
+ (identifier)
1670
+ (argumentList))))))
1671
+ (objectBody
1672
+ (objectEntry
1673
+ (slStringLiteralExpr
1674
+ (slStringLiteralPart))
1675
+ (slStringLiteralExpr
1676
+ (slStringLiteralPart)))
1677
+ (objectEntry
1678
+ (slStringLiteralExpr
1679
+ (slStringLiteralPart))
1680
+ (slStringLiteralExpr
1681
+ (slStringLiteralPart))))))))
1682
+ (classProperty
1683
+ (identifier)
1684
+ (qualifiedAccessExpr
1685
+ (unqualifiedAccessExpr
1686
+ (identifier))
1687
+ (identifier)
1688
+ (argumentList
1689
+ (functionLiteralExpr
1690
+ (parameterList)
1691
+ (unqualifiedAccessExpr
1692
+ (identifier))))))
1693
+ (classProperty
1694
+ (modifier)
1695
+ (identifier)
1696
+ (typeAnnotation
1697
+ (unionType
1698
+ (declaredType
1699
+ (qualifiedIdentifier
1700
+ (identifier))
1701
+ (typeArgumentList
1702
+ (declaredType
1703
+ (qualifiedIdentifier
1704
+ (identifier))
1705
+ (typeArgumentList
1706
+ (declaredType
1707
+ (qualifiedIdentifier
1708
+ (identifier)))
1709
+ (declaredType
1710
+ (qualifiedIdentifier
1711
+ (identifier)))))))
1712
+ (declaredType
1713
+ (qualifiedIdentifier
1714
+ (identifier))
1715
+ (typeArgumentList
1716
+ (declaredType
1717
+ (qualifiedIdentifier
1718
+ (identifier))
1719
+ (typeArgumentList
1720
+ (declaredType
1721
+ (qualifiedIdentifier
1722
+ (identifier)))
1723
+ (declaredType
1724
+ (qualifiedIdentifier
1725
+ (identifier)))))))))
1726
+ (unqualifiedAccessExpr
1727
+ (identifier)
1728
+ (argumentList
1729
+ (newExpr
1730
+ (declaredType
1731
+ (qualifiedIdentifier
1732
+ (identifier)))
1733
+ (objectBody
1734
+ (objectEntry
1735
+ (slStringLiteralExpr
1736
+ (slStringLiteralPart))
1737
+ (intLiteralExpr)))))))
1738
+ (classProperty
1739
+ (identifier)
1740
+ (subscriptExpr
1741
+ (subscriptExpr
1742
+ (unqualifiedAccessExpr
1743
+ (identifier))
1744
+ (intLiteralExpr))
1745
+ (slStringLiteralExpr
1746
+ (slStringLiteralPart))))
1747
+ (classProperty
1748
+ (modifier)
1749
+ (identifier)
1750
+ (typeAnnotation
1751
+ (unionType
1752
+ (declaredType
1753
+ (qualifiedIdentifier
1754
+ (identifier))
1755
+ (typeArgumentList
1756
+ (declaredType
1757
+ (qualifiedIdentifier
1758
+ (identifier))
1759
+ (typeArgumentList
1760
+ (declaredType
1761
+ (qualifiedIdentifier
1762
+ (identifier)))
1763
+ (declaredType
1764
+ (qualifiedIdentifier
1765
+ (identifier)))))))
1766
+ (declaredType
1767
+ (qualifiedIdentifier
1768
+ (identifier))
1769
+ (typeArgumentList
1770
+ (declaredType
1771
+ (qualifiedIdentifier
1772
+ (identifier))
1773
+ (typeArgumentList
1774
+ (declaredType
1775
+ (qualifiedIdentifier
1776
+ (identifier)))
1777
+ (declaredType
1778
+ (qualifiedIdentifier
1779
+ (identifier)))))))))
1780
+ (unqualifiedAccessExpr
1781
+ (identifier)
1782
+ (argumentList
1783
+ (newExpr
1784
+ (declaredType
1785
+ (qualifiedIdentifier
1786
+ (identifier)))
1787
+ (objectBody
1788
+ (objectEntry
1789
+ (slStringLiteralExpr
1790
+ (slStringLiteralPart))
1791
+ (intLiteralExpr))
1792
+ (objectEntry
1793
+ (slStringLiteralExpr
1794
+ (slStringLiteralPart))
1795
+ (slStringLiteralExpr
1796
+ (slStringLiteralPart))))))))
1797
+ (classProperty
1798
+ (identifier)
1799
+ (qualifiedAccessExpr
1800
+ (unqualifiedAccessExpr
1801
+ (identifier))
1802
+ (identifier)
1803
+ (argumentList
1804
+ (functionLiteralExpr
1805
+ (parameterList)
1806
+ (unqualifiedAccessExpr
1807
+ (identifier))))))
1808
+ (classProperty
1809
+ (modifier)
1810
+ (identifier)
1811
+ (typeAnnotation
1812
+ (declaredType
1813
+ (qualifiedIdentifier
1814
+ (identifier))
1815
+ (typeArgumentList
1816
+ (declaredType
1817
+ (qualifiedIdentifier
1818
+ (identifier)))
1819
+ (declaredType
1820
+ (qualifiedIdentifier
1821
+ (identifier))
1822
+ (typeArgumentList
1823
+ (declaredType
1824
+ (qualifiedIdentifier
1825
+ (identifier)))
1826
+ (constrainedType
1827
+ (declaredType
1828
+ (qualifiedIdentifier
1829
+ (identifier)))
1830
+ (qualifiedAccessExpr
1831
+ (unqualifiedAccessExpr
1832
+ (identifier))
1833
+ (identifier))))))))
1834
+ (unqualifiedAccessExpr
1835
+ (identifier)
1836
+ (argumentList
1837
+ (slStringLiteralExpr
1838
+ (slStringLiteralPart))
1839
+ (newExpr
1840
+ (declaredType
1841
+ (qualifiedIdentifier
1842
+ (identifier))
1843
+ (typeArgumentList
1844
+ (declaredType
1845
+ (qualifiedIdentifier
1846
+ (identifier)))
1847
+ (constrainedType
1848
+ (declaredType
1849
+ (qualifiedIdentifier
1850
+ (identifier)))
1851
+ (equalityExpr
1852
+ (thisExpr)
1853
+ (unqualifiedAccessExpr
1854
+ (identifier)
1855
+ (argumentList))))))
1856
+ (objectBody
1857
+ (objectEntry
1858
+ (slStringLiteralExpr
1859
+ (slStringLiteralPart))
1860
+ (slStringLiteralExpr
1861
+ (slStringLiteralPart)))
1862
+ (objectEntry
1863
+ (slStringLiteralExpr
1864
+ (slStringLiteralPart))
1865
+ (slStringLiteralExpr
1866
+ (slStringLiteralPart))))))))
1867
+ (classProperty
1868
+ (identifier)
1869
+ (qualifiedAccessExpr
1870
+ (subscriptExpr
1871
+ (unqualifiedAccessExpr
1872
+ (identifier))
1873
+ (slStringLiteralExpr
1874
+ (slStringLiteralPart)))
1875
+ (identifier)))
1876
+ (classProperty
1877
+ (identifier)
1878
+ (qualifiedAccessExpr
1879
+ (unqualifiedAccessExpr
1880
+ (identifier))
1881
+ (identifier)
1882
+ (argumentList
1883
+ (functionLiteralExpr
1884
+ (parameterList)
1885
+ (subscriptExpr
1886
+ (subscriptExpr
1887
+ (unqualifiedAccessExpr
1888
+ (identifier))
1889
+ (slStringLiteralExpr
1890
+ (slStringLiteralPart)))
1891
+ (slStringLiteralExpr
1892
+ (slStringLiteralPart)))))))
1893
+ (classProperty
1894
+ (identifier)
1895
+ (qualifiedAccessExpr
1896
+ (unqualifiedAccessExpr
1897
+ (identifier))
1898
+ (identifier)
1899
+ (argumentList
1900
+ (functionLiteralExpr
1901
+ (parameterList)
1902
+ (subscriptExpr
1903
+ (subscriptExpr
1904
+ (unqualifiedAccessExpr
1905
+ (identifier))
1906
+ (slStringLiteralExpr
1907
+ (slStringLiteralPart)))
1908
+ (slStringLiteralExpr
1909
+ (slStringLiteralPart)))))))
1910
+ (classProperty
1911
+ (modifier)
1912
+ (identifier)
1913
+ (typeAnnotation
1914
+ (declaredType
1915
+ (qualifiedIdentifier
1916
+ (identifier))
1917
+ (typeArgumentList
1918
+ (declaredType
1919
+ (qualifiedIdentifier
1920
+ (identifier)))
1921
+ (unionType
1922
+ (declaredType
1923
+ (qualifiedIdentifier
1924
+ (identifier)))
1925
+ (declaredType
1926
+ (qualifiedIdentifier
1927
+ (identifier))
1928
+ (typeArgumentList
1929
+ (declaredType
1930
+ (qualifiedIdentifier
1931
+ (identifier)))
1932
+ (declaredType
1933
+ (qualifiedIdentifier
1934
+ (identifier)))))))))
1935
+ (unqualifiedAccessExpr
1936
+ (identifier)
1937
+ (argumentList
1938
+ (slStringLiteralExpr
1939
+ (slStringLiteralPart))
1940
+ (intLiteralExpr)
1941
+ (slStringLiteralExpr
1942
+ (slStringLiteralPart))
1943
+ (newExpr
1944
+ (declaredType
1945
+ (qualifiedIdentifier
1946
+ (identifier)))
1947
+ (objectBody
1948
+ (objectEntry
1949
+ (slStringLiteralExpr
1950
+ (slStringLiteralPart))
1951
+ (intLiteralExpr))
1952
+ (objectEntry
1953
+ (slStringLiteralExpr
1954
+ (slStringLiteralPart))
1955
+ (intLiteralExpr))))
1956
+ (slStringLiteralExpr
1957
+ (slStringLiteralPart))
1958
+ (intLiteralExpr))))
1959
+ (classProperty
1960
+ (identifier)
1961
+ (qualifiedAccessExpr
1962
+ (unqualifiedAccessExpr
1963
+ (identifier))
1964
+ (identifier)))
1965
+ (classProperty
1966
+ (identifier)
1967
+ (subscriptExpr
1968
+ (unqualifiedAccessExpr
1969
+ (identifier))
1970
+ (slStringLiteralExpr
1971
+ (slStringLiteralPart))))
1972
+ (classProperty
1973
+ (identifier)
1974
+ (subscriptExpr
1975
+ (unqualifiedAccessExpr
1976
+ (identifier))
1977
+ (slStringLiteralExpr
1978
+ (slStringLiteralPart))))
1979
+ (classProperty
1980
+ (identifier)
1981
+ (qualifiedAccessExpr
1982
+ (subscriptExpr
1983
+ (unqualifiedAccessExpr
1984
+ (identifier))
1985
+ (slStringLiteralExpr
1986
+ (slStringLiteralPart)))
1987
+ (identifier)))
1988
+ (classProperty
1989
+ (identifier)
1990
+ (qualifiedAccessExpr
1991
+ (unqualifiedAccessExpr
1992
+ (identifier))
1993
+ (identifier)
1994
+ (argumentList
1995
+ (functionLiteralExpr
1996
+ (parameterList)
1997
+ (subscriptExpr
1998
+ (subscriptExpr
1999
+ (unqualifiedAccessExpr
2000
+ (identifier))
2001
+ (slStringLiteralExpr
2002
+ (slStringLiteralPart)))
2003
+ (slStringLiteralExpr
2004
+ (slStringLiteralPart)))))))
2005
+ (classProperty
2006
+ (identifier)
2007
+ (qualifiedAccessExpr
2008
+ (unqualifiedAccessExpr
2009
+ (identifier))
2010
+ (identifier)
2011
+ (argumentList
2012
+ (functionLiteralExpr
2013
+ (parameterList)
2014
+ (subscriptExpr
2015
+ (subscriptExpr
2016
+ (unqualifiedAccessExpr
2017
+ (identifier))
2018
+ (slStringLiteralExpr
2019
+ (slStringLiteralPart)))
2020
+ (slStringLiteralExpr
2021
+ (slStringLiteralPart)))))))
2022
+ (classProperty
2023
+ (modifier)
2024
+ (identifier)
2025
+ (typeAnnotation
2026
+ (declaredType
2027
+ (qualifiedIdentifier
2028
+ (identifier))
2029
+ (typeArgumentList
2030
+ (declaredType
2031
+ (qualifiedIdentifier
2032
+ (identifier))
2033
+ (typeArgumentList
2034
+ (declaredType
2035
+ (qualifiedIdentifier
2036
+ (identifier)))
2037
+ (declaredType
2038
+ (qualifiedIdentifier
2039
+ (identifier)))))
2040
+ (declaredType
2041
+ (qualifiedIdentifier
2042
+ (identifier))))))
2043
+ (unqualifiedAccessExpr
2044
+ (identifier)
2045
+ (argumentList
2046
+ (newExpr
2047
+ (declaredType
2048
+ (qualifiedIdentifier
2049
+ (identifier)))
2050
+ (objectBody
2051
+ (objectEntry
2052
+ (slStringLiteralExpr
2053
+ (slStringLiteralPart))
2054
+ (intLiteralExpr))))
2055
+ (intLiteralExpr))))
2056
+ (classProperty
2057
+ (identifier)
2058
+ (qualifiedAccessExpr
2059
+ (unqualifiedAccessExpr
2060
+ (identifier))
2061
+ (identifier)
2062
+ (argumentList
2063
+ (functionLiteralExpr
2064
+ (parameterList)
2065
+ (unqualifiedAccessExpr
2066
+ (identifier))))))
2067
+ (classProperty
2068
+ (modifier)
2069
+ (identifier)
2070
+ (typeAnnotation
2071
+ (declaredType
2072
+ (qualifiedIdentifier
2073
+ (identifier))
2074
+ (typeArgumentList
2075
+ (declaredType
2076
+ (qualifiedIdentifier
2077
+ (identifier)))
2078
+ (unionType
2079
+ (declaredType
2080
+ (qualifiedIdentifier
2081
+ (identifier))
2082
+ (typeArgumentList
2083
+ (declaredType
2084
+ (qualifiedIdentifier
2085
+ (identifier)))
2086
+ (declaredType
2087
+ (qualifiedIdentifier
2088
+ (identifier)))))
2089
+ (declaredType
2090
+ (qualifiedIdentifier
2091
+ (identifier)))))))
2092
+ (unqualifiedAccessExpr
2093
+ (identifier)
2094
+ (argumentList
2095
+ (slStringLiteralExpr
2096
+ (slStringLiteralPart))
2097
+ (intLiteralExpr)
2098
+ (slStringLiteralExpr
2099
+ (slStringLiteralPart))
2100
+ (newExpr
2101
+ (declaredType
2102
+ (qualifiedIdentifier
2103
+ (identifier)))
2104
+ (objectBody
2105
+ (objectEntry
2106
+ (slStringLiteralExpr
2107
+ (slStringLiteralPart))
2108
+ (slStringLiteralExpr
2109
+ (slStringLiteralPart))))))))
2110
+ (classProperty
2111
+ (identifier)
2112
+ (qualifiedAccessExpr
2113
+ (unqualifiedAccessExpr
2114
+ (identifier))
2115
+ (identifier)))
2116
+ (classProperty
2117
+ (identifier)
2118
+ (subscriptExpr
2119
+ (unqualifiedAccessExpr
2120
+ (identifier))
2121
+ (slStringLiteralExpr
2122
+ (slStringLiteralPart))))
2123
+ (classProperty
2124
+ (identifier)
2125
+ (qualifiedAccessExpr
2126
+ (subscriptExpr
2127
+ (unqualifiedAccessExpr
2128
+ (identifier))
2129
+ (slStringLiteralExpr
2130
+ (slStringLiteralPart)))
2131
+ (identifier)))
2132
+ (classProperty
2133
+ (identifier)
2134
+ (qualifiedAccessExpr
2135
+ (unqualifiedAccessExpr
2136
+ (identifier))
2137
+ (identifier)
2138
+ (argumentList
2139
+ (functionLiteralExpr
2140
+ (parameterList)
2141
+ (subscriptExpr
2142
+ (subscriptExpr
2143
+ (unqualifiedAccessExpr
2144
+ (identifier))
2145
+ (slStringLiteralExpr
2146
+ (slStringLiteralPart)))
2147
+ (slStringLiteralExpr
2148
+ (slStringLiteralPart)))))))
2149
+ (classProperty
2150
+ (modifier)
2151
+ (identifier)
2152
+ (typeAnnotation
2153
+ (declaredType
2154
+ (qualifiedIdentifier
2155
+ (identifier))
2156
+ (typeArgumentList
2157
+ (declaredType
2158
+ (qualifiedIdentifier
2159
+ (identifier))
2160
+ (typeArgumentList
2161
+ (declaredType
2162
+ (qualifiedIdentifier
2163
+ (identifier)))
2164
+ (declaredType
2165
+ (qualifiedIdentifier
2166
+ (identifier)))))
2167
+ (declaredType
2168
+ (qualifiedIdentifier
2169
+ (identifier))
2170
+ (typeArgumentList
2171
+ (declaredType
2172
+ (qualifiedIdentifier
2173
+ (identifier)))
2174
+ (declaredType
2175
+ (qualifiedIdentifier
2176
+ (identifier))))))))
2177
+ (unqualifiedAccessExpr
2178
+ (identifier)
2179
+ (argumentList
2180
+ (newExpr
2181
+ (declaredType
2182
+ (qualifiedIdentifier
2183
+ (identifier)))
2184
+ (objectBody
2185
+ (objectEntry
2186
+ (slStringLiteralExpr
2187
+ (slStringLiteralPart))
2188
+ (intLiteralExpr))))
2189
+ (newExpr
2190
+ (declaredType
2191
+ (qualifiedIdentifier
2192
+ (identifier)))
2193
+ (objectBody
2194
+ (objectEntry
2195
+ (slStringLiteralExpr
2196
+ (slStringLiteralPart))
2197
+ (intLiteralExpr)))))))
2198
+ (classProperty
2199
+ (identifier)
2200
+ (qualifiedAccessExpr
2201
+ (qualifiedAccessExpr
2202
+ (unqualifiedAccessExpr
2203
+ (identifier))
2204
+ (identifier))
2205
+ (identifier)))
2206
+ (classProperty
2207
+ (identifier)
2208
+ (qualifiedAccessExpr
2209
+ (qualifiedAccessExpr
2210
+ (unqualifiedAccessExpr
2211
+ (identifier))
2212
+ (identifier))
2213
+ (identifier)))
2214
+ (classProperty
2215
+ (identifier)
2216
+ (qualifiedAccessExpr
2217
+ (unqualifiedAccessExpr
2218
+ (identifier))
2219
+ (identifier)
2220
+ (argumentList
2221
+ (functionLiteralExpr
2222
+ (parameterList)
2223
+ (subscriptExpr
2224
+ (qualifiedAccessExpr
2225
+ (unqualifiedAccessExpr
2226
+ (identifier))
2227
+ (identifier))
2228
+ (slStringLiteralExpr
2229
+ (slStringLiteralPart)))))))
2230
+ (classProperty
2231
+ (identifier)
2232
+ (qualifiedAccessExpr
2233
+ (unqualifiedAccessExpr
2234
+ (identifier))
2235
+ (identifier)
2236
+ (argumentList
2237
+ (functionLiteralExpr
2238
+ (parameterList)
2239
+ (subscriptExpr
2240
+ (qualifiedAccessExpr
2241
+ (unqualifiedAccessExpr
2242
+ (identifier))
2243
+ (identifier))
2244
+ (slStringLiteralExpr
2245
+ (slStringLiteralPart)))))))
2246
+ (classProperty
2247
+ (modifier)
2248
+ (identifier)
2249
+ (typeAnnotation
2250
+ (declaredType
2251
+ (qualifiedIdentifier
2252
+ (identifier))
2253
+ (typeArgumentList
2254
+ (declaredType
2255
+ (qualifiedIdentifier
2256
+ (identifier)))
2257
+ (declaredType
2258
+ (qualifiedIdentifier
2259
+ (identifier))
2260
+ (typeArgumentList
2261
+ (declaredType
2262
+ (qualifiedIdentifier
2263
+ (identifier)))
2264
+ (declaredType
2265
+ (qualifiedIdentifier
2266
+ (identifier))))))))
2267
+ (unqualifiedAccessExpr
2268
+ (identifier)
2269
+ (argumentList
2270
+ (intLiteralExpr)
2271
+ (newExpr
2272
+ (declaredType
2273
+ (qualifiedIdentifier
2274
+ (identifier)))
2275
+ (objectBody
2276
+ (objectEntry
2277
+ (slStringLiteralExpr
2278
+ (slStringLiteralPart))
2279
+ (intLiteralExpr)))))))
2280
+ (classProperty
2281
+ (identifier)
2282
+ (qualifiedAccessExpr
2283
+ (unqualifiedAccessExpr
2284
+ (identifier))
2285
+ (identifier)))
2286
+ (classProperty
2287
+ (identifier)
2288
+ (qualifiedAccessExpr
2289
+ (qualifiedAccessExpr
2290
+ (unqualifiedAccessExpr
2291
+ (identifier))
2292
+ (identifier))
2293
+ (identifier)))
2294
+ (classProperty
2295
+ (identifier)
2296
+ (qualifiedAccessExpr
2297
+ (unqualifiedAccessExpr
2298
+ (identifier))
2299
+ (identifier)
2300
+ (argumentList
2301
+ (functionLiteralExpr
2302
+ (parameterList)
2303
+ (subscriptExpr
2304
+ (qualifiedAccessExpr
2305
+ (unqualifiedAccessExpr
2306
+ (identifier))
2307
+ (identifier))
2308
+ (slStringLiteralExpr
2309
+ (slStringLiteralPart)))))))
2310
+ (classProperty
2311
+ (modifier)
2312
+ (identifier)
2313
+ (typeAnnotation
2314
+ (declaredType
2315
+ (qualifiedIdentifier
2316
+ (identifier))
2317
+ (typeArgumentList
2318
+ (unionType
2319
+ (declaredType
2320
+ (qualifiedIdentifier
2321
+ (identifier)))
2322
+ (declaredType
2323
+ (qualifiedIdentifier
2324
+ (identifier))
2325
+ (typeArgumentList
2326
+ (declaredType
2327
+ (qualifiedIdentifier
2328
+ (identifier)))
2329
+ (declaredType
2330
+ (qualifiedIdentifier
2331
+ (identifier)))))))))
2332
+ (unqualifiedAccessExpr
2333
+ (identifier)
2334
+ (argumentList
2335
+ (intLiteralExpr)
2336
+ (newExpr
2337
+ (declaredType
2338
+ (qualifiedIdentifier
2339
+ (identifier)))
2340
+ (objectBody
2341
+ (objectEntry
2342
+ (slStringLiteralExpr
2343
+ (slStringLiteralPart))
2344
+ (slStringLiteralExpr
2345
+ (slStringLiteralPart)))
2346
+ (objectEntry
2347
+ (slStringLiteralExpr
2348
+ (slStringLiteralPart))
2349
+ (intLiteralExpr)))))))
2350
+ (classProperty
2351
+ (identifier)
2352
+ (qualifiedAccessExpr
2353
+ (unqualifiedAccessExpr
2354
+ (identifier))
2355
+ (identifier)))
2356
+ (classProperty
2357
+ (identifier)
2358
+ (qualifiedAccessExpr
2359
+ (unqualifiedAccessExpr
2360
+ (identifier))
2361
+ (identifier)))
2362
+ (classProperty
2363
+ (identifier)
2364
+ (qualifiedAccessExpr
2365
+ (subscriptExpr
2366
+ (unqualifiedAccessExpr
2367
+ (identifier))
2368
+ (intLiteralExpr))
2369
+ (identifier)))
2370
+ (classProperty
2371
+ (identifier)
2372
+ (subscriptExpr
2373
+ (subscriptExpr
2374
+ (unqualifiedAccessExpr
2375
+ (identifier))
2376
+ (intLiteralExpr))
2377
+ (slStringLiteralExpr
2378
+ (slStringLiteralPart))))
2379
+ (classProperty
2380
+ (identifier)
2381
+ (qualifiedAccessExpr
2382
+ (unqualifiedAccessExpr
2383
+ (identifier))
2384
+ (identifier)
2385
+ (argumentList
2386
+ (functionLiteralExpr
2387
+ (parameterList)
2388
+ (subscriptExpr
2389
+ (subscriptExpr
2390
+ (unqualifiedAccessExpr
2391
+ (identifier))
2392
+ (intLiteralExpr))
2393
+ (slStringLiteralExpr
2394
+ (slStringLiteralPart)))))))
2395
+ (classProperty
2396
+ (modifier)
2397
+ (identifier)
2398
+ (typeAnnotation
2399
+ (declaredType
2400
+ (qualifiedIdentifier
2401
+ (identifier))
2402
+ (typeArgumentList
2403
+ (unionType
2404
+ (declaredType
2405
+ (qualifiedIdentifier
2406
+ (identifier)))
2407
+ (declaredType
2408
+ (qualifiedIdentifier
2409
+ (identifier))
2410
+ (typeArgumentList
2411
+ (declaredType
2412
+ (qualifiedIdentifier
2413
+ (identifier)))
2414
+ (declaredType
2415
+ (qualifiedIdentifier
2416
+ (identifier)))))))))
2417
+ (unqualifiedAccessExpr
2418
+ (identifier)
2419
+ (argumentList
2420
+ (intLiteralExpr)
2421
+ (newExpr
2422
+ (declaredType
2423
+ (qualifiedIdentifier
2424
+ (identifier)))
2425
+ (objectBody
2426
+ (objectEntry
2427
+ (slStringLiteralExpr
2428
+ (slStringLiteralPart))
2429
+ (slStringLiteralExpr
2430
+ (slStringLiteralPart)))
2431
+ (objectEntry
2432
+ (slStringLiteralExpr
2433
+ (slStringLiteralPart))
2434
+ (intLiteralExpr)))))))
2435
+ (classProperty
2436
+ (identifier)
2437
+ (qualifiedAccessExpr
2438
+ (unqualifiedAccessExpr
2439
+ (identifier))
2440
+ (identifier)
2441
+ (argumentList
2442
+ (functionLiteralExpr
2443
+ (parameterList)
2444
+ (unqualifiedAccessExpr
2445
+ (identifier))))))
2446
+ (classProperty
2447
+ (modifier)
2448
+ (identifier)
2449
+ (typeAnnotation
2450
+ (unionType
2451
+ (declaredType
2452
+ (qualifiedIdentifier
2453
+ (identifier))
2454
+ (typeArgumentList
2455
+ (declaredType
2456
+ (qualifiedIdentifier
2457
+ (identifier))
2458
+ (typeArgumentList
2459
+ (declaredType
2460
+ (qualifiedIdentifier
2461
+ (identifier)))
2462
+ (declaredType
2463
+ (qualifiedIdentifier
2464
+ (identifier)))))))
2465
+ (declaredType
2466
+ (qualifiedIdentifier
2467
+ (identifier))
2468
+ (typeArgumentList
2469
+ (declaredType
2470
+ (qualifiedIdentifier
2471
+ (identifier))
2472
+ (typeArgumentList
2473
+ (declaredType
2474
+ (qualifiedIdentifier
2475
+ (identifier)))
2476
+ (declaredType
2477
+ (qualifiedIdentifier
2478
+ (identifier)))))))))
2479
+ (unqualifiedAccessExpr
2480
+ (identifier)
2481
+ (argumentList
2482
+ (newExpr
2483
+ (declaredType
2484
+ (qualifiedIdentifier
2485
+ (identifier)))
2486
+ (objectBody
2487
+ (objectEntry
2488
+ (slStringLiteralExpr
2489
+ (slStringLiteralPart))
2490
+ (slStringLiteralExpr
2491
+ (slStringLiteralPart)))
2492
+ (objectEntry
2493
+ (slStringLiteralExpr
2494
+ (slStringLiteralPart))
2495
+ (intLiteralExpr)))))))
2496
+ (classProperty
2497
+ (identifier)
2498
+ (qualifiedAccessExpr
2499
+ (unqualifiedAccessExpr
2500
+ (identifier))
2501
+ (identifier)
2502
+ (argumentList
2503
+ (functionLiteralExpr
2504
+ (parameterList)
2505
+ (unqualifiedAccessExpr
2506
+ (identifier))))))
2507
+ (clazz
2508
+ (modifier)
2509
+ (identifier)
2510
+ (classBody
2511
+ (classProperty
2512
+ (identifier)
2513
+ (intLiteralExpr))
2514
+ (classProperty
2515
+ (identifier)
2516
+ (intLiteralExpr))
2517
+ (classProperty
2518
+ (identifier)
2519
+ (slStringLiteralExpr
2520
+ (slStringLiteralPart)))))
2521
+ (classProperty
2522
+ (modifier)
2523
+ (identifier)
2524
+ (typeAnnotation
2525
+ (declaredType
2526
+ (qualifiedIdentifier
2527
+ (identifier))
2528
+ (typeArgumentList
2529
+ (declaredType
2530
+ (qualifiedIdentifier
2531
+ (identifier)))
2532
+ (declaredType
2533
+ (qualifiedIdentifier
2534
+ (identifier))))))
2535
+ (qualifiedAccessExpr
2536
+ (qualifiedAccessExpr
2537
+ (newExpr
2538
+ (declaredType
2539
+ (qualifiedIdentifier
2540
+ (identifier)))
2541
+ (objectBody))
2542
+ (identifier)
2543
+ (argumentList))
2544
+ (identifier)
2545
+ (argumentList)))
2546
+ (classProperty
2547
+ (identifier)
2548
+ (qualifiedAccessExpr
2549
+ (unqualifiedAccessExpr
2550
+ (identifier))
2551
+ (identifier)))
2552
+ (classProperty
2553
+ (identifier)
2554
+ (subscriptExpr
2555
+ (unqualifiedAccessExpr
2556
+ (identifier))
2557
+ (slStringLiteralExpr
2558
+ (slStringLiteralPart))))
2559
+ (classProperty
2560
+ (identifier)
2561
+ (subscriptExpr
2562
+ (unqualifiedAccessExpr
2563
+ (identifier))
2564
+ (slStringLiteralExpr
2565
+ (slStringLiteralPart))))
2566
+ (classProperty
2567
+ (identifier)
2568
+ (qualifiedAccessExpr
2569
+ (unqualifiedAccessExpr
2570
+ (identifier))
2571
+ (identifier)
2572
+ (argumentList
2573
+ (functionLiteralExpr
2574
+ (parameterList)
2575
+ (subscriptExpr
2576
+ (unqualifiedAccessExpr
2577
+ (identifier))
2578
+ (slStringLiteralExpr
2579
+ (slStringLiteralPart)))))))
2580
+ (classProperty
2581
+ (modifier)
2582
+ (identifier)
2583
+ (typeAnnotation
2584
+ (declaredType
2585
+ (qualifiedIdentifier
2586
+ (identifier))
2587
+ (typeArgumentList
2588
+ (declaredType
2589
+ (qualifiedIdentifier
2590
+ (identifier)))
2591
+ (declaredType
2592
+ (qualifiedIdentifier
2593
+ (identifier))))))
2594
+ (newExpr
2595
+ (objectBody
2596
+ (objectSpread
2597
+ (unqualifiedAccessExpr
2598
+ (identifier)
2599
+ (argumentList
2600
+ (slStringLiteralExpr
2601
+ (slStringLiteralPart))
2602
+ (intLiteralExpr)
2603
+ (slStringLiteralExpr
2604
+ (slStringLiteralPart))
2605
+ (intLiteralExpr)
2606
+ (slStringLiteralExpr
2607
+ (slStringLiteralPart))
2608
+ (slStringLiteralExpr
2609
+ (slStringLiteralPart))))))))
2610
+ (classProperty
2611
+ (identifier)
2612
+ (qualifiedAccessExpr
2613
+ (unqualifiedAccessExpr
2614
+ (identifier))
2615
+ (identifier)))
2616
+ (classProperty
2617
+ (identifier)
2618
+ (subscriptExpr
2619
+ (unqualifiedAccessExpr
2620
+ (identifier))
2621
+ (slStringLiteralExpr
2622
+ (slStringLiteralPart))))
2623
+ (classProperty
2624
+ (identifier)
2625
+ (subscriptExpr
2626
+ (unqualifiedAccessExpr
2627
+ (identifier))
2628
+ (slStringLiteralExpr
2629
+ (slStringLiteralPart))))
2630
+ (classProperty
2631
+ (identifier)
2632
+ (qualifiedAccessExpr
2633
+ (unqualifiedAccessExpr
2634
+ (identifier))
2635
+ (identifier)
2636
+ (argumentList
2637
+ (functionLiteralExpr
2638
+ (parameterList)
2639
+ (subscriptExpr
2640
+ (unqualifiedAccessExpr
2641
+ (identifier))
2642
+ (slStringLiteralExpr
2643
+ (slStringLiteralPart)))))))
2644
+ (classMethod
2645
+ (methodHeader
2646
+ (identifier)
2647
+ (parameterList
2648
+ (typedIdentifier
2649
+ (identifier)
2650
+ (typeAnnotation
2651
+ (declaredType
2652
+ (qualifiedIdentifier
2653
+ (identifier))
2654
+ (typeArgumentList
2655
+ (declaredType
2656
+ (qualifiedIdentifier
2657
+ (identifier)))
2658
+ (declaredType
2659
+ (qualifiedIdentifier
2660
+ (identifier)))))))))
2661
+ (unqualifiedAccessExpr
2662
+ (identifier)))
2663
+ (classProperty
2664
+ (modifier)
2665
+ (identifier)
2666
+ (unqualifiedAccessExpr
2667
+ (identifier)
2668
+ (argumentList
2669
+ (newExpr
2670
+ (declaredType
2671
+ (qualifiedIdentifier
2672
+ (identifier)))
2673
+ (objectBody
2674
+ (objectEntry
2675
+ (slStringLiteralExpr
2676
+ (slStringLiteralPart))
2677
+ (slStringLiteralExpr
2678
+ (slStringLiteralPart))))))))
2679
+ (classProperty
2680
+ (identifier)
2681
+ (qualifiedAccessExpr
2682
+ (unqualifiedAccessExpr
2683
+ (identifier))
2684
+ (identifier)))
2685
+ (classProperty
2686
+ (identifier)
2687
+ (qualifiedAccessExpr
2688
+ (unqualifiedAccessExpr
2689
+ (identifier))
2690
+ (identifier)
2691
+ (argumentList
2692
+ (functionLiteralExpr
2693
+ (parameterList)
2694
+ (subscriptExpr
2695
+ (unqualifiedAccessExpr
2696
+ (identifier))
2697
+ (slStringLiteralExpr
2698
+ (slStringLiteralPart)))))))
2699
+ (classMethod
2700
+ (methodHeader
2701
+ (identifier)
2702
+ (parameterList
2703
+ (typedIdentifier
2704
+ (identifier)))
2705
+ (typeAnnotation
2706
+ (declaredType
2707
+ (qualifiedIdentifier
2708
+ (identifier))
2709
+ (typeArgumentList
2710
+ (declaredType
2711
+ (qualifiedIdentifier
2712
+ (identifier)))
2713
+ (declaredType
2714
+ (qualifiedIdentifier
2715
+ (identifier)))))))
2716
+ (unqualifiedAccessExpr
2717
+ (identifier)))
2718
+ (classProperty
2719
+ (modifier)
2720
+ (identifier)
2721
+ (unqualifiedAccessExpr
2722
+ (identifier)
2723
+ (argumentList
2724
+ (newExpr
2725
+ (declaredType
2726
+ (qualifiedIdentifier
2727
+ (identifier)))
2728
+ (objectBody
2729
+ (objectEntry
2730
+ (slStringLiteralExpr
2731
+ (slStringLiteralPart))
2732
+ (slStringLiteralExpr
2733
+ (slStringLiteralPart))))))))
2734
+ (classProperty
2735
+ (identifier)
2736
+ (qualifiedAccessExpr
2737
+ (unqualifiedAccessExpr
2738
+ (identifier))
2739
+ (identifier)))
2740
+ (classProperty
2741
+ (identifier)
2742
+ (qualifiedAccessExpr
2743
+ (unqualifiedAccessExpr
2744
+ (identifier))
2745
+ (identifier)
2746
+ (argumentList
2747
+ (functionLiteralExpr
2748
+ (parameterList)
2749
+ (subscriptExpr
2750
+ (unqualifiedAccessExpr
2751
+ (identifier))
2752
+ (slStringLiteralExpr
2753
+ (slStringLiteralPart)))))))
2754
+ (classProperty
2755
+ (modifier)
2756
+ (identifier)
2757
+ (functionLiteralExpr
2758
+ (parameterList
2759
+ (typedIdentifier
2760
+ (identifier)
2761
+ (typeAnnotation
2762
+ (declaredType
2763
+ (qualifiedIdentifier
2764
+ (identifier))
2765
+ (typeArgumentList
2766
+ (declaredType
2767
+ (qualifiedIdentifier
2768
+ (identifier)))
2769
+ (declaredType
2770
+ (qualifiedIdentifier
2771
+ (identifier))))))))
2772
+ (unqualifiedAccessExpr
2773
+ (identifier))))
2774
+ (classProperty
2775
+ (modifier)
2776
+ (identifier)
2777
+ (qualifiedAccessExpr
2778
+ (unqualifiedAccessExpr
2779
+ (identifier))
2780
+ (identifier)
2781
+ (argumentList
2782
+ (newExpr
2783
+ (declaredType
2784
+ (qualifiedIdentifier
2785
+ (identifier)))
2786
+ (objectBody
2787
+ (objectEntry
2788
+ (slStringLiteralExpr
2789
+ (slStringLiteralPart))
2790
+ (slStringLiteralExpr
2791
+ (slStringLiteralPart))))))))
2792
+ (classProperty
2793
+ (identifier)
2794
+ (qualifiedAccessExpr
2795
+ (unqualifiedAccessExpr
2796
+ (identifier))
2797
+ (identifier)))
2798
+ (classProperty
2799
+ (identifier)
2800
+ (qualifiedAccessExpr
2801
+ (unqualifiedAccessExpr
2802
+ (identifier))
2803
+ (identifier)
2804
+ (argumentList
2805
+ (functionLiteralExpr
2806
+ (parameterList)
2807
+ (subscriptExpr
2808
+ (unqualifiedAccessExpr
2809
+ (identifier))
2810
+ (slStringLiteralExpr
2811
+ (slStringLiteralPart)))))))
2812
+ (classMethod
2813
+ (methodHeader
2814
+ (identifier)
2815
+ (parameterList
2816
+ (typedIdentifier
2817
+ (identifier)
2818
+ (typeAnnotation
2819
+ (declaredType
2820
+ (qualifiedIdentifier
2821
+ (identifier))
2822
+ (typeArgumentList
2823
+ (declaredType
2824
+ (qualifiedIdentifier
2825
+ (identifier)))
2826
+ (declaredType
2827
+ (qualifiedIdentifier
2828
+ (identifier))))))))
2829
+ (typeAnnotation
2830
+ (declaredType
2831
+ (qualifiedIdentifier
2832
+ (identifier))
2833
+ (typeArgumentList
2834
+ (declaredType
2835
+ (qualifiedIdentifier
2836
+ (identifier)))
2837
+ (declaredType
2838
+ (qualifiedIdentifier
2839
+ (identifier)))))))
2840
+ (unqualifiedAccessExpr
2841
+ (identifier)))
2842
+ (classProperty
2843
+ (modifier)
2844
+ (identifier)
2845
+ (unqualifiedAccessExpr
2846
+ (identifier)
2847
+ (argumentList
2848
+ (newExpr
2849
+ (declaredType
2850
+ (qualifiedIdentifier
2851
+ (identifier)))
2852
+ (objectBody
2853
+ (objectEntry
2854
+ (slStringLiteralExpr
2855
+ (slStringLiteralPart))
2856
+ (slStringLiteralExpr
2857
+ (slStringLiteralPart))))))))
2858
+ (classProperty
2859
+ (identifier)
2860
+ (qualifiedAccessExpr
2861
+ (unqualifiedAccessExpr
2862
+ (identifier))
2863
+ (identifier)))
2864
+ (classProperty
2865
+ (identifier)
2866
+ (qualifiedAccessExpr
2867
+ (unqualifiedAccessExpr
2868
+ (identifier))
2869
+ (identifier)
2870
+ (argumentList
2871
+ (functionLiteralExpr
2872
+ (parameterList)
2873
+ (subscriptExpr
2874
+ (unqualifiedAccessExpr
2875
+ (identifier))
2876
+ (slStringLiteralExpr
2877
+ (slStringLiteralPart))))))))