@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,2628 @@
1
+ ===
2
+ generators/elementGenerators.pkl
3
+ ===
4
+
5
+ res1 = new Listing {
6
+ for (n in IntSeq(1, 5)) {
7
+ when (n.isOdd) {
8
+ n * 2
9
+ }
10
+ }
11
+ }
12
+
13
+ res1b = new Dynamic {
14
+ for (n in IntSeq(1, 5)) {
15
+ when (n.isOdd) {
16
+ n * 2
17
+ }
18
+ }
19
+ }
20
+
21
+ res1c = new Listing {
22
+ for (i, n in IntSeq(1, 5)) {
23
+ when (n.isOdd) {
24
+ i * n
25
+ }
26
+ }
27
+ }
28
+
29
+ res1d = new Dynamic {
30
+ for (i, n in IntSeq(1, 5)) {
31
+ when (n.isOdd) {
32
+ i * n
33
+ }
34
+ }
35
+ }
36
+
37
+ res2 = new Listing {
38
+ for (n in List(1, 2, 3, 4, 5)) {
39
+ when (n.isOdd) {
40
+ n * 2
41
+ }
42
+ }
43
+ }
44
+
45
+ res2b = new Dynamic {
46
+ for (n in List(1, 2, 3, 4, 5)) {
47
+ when (n.isOdd) {
48
+ n * 2
49
+ }
50
+ }
51
+ }
52
+
53
+ res2c = new Listing {
54
+ for (i, n in List(1, 2, 3, 4, 5)) {
55
+ when (n.isOdd) {
56
+ i * n
57
+ }
58
+ }
59
+ }
60
+
61
+ res2d = new Dynamic {
62
+ for (i, n in List(1, 2, 3, 4, 5)) {
63
+ when (n.isOdd) {
64
+ i * n
65
+ }
66
+ }
67
+ }
68
+
69
+ res3 = new Listing {
70
+ for (n in Set(1, 2, 3, 4, 5)) {
71
+ when (n.isOdd) {
72
+ n * 2
73
+ }
74
+ }
75
+ }
76
+
77
+ res3b = new Dynamic {
78
+ for (n in Set(1, 2, 3, 4, 5)) {
79
+ when (n.isOdd) {
80
+ n * 2
81
+ }
82
+ }
83
+ }
84
+
85
+ res3c = new Listing {
86
+ for (i, n in Set(1, 2, 3, 4, 5)) {
87
+ when (n.isOdd) {
88
+ i * n
89
+ }
90
+ }
91
+ }
92
+
93
+ res3d = new Dynamic {
94
+ for (i, n in Set(1, 2, 3, 4, 5)) {
95
+ when (n.isOdd) {
96
+ i * n
97
+ }
98
+ }
99
+ }
100
+
101
+ res4 = new Listing {
102
+ for (value in Map("one", 1, "two", 2)) {
103
+ when (value.isOdd) {
104
+ value
105
+ }
106
+ }
107
+ }
108
+
109
+ res4b = new Dynamic {
110
+ for (value in Map("one", 1, "two", 2)) {
111
+ when (value.isOdd) {
112
+ value
113
+ }
114
+ }
115
+ }
116
+
117
+ res4c = new Listing {
118
+ for (key, value in Map("one", 1, "two", 2)) {
119
+ when (value.isOdd) {
120
+ Pair(key, value)
121
+ }
122
+ }
123
+ }
124
+
125
+ res4d = new Dynamic {
126
+ for (key, value in Map("one", 1, "two", 2)) {
127
+ when (value.isOdd) {
128
+ Pair(key, value)
129
+ }
130
+ }
131
+ }
132
+
133
+ res5 = new Listing {
134
+ for (n in new Listing { 1; 2; 3; 4; 5 }) {
135
+ when (n.isOdd) {
136
+ n * 2
137
+ }
138
+ }
139
+ }
140
+
141
+ res5b = new Dynamic {
142
+ for (n in new Listing { 1; 2; 3; 4; 5 }) {
143
+ when (n.isOdd) {
144
+ n * 2
145
+ }
146
+ }
147
+ }
148
+
149
+ res5c = new Listing {
150
+ for (i, n in new Listing { 1; 2; 3; 4; 5 }) {
151
+ when (n.isOdd) {
152
+ i * n
153
+ }
154
+ }
155
+ }
156
+
157
+ res5d = new Dynamic {
158
+ for (i, n in new Listing { 1; 2; 3; 4; 5 }) {
159
+ when (n.isOdd) {
160
+ i * n
161
+ }
162
+ }
163
+ }
164
+
165
+ res6 = new Listing {
166
+ for (value in new Mapping { ["one"] = 1; ["two"] = 2; }) {
167
+ when (value.isOdd) {
168
+ value
169
+ }
170
+ }
171
+ }
172
+
173
+ res6b = new Dynamic {
174
+ for (value in new Mapping { ["one"] = 1; ["two"] = 2; }) {
175
+ when (value.isOdd) {
176
+ value
177
+ }
178
+ }
179
+ }
180
+
181
+ res6c = new Listing {
182
+ for (key, value in new Mapping { ["one"] = 1; ["two"] = 2; }) {
183
+ when (value.isOdd) {
184
+ Pair(key, value)
185
+ }
186
+ }
187
+ }
188
+
189
+ res6d = new Dynamic {
190
+ for (key, value in new Mapping { ["one"] = 1; ["two"] = 2; }) {
191
+ when (value.isOdd) {
192
+ Pair(key, value)
193
+ }
194
+ }
195
+ }
196
+
197
+ res7 = new Listing {
198
+ for (value in new Dynamic { ["one"] = 1; ["two"] = 2; }) {
199
+ when (value.isOdd) {
200
+ value
201
+ }
202
+ }
203
+ }
204
+
205
+ res7b = new Dynamic {
206
+ for (value in new Dynamic { ["one"] = 1; ["two"] = 2; }) {
207
+ when (value.isOdd) {
208
+ value
209
+ }
210
+ }
211
+ }
212
+
213
+ res7c = new Listing {
214
+ for (key, value in new Dynamic { ["one"] = 1; ["two"] = 2; }) {
215
+ when (value.isOdd) {
216
+ Pair(key, value)
217
+ }
218
+ }
219
+ }
220
+
221
+ res7d = new Dynamic {
222
+ for (key, value in new Dynamic { ["one"] = 1; ["two"] = 2; }) {
223
+ when (value.isOdd) {
224
+ Pair(key, value)
225
+ }
226
+ }
227
+ }
228
+
229
+ res8 = new Listing {
230
+ "one"
231
+ when (1 + 1 == 2) { "two" }
232
+ when (1 + 1 == 3) { "three" }
233
+ }
234
+
235
+ res8b = new Dynamic {
236
+ "one"
237
+ when (1 + 1 == 2) { "two" }
238
+ when (1 + 1 == 3) { "three" }
239
+ }
240
+
241
+ res9 = new Listing {
242
+ for (x in List("a", "b", "c")) {
243
+ for (y in List("e", "f")) {
244
+ x + y
245
+ }
246
+ }
247
+ }
248
+
249
+ re9b = new Dynamic {
250
+ for (x in List("a", "b", "c")) {
251
+ for (y in List("e", "f")) {
252
+ x + y
253
+ }
254
+ }
255
+ }
256
+
257
+ res9c = new Listing {
258
+ for (i1, x in List("a", "b", "c")) {
259
+ for (i2, y in List("e", "f")) {
260
+ Pair(i1 + i2, x + y)
261
+ }
262
+ }
263
+ }
264
+
265
+ re9d = new Dynamic {
266
+ for (i1, x in List("a", "b", "c")) {
267
+ for (i2, y in List("e", "f")) {
268
+ Pair(i1 + i2, x + y)
269
+ }
270
+ }
271
+ }
272
+
273
+ res10 = new Listing {
274
+ "one"
275
+ for (n in IntSeq(1, 5)) {
276
+ when (n.isOdd) {
277
+ n * 2
278
+ }
279
+ }
280
+ "two"
281
+ for (x in List("a", "b", "c")) {
282
+ for (y in List("e", "f")) {
283
+ x + y
284
+ }
285
+ }
286
+ "three"
287
+ }
288
+
289
+ res10b = new Dynamic {
290
+ "one"
291
+ for (n in IntSeq(1, 5)) {
292
+ when (n.isOdd) {
293
+ n * 2
294
+ }
295
+ }
296
+ "two"
297
+ for (x in List("a", "b", "c")) {
298
+ for (y in List("e", "f")) {
299
+ x + y
300
+ }
301
+ }
302
+ "three"
303
+ }
304
+
305
+ res11 = new Listing {
306
+ for (n in IntSeq(1, 3)) { n }
307
+ for (n in List("a", "b", "c")) { n }
308
+ for (n in IntSeq(1, 3)) { n }
309
+ }
310
+
311
+ res11b = new Dynamic {
312
+ for (n in IntSeq(1, 3)) { n }
313
+ for (n in List("a", "b", "c")) { n }
314
+ for (n in IntSeq(1, 3)) { n }
315
+ }
316
+
317
+ res11c = new Listing {
318
+ for (i, n in IntSeq(1, 3)) { Pair(i, n) }
319
+ for (i, n in List("a", "b", "c")) { Pair(i, n) }
320
+ for (i, n in IntSeq(1, 3)) { Pair(i, n) }
321
+ }
322
+
323
+ res11d = new Dynamic {
324
+ for (i, n in IntSeq(1, 3)) { Pair(i, n) }
325
+ for (i, n in List("a", "b", "c")) { Pair(i, n) }
326
+ for (i, n in IntSeq(1, 3)) { Pair(i, n) }
327
+ }
328
+
329
+ local dynamicWithOnlyProperties = new Dynamic {
330
+ foo = "Foo!"
331
+ bar = 42
332
+ baz = Pair(1337, "zab")
333
+ }
334
+ valueForOverProperties = new Dynamic {
335
+ for (v in dynamicWithOnlyProperties) {
336
+ [v] = v
337
+ }
338
+ }
339
+ keyValueForOverProperties = new Dynamic {
340
+ for (k, v in dynamicWithOnlyProperties) {
341
+ [k] = v
342
+ }
343
+ }
344
+
345
+ local dynamicWithAllMemberTypes = new Dynamic {
346
+ propFoo = "foo"
347
+ "elementBar"
348
+ propBaz = 1337
349
+ ["entryKeyQux"] = 42
350
+ "elementQuux"
351
+ ["entryKeyCorge"] = "corge"
352
+ }
353
+
354
+ valueForOverAllMembers = new Dynamic {
355
+ for (v in dynamicWithAllMemberTypes) {
356
+ v
357
+ }
358
+ }
359
+
360
+ keyValueForOverAllMembers = new Dynamic {
361
+ for (k, v in dynamicWithAllMemberTypes) {
362
+ "\(k) -> \(v)"
363
+ }
364
+ }
365
+
366
+ class Person {
367
+ name: String
368
+ age: Int
369
+ }
370
+
371
+ local pigeon: Person = new { name = "Pigeon" age = 42 }
372
+
373
+ valueForOverTyped = new Dynamic {
374
+ for (v in pigeon.toDynamic()) {
375
+ v
376
+ }
377
+ }
378
+
379
+ keyValueForOverTyped = new Dynamic {
380
+ for (k, v in pigeon.toDynamic()) {
381
+ "\(k) -> \(v)"
382
+ }
383
+ }
384
+
385
+ local overlappingPropertyNamesAndEntryKeys: Dynamic = new {
386
+ foo = "property"
387
+ ["foo"] = "entry"
388
+
389
+ ["bar"] = "can only discern by iteration order (properties before entries)"
390
+ bar = "can only discern by iteration order (properties before entries)"
391
+ }
392
+
393
+ valueForOverConflictingPropertiesAndEntries = new Dynamic {
394
+ for (v in overlappingPropertyNamesAndEntryKeys) {
395
+ v
396
+ }
397
+ }
398
+
399
+ keyValueForOverConflictingPropertiesAndEntries = new Dynamic {
400
+ for (k, v in overlappingPropertyNamesAndEntryKeys) {
401
+ "\(k) -> \(v)"
402
+ }
403
+ }
404
+
405
+ forWithMultipleMembers = new Dynamic {
406
+ for (ch in List("a", "b", "c")) {
407
+ ch
408
+ ch + "x"
409
+ ch + "y"
410
+ }
411
+ }
412
+
413
+ forWithMultipleMembersNested = new Listing {
414
+ for (ch in List("a", "b")) {
415
+ for (k, v in Map("x", 1, "y", 2)) {
416
+ ch + k + v.toString()
417
+ v.toString() + k + ch
418
+ }
419
+ for (k, v in Map("xx", 11, "yy", 22)) {
420
+ ch + k + v.toString()
421
+ v.toString() + k + ch
422
+ }
423
+ }
424
+ }
425
+
426
+ forGeneratorsWithOverlappingNamesAndWhenNestedWhen = new Listing {
427
+ when (false) {
428
+ for (c in List(1)) {
429
+ c
430
+ }
431
+ } else {
432
+ for (c in List(6)) {
433
+ when (c != 1) {
434
+ c
435
+ }
436
+ }
437
+ }
438
+ }
439
+
440
+ whenWithMultipleMembers = new Dynamic {
441
+ for (i, n in new Listing { 1; 2; 3; 4; 5 }) {
442
+ when (n.isOdd) {
443
+ i * n
444
+ i * n * 2
445
+ }
446
+ }
447
+ }
448
+
449
+ whenWithMultipleMembersNested = new Listing {
450
+ for (i, n in new Listing { 1; 2; 3; 4; 5 }) {
451
+ when (n.isOdd) {
452
+ when (n > 3) {
453
+ i * n
454
+ i * n * 2
455
+ }
456
+ }
457
+ }
458
+ }
459
+
460
+ whenWithElse = new Dynamic {
461
+ for (i, n in new Listing { 1; 2; 3; 4; 5 }) {
462
+ when (n.isOdd) {
463
+ i * n
464
+ i * n * 2
465
+ } else {
466
+ (i * n).toString()
467
+ (i * n * 2).toString()
468
+ }
469
+ }
470
+ }
471
+
472
+ ---
473
+
474
+ (module
475
+ (classProperty
476
+ (identifier)
477
+ (newExpr
478
+ (declaredType
479
+ (qualifiedIdentifier
480
+ (identifier)))
481
+ (objectBody
482
+ (forGenerator
483
+ (typedIdentifier
484
+ (identifier))
485
+ (unqualifiedAccessExpr
486
+ (identifier)
487
+ (argumentList
488
+ (intLiteralExpr)
489
+ (intLiteralExpr)))
490
+ (objectBody
491
+ (whenGenerator
492
+ (qualifiedAccessExpr
493
+ (unqualifiedAccessExpr
494
+ (identifier))
495
+ (identifier))
496
+ (objectBody
497
+ (objectElement
498
+ (multiplicativeExpr
499
+ (unqualifiedAccessExpr
500
+ (identifier))
501
+ (intLiteralExpr))))))))))
502
+ (classProperty
503
+ (identifier)
504
+ (newExpr
505
+ (declaredType
506
+ (qualifiedIdentifier
507
+ (identifier)))
508
+ (objectBody
509
+ (forGenerator
510
+ (typedIdentifier
511
+ (identifier))
512
+ (unqualifiedAccessExpr
513
+ (identifier)
514
+ (argumentList
515
+ (intLiteralExpr)
516
+ (intLiteralExpr)))
517
+ (objectBody
518
+ (whenGenerator
519
+ (qualifiedAccessExpr
520
+ (unqualifiedAccessExpr
521
+ (identifier))
522
+ (identifier))
523
+ (objectBody
524
+ (objectElement
525
+ (multiplicativeExpr
526
+ (unqualifiedAccessExpr
527
+ (identifier))
528
+ (intLiteralExpr))))))))))
529
+ (classProperty
530
+ (identifier)
531
+ (newExpr
532
+ (declaredType
533
+ (qualifiedIdentifier
534
+ (identifier)))
535
+ (objectBody
536
+ (forGenerator
537
+ (typedIdentifier
538
+ (identifier))
539
+ (typedIdentifier
540
+ (identifier))
541
+ (unqualifiedAccessExpr
542
+ (identifier)
543
+ (argumentList
544
+ (intLiteralExpr)
545
+ (intLiteralExpr)))
546
+ (objectBody
547
+ (whenGenerator
548
+ (qualifiedAccessExpr
549
+ (unqualifiedAccessExpr
550
+ (identifier))
551
+ (identifier))
552
+ (objectBody
553
+ (objectElement
554
+ (multiplicativeExpr
555
+ (unqualifiedAccessExpr
556
+ (identifier))
557
+ (unqualifiedAccessExpr
558
+ (identifier)))))))))))
559
+ (classProperty
560
+ (identifier)
561
+ (newExpr
562
+ (declaredType
563
+ (qualifiedIdentifier
564
+ (identifier)))
565
+ (objectBody
566
+ (forGenerator
567
+ (typedIdentifier
568
+ (identifier))
569
+ (typedIdentifier
570
+ (identifier))
571
+ (unqualifiedAccessExpr
572
+ (identifier)
573
+ (argumentList
574
+ (intLiteralExpr)
575
+ (intLiteralExpr)))
576
+ (objectBody
577
+ (whenGenerator
578
+ (qualifiedAccessExpr
579
+ (unqualifiedAccessExpr
580
+ (identifier))
581
+ (identifier))
582
+ (objectBody
583
+ (objectElement
584
+ (multiplicativeExpr
585
+ (unqualifiedAccessExpr
586
+ (identifier))
587
+ (unqualifiedAccessExpr
588
+ (identifier)))))))))))
589
+ (classProperty
590
+ (identifier)
591
+ (newExpr
592
+ (declaredType
593
+ (qualifiedIdentifier
594
+ (identifier)))
595
+ (objectBody
596
+ (forGenerator
597
+ (typedIdentifier
598
+ (identifier))
599
+ (unqualifiedAccessExpr
600
+ (identifier)
601
+ (argumentList
602
+ (intLiteralExpr)
603
+ (intLiteralExpr)
604
+ (intLiteralExpr)
605
+ (intLiteralExpr)
606
+ (intLiteralExpr)))
607
+ (objectBody
608
+ (whenGenerator
609
+ (qualifiedAccessExpr
610
+ (unqualifiedAccessExpr
611
+ (identifier))
612
+ (identifier))
613
+ (objectBody
614
+ (objectElement
615
+ (multiplicativeExpr
616
+ (unqualifiedAccessExpr
617
+ (identifier))
618
+ (intLiteralExpr))))))))))
619
+ (classProperty
620
+ (identifier)
621
+ (newExpr
622
+ (declaredType
623
+ (qualifiedIdentifier
624
+ (identifier)))
625
+ (objectBody
626
+ (forGenerator
627
+ (typedIdentifier
628
+ (identifier))
629
+ (unqualifiedAccessExpr
630
+ (identifier)
631
+ (argumentList
632
+ (intLiteralExpr)
633
+ (intLiteralExpr)
634
+ (intLiteralExpr)
635
+ (intLiteralExpr)
636
+ (intLiteralExpr)))
637
+ (objectBody
638
+ (whenGenerator
639
+ (qualifiedAccessExpr
640
+ (unqualifiedAccessExpr
641
+ (identifier))
642
+ (identifier))
643
+ (objectBody
644
+ (objectElement
645
+ (multiplicativeExpr
646
+ (unqualifiedAccessExpr
647
+ (identifier))
648
+ (intLiteralExpr))))))))))
649
+ (classProperty
650
+ (identifier)
651
+ (newExpr
652
+ (declaredType
653
+ (qualifiedIdentifier
654
+ (identifier)))
655
+ (objectBody
656
+ (forGenerator
657
+ (typedIdentifier
658
+ (identifier))
659
+ (typedIdentifier
660
+ (identifier))
661
+ (unqualifiedAccessExpr
662
+ (identifier)
663
+ (argumentList
664
+ (intLiteralExpr)
665
+ (intLiteralExpr)
666
+ (intLiteralExpr)
667
+ (intLiteralExpr)
668
+ (intLiteralExpr)))
669
+ (objectBody
670
+ (whenGenerator
671
+ (qualifiedAccessExpr
672
+ (unqualifiedAccessExpr
673
+ (identifier))
674
+ (identifier))
675
+ (objectBody
676
+ (objectElement
677
+ (multiplicativeExpr
678
+ (unqualifiedAccessExpr
679
+ (identifier))
680
+ (unqualifiedAccessExpr
681
+ (identifier)))))))))))
682
+ (classProperty
683
+ (identifier)
684
+ (newExpr
685
+ (declaredType
686
+ (qualifiedIdentifier
687
+ (identifier)))
688
+ (objectBody
689
+ (forGenerator
690
+ (typedIdentifier
691
+ (identifier))
692
+ (typedIdentifier
693
+ (identifier))
694
+ (unqualifiedAccessExpr
695
+ (identifier)
696
+ (argumentList
697
+ (intLiteralExpr)
698
+ (intLiteralExpr)
699
+ (intLiteralExpr)
700
+ (intLiteralExpr)
701
+ (intLiteralExpr)))
702
+ (objectBody
703
+ (whenGenerator
704
+ (qualifiedAccessExpr
705
+ (unqualifiedAccessExpr
706
+ (identifier))
707
+ (identifier))
708
+ (objectBody
709
+ (objectElement
710
+ (multiplicativeExpr
711
+ (unqualifiedAccessExpr
712
+ (identifier))
713
+ (unqualifiedAccessExpr
714
+ (identifier)))))))))))
715
+ (classProperty
716
+ (identifier)
717
+ (newExpr
718
+ (declaredType
719
+ (qualifiedIdentifier
720
+ (identifier)))
721
+ (objectBody
722
+ (forGenerator
723
+ (typedIdentifier
724
+ (identifier))
725
+ (unqualifiedAccessExpr
726
+ (identifier)
727
+ (argumentList
728
+ (intLiteralExpr)
729
+ (intLiteralExpr)
730
+ (intLiteralExpr)
731
+ (intLiteralExpr)
732
+ (intLiteralExpr)))
733
+ (objectBody
734
+ (whenGenerator
735
+ (qualifiedAccessExpr
736
+ (unqualifiedAccessExpr
737
+ (identifier))
738
+ (identifier))
739
+ (objectBody
740
+ (objectElement
741
+ (multiplicativeExpr
742
+ (unqualifiedAccessExpr
743
+ (identifier))
744
+ (intLiteralExpr))))))))))
745
+ (classProperty
746
+ (identifier)
747
+ (newExpr
748
+ (declaredType
749
+ (qualifiedIdentifier
750
+ (identifier)))
751
+ (objectBody
752
+ (forGenerator
753
+ (typedIdentifier
754
+ (identifier))
755
+ (unqualifiedAccessExpr
756
+ (identifier)
757
+ (argumentList
758
+ (intLiteralExpr)
759
+ (intLiteralExpr)
760
+ (intLiteralExpr)
761
+ (intLiteralExpr)
762
+ (intLiteralExpr)))
763
+ (objectBody
764
+ (whenGenerator
765
+ (qualifiedAccessExpr
766
+ (unqualifiedAccessExpr
767
+ (identifier))
768
+ (identifier))
769
+ (objectBody
770
+ (objectElement
771
+ (multiplicativeExpr
772
+ (unqualifiedAccessExpr
773
+ (identifier))
774
+ (intLiteralExpr))))))))))
775
+ (classProperty
776
+ (identifier)
777
+ (newExpr
778
+ (declaredType
779
+ (qualifiedIdentifier
780
+ (identifier)))
781
+ (objectBody
782
+ (forGenerator
783
+ (typedIdentifier
784
+ (identifier))
785
+ (typedIdentifier
786
+ (identifier))
787
+ (unqualifiedAccessExpr
788
+ (identifier)
789
+ (argumentList
790
+ (intLiteralExpr)
791
+ (intLiteralExpr)
792
+ (intLiteralExpr)
793
+ (intLiteralExpr)
794
+ (intLiteralExpr)))
795
+ (objectBody
796
+ (whenGenerator
797
+ (qualifiedAccessExpr
798
+ (unqualifiedAccessExpr
799
+ (identifier))
800
+ (identifier))
801
+ (objectBody
802
+ (objectElement
803
+ (multiplicativeExpr
804
+ (unqualifiedAccessExpr
805
+ (identifier))
806
+ (unqualifiedAccessExpr
807
+ (identifier)))))))))))
808
+ (classProperty
809
+ (identifier)
810
+ (newExpr
811
+ (declaredType
812
+ (qualifiedIdentifier
813
+ (identifier)))
814
+ (objectBody
815
+ (forGenerator
816
+ (typedIdentifier
817
+ (identifier))
818
+ (typedIdentifier
819
+ (identifier))
820
+ (unqualifiedAccessExpr
821
+ (identifier)
822
+ (argumentList
823
+ (intLiteralExpr)
824
+ (intLiteralExpr)
825
+ (intLiteralExpr)
826
+ (intLiteralExpr)
827
+ (intLiteralExpr)))
828
+ (objectBody
829
+ (whenGenerator
830
+ (qualifiedAccessExpr
831
+ (unqualifiedAccessExpr
832
+ (identifier))
833
+ (identifier))
834
+ (objectBody
835
+ (objectElement
836
+ (multiplicativeExpr
837
+ (unqualifiedAccessExpr
838
+ (identifier))
839
+ (unqualifiedAccessExpr
840
+ (identifier)))))))))))
841
+ (classProperty
842
+ (identifier)
843
+ (newExpr
844
+ (declaredType
845
+ (qualifiedIdentifier
846
+ (identifier)))
847
+ (objectBody
848
+ (forGenerator
849
+ (typedIdentifier
850
+ (identifier))
851
+ (unqualifiedAccessExpr
852
+ (identifier)
853
+ (argumentList
854
+ (slStringLiteralExpr
855
+ (slStringLiteralPart))
856
+ (intLiteralExpr)
857
+ (slStringLiteralExpr
858
+ (slStringLiteralPart))
859
+ (intLiteralExpr)))
860
+ (objectBody
861
+ (whenGenerator
862
+ (qualifiedAccessExpr
863
+ (unqualifiedAccessExpr
864
+ (identifier))
865
+ (identifier))
866
+ (objectBody
867
+ (objectElement
868
+ (unqualifiedAccessExpr
869
+ (identifier))))))))))
870
+ (classProperty
871
+ (identifier)
872
+ (newExpr
873
+ (declaredType
874
+ (qualifiedIdentifier
875
+ (identifier)))
876
+ (objectBody
877
+ (forGenerator
878
+ (typedIdentifier
879
+ (identifier))
880
+ (unqualifiedAccessExpr
881
+ (identifier)
882
+ (argumentList
883
+ (slStringLiteralExpr
884
+ (slStringLiteralPart))
885
+ (intLiteralExpr)
886
+ (slStringLiteralExpr
887
+ (slStringLiteralPart))
888
+ (intLiteralExpr)))
889
+ (objectBody
890
+ (whenGenerator
891
+ (qualifiedAccessExpr
892
+ (unqualifiedAccessExpr
893
+ (identifier))
894
+ (identifier))
895
+ (objectBody
896
+ (objectElement
897
+ (unqualifiedAccessExpr
898
+ (identifier))))))))))
899
+ (classProperty
900
+ (identifier)
901
+ (newExpr
902
+ (declaredType
903
+ (qualifiedIdentifier
904
+ (identifier)))
905
+ (objectBody
906
+ (forGenerator
907
+ (typedIdentifier
908
+ (identifier))
909
+ (typedIdentifier
910
+ (identifier))
911
+ (unqualifiedAccessExpr
912
+ (identifier)
913
+ (argumentList
914
+ (slStringLiteralExpr
915
+ (slStringLiteralPart))
916
+ (intLiteralExpr)
917
+ (slStringLiteralExpr
918
+ (slStringLiteralPart))
919
+ (intLiteralExpr)))
920
+ (objectBody
921
+ (whenGenerator
922
+ (qualifiedAccessExpr
923
+ (unqualifiedAccessExpr
924
+ (identifier))
925
+ (identifier))
926
+ (objectBody
927
+ (objectElement
928
+ (unqualifiedAccessExpr
929
+ (identifier)
930
+ (argumentList
931
+ (unqualifiedAccessExpr
932
+ (identifier))
933
+ (unqualifiedAccessExpr
934
+ (identifier))))))))))))
935
+ (classProperty
936
+ (identifier)
937
+ (newExpr
938
+ (declaredType
939
+ (qualifiedIdentifier
940
+ (identifier)))
941
+ (objectBody
942
+ (forGenerator
943
+ (typedIdentifier
944
+ (identifier))
945
+ (typedIdentifier
946
+ (identifier))
947
+ (unqualifiedAccessExpr
948
+ (identifier)
949
+ (argumentList
950
+ (slStringLiteralExpr
951
+ (slStringLiteralPart))
952
+ (intLiteralExpr)
953
+ (slStringLiteralExpr
954
+ (slStringLiteralPart))
955
+ (intLiteralExpr)))
956
+ (objectBody
957
+ (whenGenerator
958
+ (qualifiedAccessExpr
959
+ (unqualifiedAccessExpr
960
+ (identifier))
961
+ (identifier))
962
+ (objectBody
963
+ (objectElement
964
+ (unqualifiedAccessExpr
965
+ (identifier)
966
+ (argumentList
967
+ (unqualifiedAccessExpr
968
+ (identifier))
969
+ (unqualifiedAccessExpr
970
+ (identifier))))))))))))
971
+ (classProperty
972
+ (identifier)
973
+ (newExpr
974
+ (declaredType
975
+ (qualifiedIdentifier
976
+ (identifier)))
977
+ (objectBody
978
+ (forGenerator
979
+ (typedIdentifier
980
+ (identifier))
981
+ (newExpr
982
+ (declaredType
983
+ (qualifiedIdentifier
984
+ (identifier)))
985
+ (objectBody
986
+ (objectElement
987
+ (intLiteralExpr))
988
+ (objectElement
989
+ (intLiteralExpr))
990
+ (objectElement
991
+ (intLiteralExpr))
992
+ (objectElement
993
+ (intLiteralExpr))
994
+ (objectElement
995
+ (intLiteralExpr))))
996
+ (objectBody
997
+ (whenGenerator
998
+ (qualifiedAccessExpr
999
+ (unqualifiedAccessExpr
1000
+ (identifier))
1001
+ (identifier))
1002
+ (objectBody
1003
+ (objectElement
1004
+ (multiplicativeExpr
1005
+ (unqualifiedAccessExpr
1006
+ (identifier))
1007
+ (intLiteralExpr))))))))))
1008
+ (classProperty
1009
+ (identifier)
1010
+ (newExpr
1011
+ (declaredType
1012
+ (qualifiedIdentifier
1013
+ (identifier)))
1014
+ (objectBody
1015
+ (forGenerator
1016
+ (typedIdentifier
1017
+ (identifier))
1018
+ (newExpr
1019
+ (declaredType
1020
+ (qualifiedIdentifier
1021
+ (identifier)))
1022
+ (objectBody
1023
+ (objectElement
1024
+ (intLiteralExpr))
1025
+ (objectElement
1026
+ (intLiteralExpr))
1027
+ (objectElement
1028
+ (intLiteralExpr))
1029
+ (objectElement
1030
+ (intLiteralExpr))
1031
+ (objectElement
1032
+ (intLiteralExpr))))
1033
+ (objectBody
1034
+ (whenGenerator
1035
+ (qualifiedAccessExpr
1036
+ (unqualifiedAccessExpr
1037
+ (identifier))
1038
+ (identifier))
1039
+ (objectBody
1040
+ (objectElement
1041
+ (multiplicativeExpr
1042
+ (unqualifiedAccessExpr
1043
+ (identifier))
1044
+ (intLiteralExpr))))))))))
1045
+ (classProperty
1046
+ (identifier)
1047
+ (newExpr
1048
+ (declaredType
1049
+ (qualifiedIdentifier
1050
+ (identifier)))
1051
+ (objectBody
1052
+ (forGenerator
1053
+ (typedIdentifier
1054
+ (identifier))
1055
+ (typedIdentifier
1056
+ (identifier))
1057
+ (newExpr
1058
+ (declaredType
1059
+ (qualifiedIdentifier
1060
+ (identifier)))
1061
+ (objectBody
1062
+ (objectElement
1063
+ (intLiteralExpr))
1064
+ (objectElement
1065
+ (intLiteralExpr))
1066
+ (objectElement
1067
+ (intLiteralExpr))
1068
+ (objectElement
1069
+ (intLiteralExpr))
1070
+ (objectElement
1071
+ (intLiteralExpr))))
1072
+ (objectBody
1073
+ (whenGenerator
1074
+ (qualifiedAccessExpr
1075
+ (unqualifiedAccessExpr
1076
+ (identifier))
1077
+ (identifier))
1078
+ (objectBody
1079
+ (objectElement
1080
+ (multiplicativeExpr
1081
+ (unqualifiedAccessExpr
1082
+ (identifier))
1083
+ (unqualifiedAccessExpr
1084
+ (identifier)))))))))))
1085
+ (classProperty
1086
+ (identifier)
1087
+ (newExpr
1088
+ (declaredType
1089
+ (qualifiedIdentifier
1090
+ (identifier)))
1091
+ (objectBody
1092
+ (forGenerator
1093
+ (typedIdentifier
1094
+ (identifier))
1095
+ (typedIdentifier
1096
+ (identifier))
1097
+ (newExpr
1098
+ (declaredType
1099
+ (qualifiedIdentifier
1100
+ (identifier)))
1101
+ (objectBody
1102
+ (objectElement
1103
+ (intLiteralExpr))
1104
+ (objectElement
1105
+ (intLiteralExpr))
1106
+ (objectElement
1107
+ (intLiteralExpr))
1108
+ (objectElement
1109
+ (intLiteralExpr))
1110
+ (objectElement
1111
+ (intLiteralExpr))))
1112
+ (objectBody
1113
+ (whenGenerator
1114
+ (qualifiedAccessExpr
1115
+ (unqualifiedAccessExpr
1116
+ (identifier))
1117
+ (identifier))
1118
+ (objectBody
1119
+ (objectElement
1120
+ (multiplicativeExpr
1121
+ (unqualifiedAccessExpr
1122
+ (identifier))
1123
+ (unqualifiedAccessExpr
1124
+ (identifier)))))))))))
1125
+ (classProperty
1126
+ (identifier)
1127
+ (newExpr
1128
+ (declaredType
1129
+ (qualifiedIdentifier
1130
+ (identifier)))
1131
+ (objectBody
1132
+ (forGenerator
1133
+ (typedIdentifier
1134
+ (identifier))
1135
+ (newExpr
1136
+ (declaredType
1137
+ (qualifiedIdentifier
1138
+ (identifier)))
1139
+ (objectBody
1140
+ (objectEntry
1141
+ (slStringLiteralExpr
1142
+ (slStringLiteralPart))
1143
+ (intLiteralExpr))
1144
+ (objectEntry
1145
+ (slStringLiteralExpr
1146
+ (slStringLiteralPart))
1147
+ (intLiteralExpr))))
1148
+ (objectBody
1149
+ (whenGenerator
1150
+ (qualifiedAccessExpr
1151
+ (unqualifiedAccessExpr
1152
+ (identifier))
1153
+ (identifier))
1154
+ (objectBody
1155
+ (objectElement
1156
+ (unqualifiedAccessExpr
1157
+ (identifier))))))))))
1158
+ (classProperty
1159
+ (identifier)
1160
+ (newExpr
1161
+ (declaredType
1162
+ (qualifiedIdentifier
1163
+ (identifier)))
1164
+ (objectBody
1165
+ (forGenerator
1166
+ (typedIdentifier
1167
+ (identifier))
1168
+ (newExpr
1169
+ (declaredType
1170
+ (qualifiedIdentifier
1171
+ (identifier)))
1172
+ (objectBody
1173
+ (objectEntry
1174
+ (slStringLiteralExpr
1175
+ (slStringLiteralPart))
1176
+ (intLiteralExpr))
1177
+ (objectEntry
1178
+ (slStringLiteralExpr
1179
+ (slStringLiteralPart))
1180
+ (intLiteralExpr))))
1181
+ (objectBody
1182
+ (whenGenerator
1183
+ (qualifiedAccessExpr
1184
+ (unqualifiedAccessExpr
1185
+ (identifier))
1186
+ (identifier))
1187
+ (objectBody
1188
+ (objectElement
1189
+ (unqualifiedAccessExpr
1190
+ (identifier))))))))))
1191
+ (classProperty
1192
+ (identifier)
1193
+ (newExpr
1194
+ (declaredType
1195
+ (qualifiedIdentifier
1196
+ (identifier)))
1197
+ (objectBody
1198
+ (forGenerator
1199
+ (typedIdentifier
1200
+ (identifier))
1201
+ (typedIdentifier
1202
+ (identifier))
1203
+ (newExpr
1204
+ (declaredType
1205
+ (qualifiedIdentifier
1206
+ (identifier)))
1207
+ (objectBody
1208
+ (objectEntry
1209
+ (slStringLiteralExpr
1210
+ (slStringLiteralPart))
1211
+ (intLiteralExpr))
1212
+ (objectEntry
1213
+ (slStringLiteralExpr
1214
+ (slStringLiteralPart))
1215
+ (intLiteralExpr))))
1216
+ (objectBody
1217
+ (whenGenerator
1218
+ (qualifiedAccessExpr
1219
+ (unqualifiedAccessExpr
1220
+ (identifier))
1221
+ (identifier))
1222
+ (objectBody
1223
+ (objectElement
1224
+ (unqualifiedAccessExpr
1225
+ (identifier)
1226
+ (argumentList
1227
+ (unqualifiedAccessExpr
1228
+ (identifier))
1229
+ (unqualifiedAccessExpr
1230
+ (identifier))))))))))))
1231
+ (classProperty
1232
+ (identifier)
1233
+ (newExpr
1234
+ (declaredType
1235
+ (qualifiedIdentifier
1236
+ (identifier)))
1237
+ (objectBody
1238
+ (forGenerator
1239
+ (typedIdentifier
1240
+ (identifier))
1241
+ (typedIdentifier
1242
+ (identifier))
1243
+ (newExpr
1244
+ (declaredType
1245
+ (qualifiedIdentifier
1246
+ (identifier)))
1247
+ (objectBody
1248
+ (objectEntry
1249
+ (slStringLiteralExpr
1250
+ (slStringLiteralPart))
1251
+ (intLiteralExpr))
1252
+ (objectEntry
1253
+ (slStringLiteralExpr
1254
+ (slStringLiteralPart))
1255
+ (intLiteralExpr))))
1256
+ (objectBody
1257
+ (whenGenerator
1258
+ (qualifiedAccessExpr
1259
+ (unqualifiedAccessExpr
1260
+ (identifier))
1261
+ (identifier))
1262
+ (objectBody
1263
+ (objectElement
1264
+ (unqualifiedAccessExpr
1265
+ (identifier)
1266
+ (argumentList
1267
+ (unqualifiedAccessExpr
1268
+ (identifier))
1269
+ (unqualifiedAccessExpr
1270
+ (identifier))))))))))))
1271
+ (classProperty
1272
+ (identifier)
1273
+ (newExpr
1274
+ (declaredType
1275
+ (qualifiedIdentifier
1276
+ (identifier)))
1277
+ (objectBody
1278
+ (forGenerator
1279
+ (typedIdentifier
1280
+ (identifier))
1281
+ (newExpr
1282
+ (declaredType
1283
+ (qualifiedIdentifier
1284
+ (identifier)))
1285
+ (objectBody
1286
+ (objectEntry
1287
+ (slStringLiteralExpr
1288
+ (slStringLiteralPart))
1289
+ (intLiteralExpr))
1290
+ (objectEntry
1291
+ (slStringLiteralExpr
1292
+ (slStringLiteralPart))
1293
+ (intLiteralExpr))))
1294
+ (objectBody
1295
+ (whenGenerator
1296
+ (qualifiedAccessExpr
1297
+ (unqualifiedAccessExpr
1298
+ (identifier))
1299
+ (identifier))
1300
+ (objectBody
1301
+ (objectElement
1302
+ (unqualifiedAccessExpr
1303
+ (identifier))))))))))
1304
+ (classProperty
1305
+ (identifier)
1306
+ (newExpr
1307
+ (declaredType
1308
+ (qualifiedIdentifier
1309
+ (identifier)))
1310
+ (objectBody
1311
+ (forGenerator
1312
+ (typedIdentifier
1313
+ (identifier))
1314
+ (newExpr
1315
+ (declaredType
1316
+ (qualifiedIdentifier
1317
+ (identifier)))
1318
+ (objectBody
1319
+ (objectEntry
1320
+ (slStringLiteralExpr
1321
+ (slStringLiteralPart))
1322
+ (intLiteralExpr))
1323
+ (objectEntry
1324
+ (slStringLiteralExpr
1325
+ (slStringLiteralPart))
1326
+ (intLiteralExpr))))
1327
+ (objectBody
1328
+ (whenGenerator
1329
+ (qualifiedAccessExpr
1330
+ (unqualifiedAccessExpr
1331
+ (identifier))
1332
+ (identifier))
1333
+ (objectBody
1334
+ (objectElement
1335
+ (unqualifiedAccessExpr
1336
+ (identifier))))))))))
1337
+ (classProperty
1338
+ (identifier)
1339
+ (newExpr
1340
+ (declaredType
1341
+ (qualifiedIdentifier
1342
+ (identifier)))
1343
+ (objectBody
1344
+ (forGenerator
1345
+ (typedIdentifier
1346
+ (identifier))
1347
+ (typedIdentifier
1348
+ (identifier))
1349
+ (newExpr
1350
+ (declaredType
1351
+ (qualifiedIdentifier
1352
+ (identifier)))
1353
+ (objectBody
1354
+ (objectEntry
1355
+ (slStringLiteralExpr
1356
+ (slStringLiteralPart))
1357
+ (intLiteralExpr))
1358
+ (objectEntry
1359
+ (slStringLiteralExpr
1360
+ (slStringLiteralPart))
1361
+ (intLiteralExpr))))
1362
+ (objectBody
1363
+ (whenGenerator
1364
+ (qualifiedAccessExpr
1365
+ (unqualifiedAccessExpr
1366
+ (identifier))
1367
+ (identifier))
1368
+ (objectBody
1369
+ (objectElement
1370
+ (unqualifiedAccessExpr
1371
+ (identifier)
1372
+ (argumentList
1373
+ (unqualifiedAccessExpr
1374
+ (identifier))
1375
+ (unqualifiedAccessExpr
1376
+ (identifier))))))))))))
1377
+ (classProperty
1378
+ (identifier)
1379
+ (newExpr
1380
+ (declaredType
1381
+ (qualifiedIdentifier
1382
+ (identifier)))
1383
+ (objectBody
1384
+ (forGenerator
1385
+ (typedIdentifier
1386
+ (identifier))
1387
+ (typedIdentifier
1388
+ (identifier))
1389
+ (newExpr
1390
+ (declaredType
1391
+ (qualifiedIdentifier
1392
+ (identifier)))
1393
+ (objectBody
1394
+ (objectEntry
1395
+ (slStringLiteralExpr
1396
+ (slStringLiteralPart))
1397
+ (intLiteralExpr))
1398
+ (objectEntry
1399
+ (slStringLiteralExpr
1400
+ (slStringLiteralPart))
1401
+ (intLiteralExpr))))
1402
+ (objectBody
1403
+ (whenGenerator
1404
+ (qualifiedAccessExpr
1405
+ (unqualifiedAccessExpr
1406
+ (identifier))
1407
+ (identifier))
1408
+ (objectBody
1409
+ (objectElement
1410
+ (unqualifiedAccessExpr
1411
+ (identifier)
1412
+ (argumentList
1413
+ (unqualifiedAccessExpr
1414
+ (identifier))
1415
+ (unqualifiedAccessExpr
1416
+ (identifier))))))))))))
1417
+ (classProperty
1418
+ (identifier)
1419
+ (newExpr
1420
+ (declaredType
1421
+ (qualifiedIdentifier
1422
+ (identifier)))
1423
+ (objectBody
1424
+ (objectElement
1425
+ (slStringLiteralExpr
1426
+ (slStringLiteralPart)))
1427
+ (whenGenerator
1428
+ (equalityExpr
1429
+ (additiveExpr
1430
+ (intLiteralExpr)
1431
+ (intLiteralExpr))
1432
+ (intLiteralExpr))
1433
+ (objectBody
1434
+ (objectElement
1435
+ (slStringLiteralExpr
1436
+ (slStringLiteralPart)))))
1437
+ (whenGenerator
1438
+ (equalityExpr
1439
+ (additiveExpr
1440
+ (intLiteralExpr)
1441
+ (intLiteralExpr))
1442
+ (intLiteralExpr))
1443
+ (objectBody
1444
+ (objectElement
1445
+ (slStringLiteralExpr
1446
+ (slStringLiteralPart))))))))
1447
+ (classProperty
1448
+ (identifier)
1449
+ (newExpr
1450
+ (declaredType
1451
+ (qualifiedIdentifier
1452
+ (identifier)))
1453
+ (objectBody
1454
+ (objectElement
1455
+ (slStringLiteralExpr
1456
+ (slStringLiteralPart)))
1457
+ (whenGenerator
1458
+ (equalityExpr
1459
+ (additiveExpr
1460
+ (intLiteralExpr)
1461
+ (intLiteralExpr))
1462
+ (intLiteralExpr))
1463
+ (objectBody
1464
+ (objectElement
1465
+ (slStringLiteralExpr
1466
+ (slStringLiteralPart)))))
1467
+ (whenGenerator
1468
+ (equalityExpr
1469
+ (additiveExpr
1470
+ (intLiteralExpr)
1471
+ (intLiteralExpr))
1472
+ (intLiteralExpr))
1473
+ (objectBody
1474
+ (objectElement
1475
+ (slStringLiteralExpr
1476
+ (slStringLiteralPart))))))))
1477
+ (classProperty
1478
+ (identifier)
1479
+ (newExpr
1480
+ (declaredType
1481
+ (qualifiedIdentifier
1482
+ (identifier)))
1483
+ (objectBody
1484
+ (forGenerator
1485
+ (typedIdentifier
1486
+ (identifier))
1487
+ (unqualifiedAccessExpr
1488
+ (identifier)
1489
+ (argumentList
1490
+ (slStringLiteralExpr
1491
+ (slStringLiteralPart))
1492
+ (slStringLiteralExpr
1493
+ (slStringLiteralPart))
1494
+ (slStringLiteralExpr
1495
+ (slStringLiteralPart))))
1496
+ (objectBody
1497
+ (forGenerator
1498
+ (typedIdentifier
1499
+ (identifier))
1500
+ (unqualifiedAccessExpr
1501
+ (identifier)
1502
+ (argumentList
1503
+ (slStringLiteralExpr
1504
+ (slStringLiteralPart))
1505
+ (slStringLiteralExpr
1506
+ (slStringLiteralPart))))
1507
+ (objectBody
1508
+ (objectElement
1509
+ (additiveExpr
1510
+ (unqualifiedAccessExpr
1511
+ (identifier))
1512
+ (unqualifiedAccessExpr
1513
+ (identifier)))))))))))
1514
+ (classProperty
1515
+ (identifier)
1516
+ (newExpr
1517
+ (declaredType
1518
+ (qualifiedIdentifier
1519
+ (identifier)))
1520
+ (objectBody
1521
+ (forGenerator
1522
+ (typedIdentifier
1523
+ (identifier))
1524
+ (unqualifiedAccessExpr
1525
+ (identifier)
1526
+ (argumentList
1527
+ (slStringLiteralExpr
1528
+ (slStringLiteralPart))
1529
+ (slStringLiteralExpr
1530
+ (slStringLiteralPart))
1531
+ (slStringLiteralExpr
1532
+ (slStringLiteralPart))))
1533
+ (objectBody
1534
+ (forGenerator
1535
+ (typedIdentifier
1536
+ (identifier))
1537
+ (unqualifiedAccessExpr
1538
+ (identifier)
1539
+ (argumentList
1540
+ (slStringLiteralExpr
1541
+ (slStringLiteralPart))
1542
+ (slStringLiteralExpr
1543
+ (slStringLiteralPart))))
1544
+ (objectBody
1545
+ (objectElement
1546
+ (additiveExpr
1547
+ (unqualifiedAccessExpr
1548
+ (identifier))
1549
+ (unqualifiedAccessExpr
1550
+ (identifier)))))))))))
1551
+ (classProperty
1552
+ (identifier)
1553
+ (newExpr
1554
+ (declaredType
1555
+ (qualifiedIdentifier
1556
+ (identifier)))
1557
+ (objectBody
1558
+ (forGenerator
1559
+ (typedIdentifier
1560
+ (identifier))
1561
+ (typedIdentifier
1562
+ (identifier))
1563
+ (unqualifiedAccessExpr
1564
+ (identifier)
1565
+ (argumentList
1566
+ (slStringLiteralExpr
1567
+ (slStringLiteralPart))
1568
+ (slStringLiteralExpr
1569
+ (slStringLiteralPart))
1570
+ (slStringLiteralExpr
1571
+ (slStringLiteralPart))))
1572
+ (objectBody
1573
+ (forGenerator
1574
+ (typedIdentifier
1575
+ (identifier))
1576
+ (typedIdentifier
1577
+ (identifier))
1578
+ (unqualifiedAccessExpr
1579
+ (identifier)
1580
+ (argumentList
1581
+ (slStringLiteralExpr
1582
+ (slStringLiteralPart))
1583
+ (slStringLiteralExpr
1584
+ (slStringLiteralPart))))
1585
+ (objectBody
1586
+ (objectElement
1587
+ (unqualifiedAccessExpr
1588
+ (identifier)
1589
+ (argumentList
1590
+ (additiveExpr
1591
+ (unqualifiedAccessExpr
1592
+ (identifier))
1593
+ (unqualifiedAccessExpr
1594
+ (identifier)))
1595
+ (additiveExpr
1596
+ (unqualifiedAccessExpr
1597
+ (identifier))
1598
+ (unqualifiedAccessExpr
1599
+ (identifier)))))))))))))
1600
+ (classProperty
1601
+ (identifier)
1602
+ (newExpr
1603
+ (declaredType
1604
+ (qualifiedIdentifier
1605
+ (identifier)))
1606
+ (objectBody
1607
+ (forGenerator
1608
+ (typedIdentifier
1609
+ (identifier))
1610
+ (typedIdentifier
1611
+ (identifier))
1612
+ (unqualifiedAccessExpr
1613
+ (identifier)
1614
+ (argumentList
1615
+ (slStringLiteralExpr
1616
+ (slStringLiteralPart))
1617
+ (slStringLiteralExpr
1618
+ (slStringLiteralPart))
1619
+ (slStringLiteralExpr
1620
+ (slStringLiteralPart))))
1621
+ (objectBody
1622
+ (forGenerator
1623
+ (typedIdentifier
1624
+ (identifier))
1625
+ (typedIdentifier
1626
+ (identifier))
1627
+ (unqualifiedAccessExpr
1628
+ (identifier)
1629
+ (argumentList
1630
+ (slStringLiteralExpr
1631
+ (slStringLiteralPart))
1632
+ (slStringLiteralExpr
1633
+ (slStringLiteralPart))))
1634
+ (objectBody
1635
+ (objectElement
1636
+ (unqualifiedAccessExpr
1637
+ (identifier)
1638
+ (argumentList
1639
+ (additiveExpr
1640
+ (unqualifiedAccessExpr
1641
+ (identifier))
1642
+ (unqualifiedAccessExpr
1643
+ (identifier)))
1644
+ (additiveExpr
1645
+ (unqualifiedAccessExpr
1646
+ (identifier))
1647
+ (unqualifiedAccessExpr
1648
+ (identifier)))))))))))))
1649
+ (classProperty
1650
+ (identifier)
1651
+ (newExpr
1652
+ (declaredType
1653
+ (qualifiedIdentifier
1654
+ (identifier)))
1655
+ (objectBody
1656
+ (objectElement
1657
+ (slStringLiteralExpr
1658
+ (slStringLiteralPart)))
1659
+ (forGenerator
1660
+ (typedIdentifier
1661
+ (identifier))
1662
+ (unqualifiedAccessExpr
1663
+ (identifier)
1664
+ (argumentList
1665
+ (intLiteralExpr)
1666
+ (intLiteralExpr)))
1667
+ (objectBody
1668
+ (whenGenerator
1669
+ (qualifiedAccessExpr
1670
+ (unqualifiedAccessExpr
1671
+ (identifier))
1672
+ (identifier))
1673
+ (objectBody
1674
+ (objectElement
1675
+ (multiplicativeExpr
1676
+ (unqualifiedAccessExpr
1677
+ (identifier))
1678
+ (intLiteralExpr)))))))
1679
+ (objectElement
1680
+ (slStringLiteralExpr
1681
+ (slStringLiteralPart)))
1682
+ (forGenerator
1683
+ (typedIdentifier
1684
+ (identifier))
1685
+ (unqualifiedAccessExpr
1686
+ (identifier)
1687
+ (argumentList
1688
+ (slStringLiteralExpr
1689
+ (slStringLiteralPart))
1690
+ (slStringLiteralExpr
1691
+ (slStringLiteralPart))
1692
+ (slStringLiteralExpr
1693
+ (slStringLiteralPart))))
1694
+ (objectBody
1695
+ (forGenerator
1696
+ (typedIdentifier
1697
+ (identifier))
1698
+ (unqualifiedAccessExpr
1699
+ (identifier)
1700
+ (argumentList
1701
+ (slStringLiteralExpr
1702
+ (slStringLiteralPart))
1703
+ (slStringLiteralExpr
1704
+ (slStringLiteralPart))))
1705
+ (objectBody
1706
+ (objectElement
1707
+ (additiveExpr
1708
+ (unqualifiedAccessExpr
1709
+ (identifier))
1710
+ (unqualifiedAccessExpr
1711
+ (identifier))))))))
1712
+ (objectElement
1713
+ (slStringLiteralExpr
1714
+ (slStringLiteralPart))))))
1715
+ (classProperty
1716
+ (identifier)
1717
+ (newExpr
1718
+ (declaredType
1719
+ (qualifiedIdentifier
1720
+ (identifier)))
1721
+ (objectBody
1722
+ (objectElement
1723
+ (slStringLiteralExpr
1724
+ (slStringLiteralPart)))
1725
+ (forGenerator
1726
+ (typedIdentifier
1727
+ (identifier))
1728
+ (unqualifiedAccessExpr
1729
+ (identifier)
1730
+ (argumentList
1731
+ (intLiteralExpr)
1732
+ (intLiteralExpr)))
1733
+ (objectBody
1734
+ (whenGenerator
1735
+ (qualifiedAccessExpr
1736
+ (unqualifiedAccessExpr
1737
+ (identifier))
1738
+ (identifier))
1739
+ (objectBody
1740
+ (objectElement
1741
+ (multiplicativeExpr
1742
+ (unqualifiedAccessExpr
1743
+ (identifier))
1744
+ (intLiteralExpr)))))))
1745
+ (objectElement
1746
+ (slStringLiteralExpr
1747
+ (slStringLiteralPart)))
1748
+ (forGenerator
1749
+ (typedIdentifier
1750
+ (identifier))
1751
+ (unqualifiedAccessExpr
1752
+ (identifier)
1753
+ (argumentList
1754
+ (slStringLiteralExpr
1755
+ (slStringLiteralPart))
1756
+ (slStringLiteralExpr
1757
+ (slStringLiteralPart))
1758
+ (slStringLiteralExpr
1759
+ (slStringLiteralPart))))
1760
+ (objectBody
1761
+ (forGenerator
1762
+ (typedIdentifier
1763
+ (identifier))
1764
+ (unqualifiedAccessExpr
1765
+ (identifier)
1766
+ (argumentList
1767
+ (slStringLiteralExpr
1768
+ (slStringLiteralPart))
1769
+ (slStringLiteralExpr
1770
+ (slStringLiteralPart))))
1771
+ (objectBody
1772
+ (objectElement
1773
+ (additiveExpr
1774
+ (unqualifiedAccessExpr
1775
+ (identifier))
1776
+ (unqualifiedAccessExpr
1777
+ (identifier))))))))
1778
+ (objectElement
1779
+ (slStringLiteralExpr
1780
+ (slStringLiteralPart))))))
1781
+ (classProperty
1782
+ (identifier)
1783
+ (newExpr
1784
+ (declaredType
1785
+ (qualifiedIdentifier
1786
+ (identifier)))
1787
+ (objectBody
1788
+ (forGenerator
1789
+ (typedIdentifier
1790
+ (identifier))
1791
+ (unqualifiedAccessExpr
1792
+ (identifier)
1793
+ (argumentList
1794
+ (intLiteralExpr)
1795
+ (intLiteralExpr)))
1796
+ (objectBody
1797
+ (objectElement
1798
+ (unqualifiedAccessExpr
1799
+ (identifier)))))
1800
+ (forGenerator
1801
+ (typedIdentifier
1802
+ (identifier))
1803
+ (unqualifiedAccessExpr
1804
+ (identifier)
1805
+ (argumentList
1806
+ (slStringLiteralExpr
1807
+ (slStringLiteralPart))
1808
+ (slStringLiteralExpr
1809
+ (slStringLiteralPart))
1810
+ (slStringLiteralExpr
1811
+ (slStringLiteralPart))))
1812
+ (objectBody
1813
+ (objectElement
1814
+ (unqualifiedAccessExpr
1815
+ (identifier)))))
1816
+ (forGenerator
1817
+ (typedIdentifier
1818
+ (identifier))
1819
+ (unqualifiedAccessExpr
1820
+ (identifier)
1821
+ (argumentList
1822
+ (intLiteralExpr)
1823
+ (intLiteralExpr)))
1824
+ (objectBody
1825
+ (objectElement
1826
+ (unqualifiedAccessExpr
1827
+ (identifier))))))))
1828
+ (classProperty
1829
+ (identifier)
1830
+ (newExpr
1831
+ (declaredType
1832
+ (qualifiedIdentifier
1833
+ (identifier)))
1834
+ (objectBody
1835
+ (forGenerator
1836
+ (typedIdentifier
1837
+ (identifier))
1838
+ (unqualifiedAccessExpr
1839
+ (identifier)
1840
+ (argumentList
1841
+ (intLiteralExpr)
1842
+ (intLiteralExpr)))
1843
+ (objectBody
1844
+ (objectElement
1845
+ (unqualifiedAccessExpr
1846
+ (identifier)))))
1847
+ (forGenerator
1848
+ (typedIdentifier
1849
+ (identifier))
1850
+ (unqualifiedAccessExpr
1851
+ (identifier)
1852
+ (argumentList
1853
+ (slStringLiteralExpr
1854
+ (slStringLiteralPart))
1855
+ (slStringLiteralExpr
1856
+ (slStringLiteralPart))
1857
+ (slStringLiteralExpr
1858
+ (slStringLiteralPart))))
1859
+ (objectBody
1860
+ (objectElement
1861
+ (unqualifiedAccessExpr
1862
+ (identifier)))))
1863
+ (forGenerator
1864
+ (typedIdentifier
1865
+ (identifier))
1866
+ (unqualifiedAccessExpr
1867
+ (identifier)
1868
+ (argumentList
1869
+ (intLiteralExpr)
1870
+ (intLiteralExpr)))
1871
+ (objectBody
1872
+ (objectElement
1873
+ (unqualifiedAccessExpr
1874
+ (identifier))))))))
1875
+ (classProperty
1876
+ (identifier)
1877
+ (newExpr
1878
+ (declaredType
1879
+ (qualifiedIdentifier
1880
+ (identifier)))
1881
+ (objectBody
1882
+ (forGenerator
1883
+ (typedIdentifier
1884
+ (identifier))
1885
+ (typedIdentifier
1886
+ (identifier))
1887
+ (unqualifiedAccessExpr
1888
+ (identifier)
1889
+ (argumentList
1890
+ (intLiteralExpr)
1891
+ (intLiteralExpr)))
1892
+ (objectBody
1893
+ (objectElement
1894
+ (unqualifiedAccessExpr
1895
+ (identifier)
1896
+ (argumentList
1897
+ (unqualifiedAccessExpr
1898
+ (identifier))
1899
+ (unqualifiedAccessExpr
1900
+ (identifier)))))))
1901
+ (forGenerator
1902
+ (typedIdentifier
1903
+ (identifier))
1904
+ (typedIdentifier
1905
+ (identifier))
1906
+ (unqualifiedAccessExpr
1907
+ (identifier)
1908
+ (argumentList
1909
+ (slStringLiteralExpr
1910
+ (slStringLiteralPart))
1911
+ (slStringLiteralExpr
1912
+ (slStringLiteralPart))
1913
+ (slStringLiteralExpr
1914
+ (slStringLiteralPart))))
1915
+ (objectBody
1916
+ (objectElement
1917
+ (unqualifiedAccessExpr
1918
+ (identifier)
1919
+ (argumentList
1920
+ (unqualifiedAccessExpr
1921
+ (identifier))
1922
+ (unqualifiedAccessExpr
1923
+ (identifier)))))))
1924
+ (forGenerator
1925
+ (typedIdentifier
1926
+ (identifier))
1927
+ (typedIdentifier
1928
+ (identifier))
1929
+ (unqualifiedAccessExpr
1930
+ (identifier)
1931
+ (argumentList
1932
+ (intLiteralExpr)
1933
+ (intLiteralExpr)))
1934
+ (objectBody
1935
+ (objectElement
1936
+ (unqualifiedAccessExpr
1937
+ (identifier)
1938
+ (argumentList
1939
+ (unqualifiedAccessExpr
1940
+ (identifier))
1941
+ (unqualifiedAccessExpr
1942
+ (identifier))))))))))
1943
+ (classProperty
1944
+ (identifier)
1945
+ (newExpr
1946
+ (declaredType
1947
+ (qualifiedIdentifier
1948
+ (identifier)))
1949
+ (objectBody
1950
+ (forGenerator
1951
+ (typedIdentifier
1952
+ (identifier))
1953
+ (typedIdentifier
1954
+ (identifier))
1955
+ (unqualifiedAccessExpr
1956
+ (identifier)
1957
+ (argumentList
1958
+ (intLiteralExpr)
1959
+ (intLiteralExpr)))
1960
+ (objectBody
1961
+ (objectElement
1962
+ (unqualifiedAccessExpr
1963
+ (identifier)
1964
+ (argumentList
1965
+ (unqualifiedAccessExpr
1966
+ (identifier))
1967
+ (unqualifiedAccessExpr
1968
+ (identifier)))))))
1969
+ (forGenerator
1970
+ (typedIdentifier
1971
+ (identifier))
1972
+ (typedIdentifier
1973
+ (identifier))
1974
+ (unqualifiedAccessExpr
1975
+ (identifier)
1976
+ (argumentList
1977
+ (slStringLiteralExpr
1978
+ (slStringLiteralPart))
1979
+ (slStringLiteralExpr
1980
+ (slStringLiteralPart))
1981
+ (slStringLiteralExpr
1982
+ (slStringLiteralPart))))
1983
+ (objectBody
1984
+ (objectElement
1985
+ (unqualifiedAccessExpr
1986
+ (identifier)
1987
+ (argumentList
1988
+ (unqualifiedAccessExpr
1989
+ (identifier))
1990
+ (unqualifiedAccessExpr
1991
+ (identifier)))))))
1992
+ (forGenerator
1993
+ (typedIdentifier
1994
+ (identifier))
1995
+ (typedIdentifier
1996
+ (identifier))
1997
+ (unqualifiedAccessExpr
1998
+ (identifier)
1999
+ (argumentList
2000
+ (intLiteralExpr)
2001
+ (intLiteralExpr)))
2002
+ (objectBody
2003
+ (objectElement
2004
+ (unqualifiedAccessExpr
2005
+ (identifier)
2006
+ (argumentList
2007
+ (unqualifiedAccessExpr
2008
+ (identifier))
2009
+ (unqualifiedAccessExpr
2010
+ (identifier))))))))))
2011
+ (classProperty
2012
+ (modifier)
2013
+ (identifier)
2014
+ (newExpr
2015
+ (declaredType
2016
+ (qualifiedIdentifier
2017
+ (identifier)))
2018
+ (objectBody
2019
+ (objectProperty
2020
+ (identifier)
2021
+ (slStringLiteralExpr
2022
+ (slStringLiteralPart)))
2023
+ (objectProperty
2024
+ (identifier)
2025
+ (intLiteralExpr))
2026
+ (objectProperty
2027
+ (identifier)
2028
+ (unqualifiedAccessExpr
2029
+ (identifier)
2030
+ (argumentList
2031
+ (intLiteralExpr)
2032
+ (slStringLiteralExpr
2033
+ (slStringLiteralPart))))))))
2034
+ (classProperty
2035
+ (identifier)
2036
+ (newExpr
2037
+ (declaredType
2038
+ (qualifiedIdentifier
2039
+ (identifier)))
2040
+ (objectBody
2041
+ (forGenerator
2042
+ (typedIdentifier
2043
+ (identifier))
2044
+ (unqualifiedAccessExpr
2045
+ (identifier))
2046
+ (objectBody
2047
+ (objectEntry
2048
+ (unqualifiedAccessExpr
2049
+ (identifier))
2050
+ (unqualifiedAccessExpr
2051
+ (identifier))))))))
2052
+ (classProperty
2053
+ (identifier)
2054
+ (newExpr
2055
+ (declaredType
2056
+ (qualifiedIdentifier
2057
+ (identifier)))
2058
+ (objectBody
2059
+ (forGenerator
2060
+ (typedIdentifier
2061
+ (identifier))
2062
+ (typedIdentifier
2063
+ (identifier))
2064
+ (unqualifiedAccessExpr
2065
+ (identifier))
2066
+ (objectBody
2067
+ (objectEntry
2068
+ (unqualifiedAccessExpr
2069
+ (identifier))
2070
+ (unqualifiedAccessExpr
2071
+ (identifier))))))))
2072
+ (classProperty
2073
+ (modifier)
2074
+ (identifier)
2075
+ (newExpr
2076
+ (declaredType
2077
+ (qualifiedIdentifier
2078
+ (identifier)))
2079
+ (objectBody
2080
+ (objectProperty
2081
+ (identifier)
2082
+ (slStringLiteralExpr
2083
+ (slStringLiteralPart)))
2084
+ (objectElement
2085
+ (slStringLiteralExpr
2086
+ (slStringLiteralPart)))
2087
+ (objectProperty
2088
+ (identifier)
2089
+ (intLiteralExpr))
2090
+ (objectEntry
2091
+ (slStringLiteralExpr
2092
+ (slStringLiteralPart))
2093
+ (intLiteralExpr))
2094
+ (objectElement
2095
+ (slStringLiteralExpr
2096
+ (slStringLiteralPart)))
2097
+ (objectEntry
2098
+ (slStringLiteralExpr
2099
+ (slStringLiteralPart))
2100
+ (slStringLiteralExpr
2101
+ (slStringLiteralPart))))))
2102
+ (classProperty
2103
+ (identifier)
2104
+ (newExpr
2105
+ (declaredType
2106
+ (qualifiedIdentifier
2107
+ (identifier)))
2108
+ (objectBody
2109
+ (forGenerator
2110
+ (typedIdentifier
2111
+ (identifier))
2112
+ (unqualifiedAccessExpr
2113
+ (identifier))
2114
+ (objectBody
2115
+ (objectElement
2116
+ (unqualifiedAccessExpr
2117
+ (identifier))))))))
2118
+ (classProperty
2119
+ (identifier)
2120
+ (newExpr
2121
+ (declaredType
2122
+ (qualifiedIdentifier
2123
+ (identifier)))
2124
+ (objectBody
2125
+ (forGenerator
2126
+ (typedIdentifier
2127
+ (identifier))
2128
+ (typedIdentifier
2129
+ (identifier))
2130
+ (unqualifiedAccessExpr
2131
+ (identifier))
2132
+ (objectBody
2133
+ (objectElement
2134
+ (slStringLiteralExpr
2135
+ (stringInterpolation
2136
+ (unqualifiedAccessExpr
2137
+ (identifier)))
2138
+ (slStringLiteralPart)
2139
+ (stringInterpolation
2140
+ (unqualifiedAccessExpr
2141
+ (identifier))))))))))
2142
+ (clazz
2143
+ (identifier)
2144
+ (classBody
2145
+ (classProperty
2146
+ (identifier)
2147
+ (typeAnnotation
2148
+ (declaredType
2149
+ (qualifiedIdentifier
2150
+ (identifier)))))
2151
+ (classProperty
2152
+ (identifier)
2153
+ (typeAnnotation
2154
+ (declaredType
2155
+ (qualifiedIdentifier
2156
+ (identifier)))))))
2157
+ (classProperty
2158
+ (modifier)
2159
+ (identifier)
2160
+ (typeAnnotation
2161
+ (declaredType
2162
+ (qualifiedIdentifier
2163
+ (identifier))))
2164
+ (newExpr
2165
+ (objectBody
2166
+ (objectProperty
2167
+ (identifier)
2168
+ (slStringLiteralExpr
2169
+ (slStringLiteralPart)))
2170
+ (objectProperty
2171
+ (identifier)
2172
+ (intLiteralExpr)))))
2173
+ (classProperty
2174
+ (identifier)
2175
+ (newExpr
2176
+ (declaredType
2177
+ (qualifiedIdentifier
2178
+ (identifier)))
2179
+ (objectBody
2180
+ (forGenerator
2181
+ (typedIdentifier
2182
+ (identifier))
2183
+ (qualifiedAccessExpr
2184
+ (unqualifiedAccessExpr
2185
+ (identifier))
2186
+ (identifier)
2187
+ (argumentList))
2188
+ (objectBody
2189
+ (objectElement
2190
+ (unqualifiedAccessExpr
2191
+ (identifier))))))))
2192
+ (classProperty
2193
+ (identifier)
2194
+ (newExpr
2195
+ (declaredType
2196
+ (qualifiedIdentifier
2197
+ (identifier)))
2198
+ (objectBody
2199
+ (forGenerator
2200
+ (typedIdentifier
2201
+ (identifier))
2202
+ (typedIdentifier
2203
+ (identifier))
2204
+ (qualifiedAccessExpr
2205
+ (unqualifiedAccessExpr
2206
+ (identifier))
2207
+ (identifier)
2208
+ (argumentList))
2209
+ (objectBody
2210
+ (objectElement
2211
+ (slStringLiteralExpr
2212
+ (stringInterpolation
2213
+ (unqualifiedAccessExpr
2214
+ (identifier)))
2215
+ (slStringLiteralPart)
2216
+ (stringInterpolation
2217
+ (unqualifiedAccessExpr
2218
+ (identifier))))))))))
2219
+ (classProperty
2220
+ (modifier)
2221
+ (identifier)
2222
+ (typeAnnotation
2223
+ (declaredType
2224
+ (qualifiedIdentifier
2225
+ (identifier))))
2226
+ (newExpr
2227
+ (objectBody
2228
+ (objectProperty
2229
+ (identifier)
2230
+ (slStringLiteralExpr
2231
+ (slStringLiteralPart)))
2232
+ (objectEntry
2233
+ (slStringLiteralExpr
2234
+ (slStringLiteralPart))
2235
+ (slStringLiteralExpr
2236
+ (slStringLiteralPart)))
2237
+ (objectEntry
2238
+ (slStringLiteralExpr
2239
+ (slStringLiteralPart))
2240
+ (slStringLiteralExpr
2241
+ (slStringLiteralPart)))
2242
+ (objectProperty
2243
+ (identifier)
2244
+ (slStringLiteralExpr
2245
+ (slStringLiteralPart))))))
2246
+ (classProperty
2247
+ (identifier)
2248
+ (newExpr
2249
+ (declaredType
2250
+ (qualifiedIdentifier
2251
+ (identifier)))
2252
+ (objectBody
2253
+ (forGenerator
2254
+ (typedIdentifier
2255
+ (identifier))
2256
+ (unqualifiedAccessExpr
2257
+ (identifier))
2258
+ (objectBody
2259
+ (objectElement
2260
+ (unqualifiedAccessExpr
2261
+ (identifier))))))))
2262
+ (classProperty
2263
+ (identifier)
2264
+ (newExpr
2265
+ (declaredType
2266
+ (qualifiedIdentifier
2267
+ (identifier)))
2268
+ (objectBody
2269
+ (forGenerator
2270
+ (typedIdentifier
2271
+ (identifier))
2272
+ (typedIdentifier
2273
+ (identifier))
2274
+ (unqualifiedAccessExpr
2275
+ (identifier))
2276
+ (objectBody
2277
+ (objectElement
2278
+ (slStringLiteralExpr
2279
+ (stringInterpolation
2280
+ (unqualifiedAccessExpr
2281
+ (identifier)))
2282
+ (slStringLiteralPart)
2283
+ (stringInterpolation
2284
+ (unqualifiedAccessExpr
2285
+ (identifier))))))))))
2286
+ (classProperty
2287
+ (identifier)
2288
+ (newExpr
2289
+ (declaredType
2290
+ (qualifiedIdentifier
2291
+ (identifier)))
2292
+ (objectBody
2293
+ (forGenerator
2294
+ (typedIdentifier
2295
+ (identifier))
2296
+ (unqualifiedAccessExpr
2297
+ (identifier)
2298
+ (argumentList
2299
+ (slStringLiteralExpr
2300
+ (slStringLiteralPart))
2301
+ (slStringLiteralExpr
2302
+ (slStringLiteralPart))
2303
+ (slStringLiteralExpr
2304
+ (slStringLiteralPart))))
2305
+ (objectBody
2306
+ (objectElement
2307
+ (unqualifiedAccessExpr
2308
+ (identifier)))
2309
+ (objectElement
2310
+ (additiveExpr
2311
+ (unqualifiedAccessExpr
2312
+ (identifier))
2313
+ (slStringLiteralExpr
2314
+ (slStringLiteralPart))))
2315
+ (objectElement
2316
+ (additiveExpr
2317
+ (unqualifiedAccessExpr
2318
+ (identifier))
2319
+ (slStringLiteralExpr
2320
+ (slStringLiteralPart)))))))))
2321
+ (classProperty
2322
+ (identifier)
2323
+ (newExpr
2324
+ (declaredType
2325
+ (qualifiedIdentifier
2326
+ (identifier)))
2327
+ (objectBody
2328
+ (forGenerator
2329
+ (typedIdentifier
2330
+ (identifier))
2331
+ (unqualifiedAccessExpr
2332
+ (identifier)
2333
+ (argumentList
2334
+ (slStringLiteralExpr
2335
+ (slStringLiteralPart))
2336
+ (slStringLiteralExpr
2337
+ (slStringLiteralPart))))
2338
+ (objectBody
2339
+ (forGenerator
2340
+ (typedIdentifier
2341
+ (identifier))
2342
+ (typedIdentifier
2343
+ (identifier))
2344
+ (unqualifiedAccessExpr
2345
+ (identifier)
2346
+ (argumentList
2347
+ (slStringLiteralExpr
2348
+ (slStringLiteralPart))
2349
+ (intLiteralExpr)
2350
+ (slStringLiteralExpr
2351
+ (slStringLiteralPart))
2352
+ (intLiteralExpr)))
2353
+ (objectBody
2354
+ (objectElement
2355
+ (additiveExpr
2356
+ (additiveExpr
2357
+ (unqualifiedAccessExpr
2358
+ (identifier))
2359
+ (unqualifiedAccessExpr
2360
+ (identifier)))
2361
+ (qualifiedAccessExpr
2362
+ (unqualifiedAccessExpr
2363
+ (identifier))
2364
+ (identifier)
2365
+ (argumentList))))
2366
+ (objectElement
2367
+ (additiveExpr
2368
+ (additiveExpr
2369
+ (qualifiedAccessExpr
2370
+ (unqualifiedAccessExpr
2371
+ (identifier))
2372
+ (identifier)
2373
+ (argumentList))
2374
+ (unqualifiedAccessExpr
2375
+ (identifier)))
2376
+ (unqualifiedAccessExpr
2377
+ (identifier))))))
2378
+ (forGenerator
2379
+ (typedIdentifier
2380
+ (identifier))
2381
+ (typedIdentifier
2382
+ (identifier))
2383
+ (unqualifiedAccessExpr
2384
+ (identifier)
2385
+ (argumentList
2386
+ (slStringLiteralExpr
2387
+ (slStringLiteralPart))
2388
+ (intLiteralExpr)
2389
+ (slStringLiteralExpr
2390
+ (slStringLiteralPart))
2391
+ (intLiteralExpr)))
2392
+ (objectBody
2393
+ (objectElement
2394
+ (additiveExpr
2395
+ (additiveExpr
2396
+ (unqualifiedAccessExpr
2397
+ (identifier))
2398
+ (unqualifiedAccessExpr
2399
+ (identifier)))
2400
+ (qualifiedAccessExpr
2401
+ (unqualifiedAccessExpr
2402
+ (identifier))
2403
+ (identifier)
2404
+ (argumentList))))
2405
+ (objectElement
2406
+ (additiveExpr
2407
+ (additiveExpr
2408
+ (qualifiedAccessExpr
2409
+ (unqualifiedAccessExpr
2410
+ (identifier))
2411
+ (identifier)
2412
+ (argumentList))
2413
+ (unqualifiedAccessExpr
2414
+ (identifier)))
2415
+ (unqualifiedAccessExpr
2416
+ (identifier)))))))))))
2417
+ (classProperty
2418
+ (identifier)
2419
+ (newExpr
2420
+ (declaredType
2421
+ (qualifiedIdentifier
2422
+ (identifier)))
2423
+ (objectBody
2424
+ (whenGenerator
2425
+ (falseLiteralExpr)
2426
+ (objectBody
2427
+ (forGenerator
2428
+ (typedIdentifier
2429
+ (identifier))
2430
+ (unqualifiedAccessExpr
2431
+ (identifier)
2432
+ (argumentList
2433
+ (intLiteralExpr)))
2434
+ (objectBody
2435
+ (objectElement
2436
+ (unqualifiedAccessExpr
2437
+ (identifier))))))
2438
+ (objectBody
2439
+ (forGenerator
2440
+ (typedIdentifier
2441
+ (identifier))
2442
+ (unqualifiedAccessExpr
2443
+ (identifier)
2444
+ (argumentList
2445
+ (intLiteralExpr)))
2446
+ (objectBody
2447
+ (whenGenerator
2448
+ (equalityExpr
2449
+ (unqualifiedAccessExpr
2450
+ (identifier))
2451
+ (intLiteralExpr))
2452
+ (objectBody
2453
+ (objectElement
2454
+ (unqualifiedAccessExpr
2455
+ (identifier))))))))))))
2456
+ (classProperty
2457
+ (identifier)
2458
+ (newExpr
2459
+ (declaredType
2460
+ (qualifiedIdentifier
2461
+ (identifier)))
2462
+ (objectBody
2463
+ (forGenerator
2464
+ (typedIdentifier
2465
+ (identifier))
2466
+ (typedIdentifier
2467
+ (identifier))
2468
+ (newExpr
2469
+ (declaredType
2470
+ (qualifiedIdentifier
2471
+ (identifier)))
2472
+ (objectBody
2473
+ (objectElement
2474
+ (intLiteralExpr))
2475
+ (objectElement
2476
+ (intLiteralExpr))
2477
+ (objectElement
2478
+ (intLiteralExpr))
2479
+ (objectElement
2480
+ (intLiteralExpr))
2481
+ (objectElement
2482
+ (intLiteralExpr))))
2483
+ (objectBody
2484
+ (whenGenerator
2485
+ (qualifiedAccessExpr
2486
+ (unqualifiedAccessExpr
2487
+ (identifier))
2488
+ (identifier))
2489
+ (objectBody
2490
+ (objectElement
2491
+ (multiplicativeExpr
2492
+ (unqualifiedAccessExpr
2493
+ (identifier))
2494
+ (unqualifiedAccessExpr
2495
+ (identifier))))
2496
+ (objectElement
2497
+ (multiplicativeExpr
2498
+ (multiplicativeExpr
2499
+ (unqualifiedAccessExpr
2500
+ (identifier))
2501
+ (unqualifiedAccessExpr
2502
+ (identifier)))
2503
+ (intLiteralExpr))))))))))
2504
+ (classProperty
2505
+ (identifier)
2506
+ (newExpr
2507
+ (declaredType
2508
+ (qualifiedIdentifier
2509
+ (identifier)))
2510
+ (objectBody
2511
+ (forGenerator
2512
+ (typedIdentifier
2513
+ (identifier))
2514
+ (typedIdentifier
2515
+ (identifier))
2516
+ (newExpr
2517
+ (declaredType
2518
+ (qualifiedIdentifier
2519
+ (identifier)))
2520
+ (objectBody
2521
+ (objectElement
2522
+ (intLiteralExpr))
2523
+ (objectElement
2524
+ (intLiteralExpr))
2525
+ (objectElement
2526
+ (intLiteralExpr))
2527
+ (objectElement
2528
+ (intLiteralExpr))
2529
+ (objectElement
2530
+ (intLiteralExpr))))
2531
+ (objectBody
2532
+ (whenGenerator
2533
+ (qualifiedAccessExpr
2534
+ (unqualifiedAccessExpr
2535
+ (identifier))
2536
+ (identifier))
2537
+ (objectBody
2538
+ (whenGenerator
2539
+ (comparisonExpr
2540
+ (unqualifiedAccessExpr
2541
+ (identifier))
2542
+ (intLiteralExpr))
2543
+ (objectBody
2544
+ (objectElement
2545
+ (multiplicativeExpr
2546
+ (unqualifiedAccessExpr
2547
+ (identifier))
2548
+ (unqualifiedAccessExpr
2549
+ (identifier))))
2550
+ (objectElement
2551
+ (multiplicativeExpr
2552
+ (multiplicativeExpr
2553
+ (unqualifiedAccessExpr
2554
+ (identifier))
2555
+ (unqualifiedAccessExpr
2556
+ (identifier)))
2557
+ (intLiteralExpr))))))))))))
2558
+ (classProperty
2559
+ (identifier)
2560
+ (newExpr
2561
+ (declaredType
2562
+ (qualifiedIdentifier
2563
+ (identifier)))
2564
+ (objectBody
2565
+ (forGenerator
2566
+ (typedIdentifier
2567
+ (identifier))
2568
+ (typedIdentifier
2569
+ (identifier))
2570
+ (newExpr
2571
+ (declaredType
2572
+ (qualifiedIdentifier
2573
+ (identifier)))
2574
+ (objectBody
2575
+ (objectElement
2576
+ (intLiteralExpr))
2577
+ (objectElement
2578
+ (intLiteralExpr))
2579
+ (objectElement
2580
+ (intLiteralExpr))
2581
+ (objectElement
2582
+ (intLiteralExpr))
2583
+ (objectElement
2584
+ (intLiteralExpr))))
2585
+ (objectBody
2586
+ (whenGenerator
2587
+ (qualifiedAccessExpr
2588
+ (unqualifiedAccessExpr
2589
+ (identifier))
2590
+ (identifier))
2591
+ (objectBody
2592
+ (objectElement
2593
+ (multiplicativeExpr
2594
+ (unqualifiedAccessExpr
2595
+ (identifier))
2596
+ (unqualifiedAccessExpr
2597
+ (identifier))))
2598
+ (objectElement
2599
+ (multiplicativeExpr
2600
+ (multiplicativeExpr
2601
+ (unqualifiedAccessExpr
2602
+ (identifier))
2603
+ (unqualifiedAccessExpr
2604
+ (identifier)))
2605
+ (intLiteralExpr))))
2606
+ (objectBody
2607
+ (objectElement
2608
+ (qualifiedAccessExpr
2609
+ (parenthesizedExpr
2610
+ (multiplicativeExpr
2611
+ (unqualifiedAccessExpr
2612
+ (identifier))
2613
+ (unqualifiedAccessExpr
2614
+ (identifier))))
2615
+ (identifier)
2616
+ (argumentList)))
2617
+ (objectElement
2618
+ (qualifiedAccessExpr
2619
+ (parenthesizedExpr
2620
+ (multiplicativeExpr
2621
+ (multiplicativeExpr
2622
+ (unqualifiedAccessExpr
2623
+ (identifier))
2624
+ (unqualifiedAccessExpr
2625
+ (identifier)))
2626
+ (intLiteralExpr)))
2627
+ (identifier)
2628
+ (argumentList)))))))))))