@apple/tree-sitter-pkl 0.19.0 → 0.21.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 (697) hide show
  1. package/.editorconfig +3 -0
  2. package/.github/PklProject +26 -0
  3. package/.github/PklProject.deps.json +40 -0
  4. package/.github/dependabot.yml +18 -0
  5. package/.github/index.pkl +159 -0
  6. package/.github/workflows/__lockfile__.yml +28 -0
  7. package/.github/workflows/build.yml +48 -0
  8. package/.github/workflows/codeql.yml +28 -0
  9. package/.github/workflows/main.yml +46 -0
  10. package/.github/workflows/prb.yml +96 -0
  11. package/.github/workflows/release.yml +68 -0
  12. package/CHANGELOG.adoc +27 -0
  13. package/CMakeLists.txt +1 -1
  14. package/Cargo.lock +156 -20
  15. package/Cargo.toml +16 -11
  16. package/Makefile +1 -1
  17. package/{SECURITY.adoc → SECURITY.md} +3 -3
  18. package/binding.gyp +22 -6
  19. package/bindings/node/binding.cc +13 -22
  20. package/bindings/node/index.js +7 -15
  21. package/bindings/python/tests/test_binding.py +2 -2
  22. package/bindings/swift/TreeSitterPkl/pkl.h +4 -4
  23. package/gradlew +3 -6
  24. package/gradlew.bat +1 -2
  25. package/grammar.js +22 -3
  26. package/package.json +17 -12
  27. package/pyproject.toml +1 -1
  28. package/setup.py +24 -24
  29. package/src/grammar.json +107 -0
  30. package/src/node-types.json +10 -0
  31. package/src/parser.c +25577 -26070
  32. package/src/scanner.c +3 -3
  33. package/src/tree_sitter/array.h +110 -71
  34. package/src/tree_sitter/parser.h +0 -1
  35. package/tree-sitter.json +1 -1
  36. package/bindings/c/tree-sitter-pkl.h +0 -16
  37. package/test/corpus/basic/annotation.txt +0 -241
  38. package/test/corpus/basic/comments.txt +0 -41
  39. package/test/corpus/basic/shebangComment.txt +0 -15
  40. package/test/corpus/basic/types.txt +0 -187
  41. package/test/corpus/class/constModifier.txt +0 -23
  42. package/test/corpus/class/fixedModifier.txt +0 -23
  43. package/test/corpus/expr/binary.txt +0 -107
  44. package/test/corpus/expr/binary2.txt +0 -18
  45. package/test/corpus/expr/functionLiteral.txt +0 -22
  46. package/test/corpus/expr/if.txt +0 -15
  47. package/test/corpus/expr/import.txt +0 -20
  48. package/test/corpus/expr/let.txt +0 -17
  49. package/test/corpus/expr/new.txt +0 -34
  50. package/test/corpus/expr/qualifiedAccess.txt +0 -102
  51. package/test/corpus/expr/read.txt +0 -26
  52. package/test/corpus/expr/subscript.txt +0 -48
  53. package/test/corpus/expr/super.txt +0 -27
  54. package/test/corpus/expr/throw.txt +0 -13
  55. package/test/corpus/expr/trace.txt +0 -13
  56. package/test/corpus/expr/typeTest.txt +0 -40
  57. package/test/corpus/expr/unaryMinus.txt +0 -22
  58. package/test/corpus/module/moduleHeader1.txt +0 -23
  59. package/test/corpus/module/moduleHeader2.txt +0 -29
  60. package/test/corpus/module/moduleHeader3.error.txt +0 -23
  61. package/test/corpus/module/moduleHeader4.txt +0 -34
  62. package/test/corpus/module/moduleHeader5.txt +0 -16
  63. package/test/corpus/module/moduleHeader6.txt +0 -17
  64. package/test/corpus/number/underscores.txt +0 -99
  65. package/test/corpus/object/mixedEntriesAndElements.txt +0 -52
  66. package/test/corpus/object/objectAmendChain.txt +0 -38
  67. package/test/corpus/object/objectBodyParams.txt +0 -44
  68. package/test/corpus/object/objectElementWithTypeConstraint +0 -30
  69. package/test/corpus/object/objectElementsWithParens.txt +0 -51
  70. package/test/corpus/object/objectElementsWithTypeParams +0 -65
  71. package/test/corpus/object/objectGenerator.txt +0 -53
  72. package/test/corpus/object/objectMember.txt +0 -129
  73. package/test/corpus/object/objectMemberPredicate.txt +0 -41
  74. package/test/corpus/object/objectSpread.txt +0 -51
  75. package/test/corpus/object/objectWhenGenerator.txt +0 -71
  76. package/test/corpus/snippetTests/annotation/annotation1.txt +0 -284
  77. package/test/corpus/snippetTests/annotation/annotation2.txt +0 -20
  78. package/test/corpus/snippetTests/annotation/annotation3.txt +0 -24
  79. package/test/corpus/snippetTests/annotation/annotation4.txt +0 -32
  80. package/test/corpus/snippetTests/annotation/annotation5.txt +0 -28
  81. package/test/corpus/snippetTests/annotation/annotation6.txt +0 -19
  82. package/test/corpus/snippetTests/annotation/annotationIsNotExpression.txt +0 -29
  83. package/test/corpus/snippetTests/annotation/deprecated1.txt +0 -385
  84. package/test/corpus/snippetTests/annotation/deprecated2.txt +0 -99
  85. package/test/corpus/snippetTests/annotation/deprecated3.txt +0 -155
  86. package/test/corpus/snippetTests/annotation/deprecatedNoRepeatedWarnings.txt +0 -58
  87. package/test/corpus/snippetTests/annotation/deprecatedWithMessage1.txt +0 -405
  88. package/test/corpus/snippetTests/annotation/deprecatedWithMessage2.txt +0 -104
  89. package/test/corpus/snippetTests/annotation/deprecatedWithMessage3.txt +0 -155
  90. package/test/corpus/snippetTests/annotation/deprecationSuperMethod.txt +0 -144
  91. package/test/corpus/snippetTests/api/Resource.txt +0 -128
  92. package/test/corpus/snippetTests/api/analyze1.txt +0 -176
  93. package/test/corpus/snippetTests/api/any.txt +0 -523
  94. package/test/corpus/snippetTests/api/anyConverter.txt +0 -161
  95. package/test/corpus/snippetTests/api/baseModule.txt +0 -170
  96. package/test/corpus/snippetTests/api/dataSize.txt +0 -1165
  97. package/test/corpus/snippetTests/api/duration.txt +0 -800
  98. package/test/corpus/snippetTests/api/float.txt +0 -1334
  99. package/test/corpus/snippetTests/api/int.txt +0 -1142
  100. package/test/corpus/snippetTests/api/intseq.txt +0 -1021
  101. package/test/corpus/snippetTests/api/jsonParser1.txt +0 -279
  102. package/test/corpus/snippetTests/api/jsonParser2.txt +0 -294
  103. package/test/corpus/snippetTests/api/jsonParser3.txt +0 -143
  104. package/test/corpus/snippetTests/api/jsonParser4.txt +0 -112
  105. package/test/corpus/snippetTests/api/jsonParser5.txt +0 -171
  106. package/test/corpus/snippetTests/api/jsonRenderer1.json.txt +0 -41
  107. package/test/corpus/snippetTests/api/jsonRenderer2b.txt +0 -300
  108. package/test/corpus/snippetTests/api/jsonRenderer3.json.txt +0 -334
  109. package/test/corpus/snippetTests/api/jsonRenderer4.txt +0 -388
  110. package/test/corpus/snippetTests/api/jsonRenderer5.txt +0 -388
  111. package/test/corpus/snippetTests/api/jsonRenderer6.json.txt +0 -163
  112. package/test/corpus/snippetTests/api/jsonRenderer7.txt +0 -53
  113. package/test/corpus/snippetTests/api/jsonRenderer8.txt +0 -30
  114. package/test/corpus/snippetTests/api/jsonRendererEmptyComposites.txt +0 -114
  115. package/test/corpus/snippetTests/api/jsonnetRenderer3.jsonnet.txt +0 -356
  116. package/test/corpus/snippetTests/api/jsonnetRenderer4.txt +0 -393
  117. package/test/corpus/snippetTests/api/jsonnetRenderer5.txt +0 -393
  118. package/test/corpus/snippetTests/api/jsonnetRenderer6.jsonnet.txt +0 -169
  119. package/test/corpus/snippetTests/api/jsonnetRenderer7.txt +0 -36
  120. package/test/corpus/snippetTests/api/list.txt +0 -4432
  121. package/test/corpus/snippetTests/api/listNullable.txt +0 -1513
  122. package/test/corpus/snippetTests/api/map.txt +0 -1144
  123. package/test/corpus/snippetTests/api/mapping.txt +0 -948
  124. package/test/corpus/snippetTests/api/mathModule.txt +0 -1426
  125. package/test/corpus/snippetTests/api/module.txt +0 -77
  126. package/test/corpus/snippetTests/api/moduleOutput.txt +0 -24
  127. package/test/corpus/snippetTests/api/moduleOutput2.txt +0 -25
  128. package/test/corpus/snippetTests/api/pListRenderer1.plist.txt +0 -41
  129. package/test/corpus/snippetTests/api/pListRenderer3.plist.txt +0 -348
  130. package/test/corpus/snippetTests/api/pListRenderer4.txt +0 -375
  131. package/test/corpus/snippetTests/api/pListRenderer5.txt +0 -424
  132. package/test/corpus/snippetTests/api/pListRenderer6.plist.txt +0 -163
  133. package/test/corpus/snippetTests/api/pListRenderer7.txt +0 -30
  134. package/test/corpus/snippetTests/api/pair.txt +0 -170
  135. package/test/corpus/snippetTests/api/pcfRenderer1.txt +0 -95
  136. package/test/corpus/snippetTests/api/pcfRenderer2b.txt +0 -301
  137. package/test/corpus/snippetTests/api/pcfRenderer3.txt +0 -350
  138. package/test/corpus/snippetTests/api/pcfRenderer4.txt +0 -391
  139. package/test/corpus/snippetTests/api/pcfRenderer5.txt +0 -460
  140. package/test/corpus/snippetTests/api/pcfRenderer6.txt +0 -118
  141. package/test/corpus/snippetTests/api/pcfRenderer8.txt +0 -16
  142. package/test/corpus/snippetTests/api/platformModule.txt +0 -147
  143. package/test/corpus/snippetTests/api/plistRenderer2b.txt +0 -300
  144. package/test/corpus/snippetTests/api/propertiesRenderer1.properties.txt +0 -41
  145. package/test/corpus/snippetTests/api/propertiesRenderer10.properties.txt +0 -24
  146. package/test/corpus/snippetTests/api/propertiesRenderer11.txt +0 -30
  147. package/test/corpus/snippetTests/api/propertiesRenderer2b.txt +0 -303
  148. package/test/corpus/snippetTests/api/propertiesRenderer4.txt +0 -484
  149. package/test/corpus/snippetTests/api/propertiesRenderer5.txt +0 -491
  150. package/test/corpus/snippetTests/api/propertiesRenderer8.properties.txt +0 -628
  151. package/test/corpus/snippetTests/api/propertiesRenderer9.properties.txt +0 -292
  152. package/test/corpus/snippetTests/api/propertiesRendererBug66849708.properties.txt +0 -106
  153. package/test/corpus/snippetTests/api/protobuf2.txt +0 -408
  154. package/test/corpus/snippetTests/api/reflect1.txt +0 -1686
  155. package/test/corpus/snippetTests/api/reflect2.txt +0 -480
  156. package/test/corpus/snippetTests/api/reflect3.txt +0 -193
  157. package/test/corpus/snippetTests/api/reflectedDeclaration.txt +0 -64
  158. package/test/corpus/snippetTests/api/regex.txt +0 -320
  159. package/test/corpus/snippetTests/api/releaseModule.txt +0 -262
  160. package/test/corpus/snippetTests/api/renderDirective2.txt +0 -374
  161. package/test/corpus/snippetTests/api/semverModule.txt +0 -2224
  162. package/test/corpus/snippetTests/api/set.txt +0 -3891
  163. package/test/corpus/snippetTests/api/setNullable.txt +0 -1113
  164. package/test/corpus/snippetTests/api/typeAliases.txt +0 -449
  165. package/test/corpus/snippetTests/api/typeConverters.txt +0 -211
  166. package/test/corpus/snippetTests/api/xmlRenderer1.xml.txt +0 -174
  167. package/test/corpus/snippetTests/api/xmlRenderer2b.txt +0 -306
  168. package/test/corpus/snippetTests/api/xmlRenderer3.xml.txt +0 -320
  169. package/test/corpus/snippetTests/api/xmlRenderer4.txt +0 -401
  170. package/test/corpus/snippetTests/api/xmlRenderer5.txt +0 -402
  171. package/test/corpus/snippetTests/api/xmlRenderer6.xml.txt +0 -169
  172. package/test/corpus/snippetTests/api/xmlRenderer8.txt +0 -36
  173. package/test/corpus/snippetTests/api/xmlRendererCData.xml.txt +0 -48
  174. package/test/corpus/snippetTests/api/xmlRendererElement.xml.txt +0 -103
  175. package/test/corpus/snippetTests/api/xmlRendererHtml.xml.txt +0 -212
  176. package/test/corpus/snippetTests/api/xmlRendererInline.xml.txt +0 -175
  177. package/test/corpus/snippetTests/api/xmlRendererInline3.xml.txt +0 -152
  178. package/test/corpus/snippetTests/api/yamlParser1Yaml11.txt +0 -22
  179. package/test/corpus/snippetTests/api/yamlParser1Yaml12.txt +0 -22
  180. package/test/corpus/snippetTests/api/yamlParser2.txt +0 -253
  181. package/test/corpus/snippetTests/api/yamlParser3.txt +0 -194
  182. package/test/corpus/snippetTests/api/yamlParser4.txt +0 -198
  183. package/test/corpus/snippetTests/api/yamlParser5.txt +0 -86
  184. package/test/corpus/snippetTests/api/yamlParser6.txt +0 -92
  185. package/test/corpus/snippetTests/api/yamlRenderer1.yml.txt +0 -41
  186. package/test/corpus/snippetTests/api/yamlRenderer2b.txt +0 -300
  187. package/test/corpus/snippetTests/api/yamlRenderer3.yml.txt +0 -342
  188. package/test/corpus/snippetTests/api/yamlRenderer4.txt +0 -441
  189. package/test/corpus/snippetTests/api/yamlRenderer5.txt +0 -441
  190. package/test/corpus/snippetTests/api/yamlRenderer6.yml.txt +0 -163
  191. package/test/corpus/snippetTests/api/yamlRenderer7.txt +0 -30
  192. package/test/corpus/snippetTests/api/yamlRenderer8.yml.txt +0 -142
  193. package/test/corpus/snippetTests/api/yamlRendererBug66849708.yml.txt +0 -106
  194. package/test/corpus/snippetTests/api/yamlRendererEmpty.yml.txt +0 -326
  195. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth2.yml.txt +0 -227
  196. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth4.yml.txt +0 -32
  197. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth5.yml.txt +0 -32
  198. package/test/corpus/snippetTests/api/yamlRendererStream1.txt +0 -140
  199. package/test/corpus/snippetTests/api/yamlRendererStringsYaml11.txt +0 -22
  200. package/test/corpus/snippetTests/api/yamlRendererStringsYaml12.txt +0 -22
  201. package/test/corpus/snippetTests/basic/amendsChains.txt +0 -275
  202. package/test/corpus/snippetTests/basic/as.txt +0 -1468
  203. package/test/corpus/snippetTests/basic/as2.txt +0 -1077
  204. package/test/corpus/snippetTests/basic/as3.txt +0 -297
  205. package/test/corpus/snippetTests/basic/baseModule.txt +0 -11
  206. package/test/corpus/snippetTests/basic/boolean.txt +0 -430
  207. package/test/corpus/snippetTests/basic/constModifier.txt +0 -324
  208. package/test/corpus/snippetTests/basic/constModifier2.txt +0 -227
  209. package/test/corpus/snippetTests/basic/constModifier3.txt +0 -136
  210. package/test/corpus/snippetTests/basic/constModifier4.txt +0 -64
  211. package/test/corpus/snippetTests/basic/constModifier5.txt +0 -68
  212. package/test/corpus/snippetTests/basic/dataSize.txt +0 -658
  213. package/test/corpus/snippetTests/basic/duration.txt +0 -618
  214. package/test/corpus/snippetTests/basic/exceptions.txt +0 -18
  215. package/test/corpus/snippetTests/basic/fixedProperty1.txt +0 -62
  216. package/test/corpus/snippetTests/basic/fixedProperty2.txt +0 -33
  217. package/test/corpus/snippetTests/basic/fixedProperty3.txt +0 -31
  218. package/test/corpus/snippetTests/basic/fixedProperty4.txt +0 -15
  219. package/test/corpus/snippetTests/basic/fixedProperty5.txt +0 -20
  220. package/test/corpus/snippetTests/basic/fixedProperty6.txt +0 -15
  221. package/test/corpus/snippetTests/basic/if.txt +0 -83
  222. package/test/corpus/snippetTests/basic/import1.txt +0 -51
  223. package/test/corpus/snippetTests/basic/import1b.txt +0 -51
  224. package/test/corpus/snippetTests/basic/import2.txt +0 -34
  225. package/test/corpus/snippetTests/basic/import3.txt +0 -34
  226. package/test/corpus/snippetTests/basic/imported.txt +0 -19
  227. package/test/corpus/snippetTests/basic/indexExpressions.txt +0 -53
  228. package/test/corpus/snippetTests/basic/intseq.txt +0 -365
  229. package/test/corpus/snippetTests/basic/is.txt +0 -1504
  230. package/test/corpus/snippetTests/basic/is2.txt +0 -677
  231. package/test/corpus/snippetTests/basic/let.txt +0 -515
  232. package/test/corpus/snippetTests/basic/letTyped.txt +0 -293
  233. package/test/corpus/snippetTests/basic/list.txt +0 -252
  234. package/test/corpus/snippetTests/basic/localMethodDynamicBinding.txt +0 -187
  235. package/test/corpus/snippetTests/basic/localMethodInAmendingModule.txt +0 -216
  236. package/test/corpus/snippetTests/basic/localMethodOverride1.txt +0 -152
  237. package/test/corpus/snippetTests/basic/localMethodOverride2.txt +0 -173
  238. package/test/corpus/snippetTests/basic/localMethodTyped.txt +0 -564
  239. package/test/corpus/snippetTests/basic/localMethodTyped2.txt +0 -580
  240. package/test/corpus/snippetTests/basic/localMethodTyped3.txt +0 -218
  241. package/test/corpus/snippetTests/basic/localMethodTyped4.txt +0 -232
  242. package/test/corpus/snippetTests/basic/localMethodTyped5.txt +0 -211
  243. package/test/corpus/snippetTests/basic/localMethodTyped6.txt +0 -225
  244. package/test/corpus/snippetTests/basic/localMethodUntyped.txt +0 -488
  245. package/test/corpus/snippetTests/basic/localModuleMemberOverride1.txt +0 -227
  246. package/test/corpus/snippetTests/basic/localModuleMemberOverride2.txt +0 -202
  247. package/test/corpus/snippetTests/basic/localProperty1.txt +0 -33
  248. package/test/corpus/snippetTests/basic/localProperty2.txt +0 -77
  249. package/test/corpus/snippetTests/basic/localPropertyAmendInAmendingModule.txt +0 -25
  250. package/test/corpus/snippetTests/basic/localPropertyInAmendingModule.txt +0 -205
  251. package/test/corpus/snippetTests/basic/localPropertyOverride1.txt +0 -131
  252. package/test/corpus/snippetTests/basic/localPropertyOverride2.txt +0 -152
  253. package/test/corpus/snippetTests/basic/localPropertyOverride3.txt +0 -52
  254. package/test/corpus/snippetTests/basic/localTypedClassMember.txt +0 -277
  255. package/test/corpus/snippetTests/basic/localTypedModuleMember.txt +0 -265
  256. package/test/corpus/snippetTests/basic/localTypedObjectMember.txt +0 -268
  257. package/test/corpus/snippetTests/basic/map.txt +0 -398
  258. package/test/corpus/snippetTests/basic/minPklVersion.txt +0 -40
  259. package/test/corpus/snippetTests/basic/moduleRef1.txt +0 -108
  260. package/test/corpus/snippetTests/basic/moduleRef2.txt +0 -80
  261. package/test/corpus/snippetTests/basic/moduleRef3.txt +0 -112
  262. package/test/corpus/snippetTests/basic/moduleRefLibrary.txt +0 -33
  263. package/test/corpus/snippetTests/basic/new.txt +0 -1028
  264. package/test/corpus/snippetTests/basic/newInAmendingModuleMethod.txt +0 -116
  265. package/test/corpus/snippetTests/basic/newInsideIf.txt +0 -841
  266. package/test/corpus/snippetTests/basic/newInsideLet.txt +0 -869
  267. package/test/corpus/snippetTests/basic/newType.txt +0 -686
  268. package/test/corpus/snippetTests/basic/nonNull.txt +0 -131
  269. package/test/corpus/snippetTests/basic/nullable.txt +0 -239
  270. package/test/corpus/snippetTests/basic/objectMember.txt +0 -129
  271. package/test/corpus/snippetTests/basic/objectMemberInvalid.txt +0 -18
  272. package/test/corpus/snippetTests/basic/objectMemberInvalid2.txt +0 -18
  273. package/test/corpus/snippetTests/basic/objectMemberInvalid3.txt +0 -22
  274. package/test/corpus/snippetTests/basic/parens.txt +0 -59
  275. package/test/corpus/snippetTests/basic/propertyDefaults.txt +0 -126
  276. package/test/corpus/snippetTests/basic/read.txt +0 -250
  277. package/test/corpus/snippetTests/basic/readGlob.txt +0 -209
  278. package/test/corpus/snippetTests/basic/semicolon.txt +0 -18
  279. package/test/corpus/snippetTests/basic/set.txt +0 -340
  280. package/test/corpus/snippetTests/basic/trace.txt +0 -130
  281. package/test/corpus/snippetTests/basic/typeResolution1.txt +0 -31
  282. package/test/corpus/snippetTests/basic/typeResolution2.txt +0 -37
  283. package/test/corpus/snippetTests/basic/typeResolution3.txt +0 -63
  284. package/test/corpus/snippetTests/basic/typeResolution4.txt +0 -61
  285. package/test/corpus/snippetTests/basic/underscore.txt +0 -419
  286. package/test/corpus/snippetTests/classes/class1.txt +0 -54
  287. package/test/corpus/snippetTests/classes/class2.txt +0 -123
  288. package/test/corpus/snippetTests/classes/class2a.txt +0 -110
  289. package/test/corpus/snippetTests/classes/class3.txt +0 -65
  290. package/test/corpus/snippetTests/classes/class4.txt +0 -58
  291. package/test/corpus/snippetTests/classes/class5.txt +0 -131
  292. package/test/corpus/snippetTests/classes/constraints1.txt +0 -141
  293. package/test/corpus/snippetTests/classes/constraints11.txt +0 -201
  294. package/test/corpus/snippetTests/classes/constraints12.txt +0 -204
  295. package/test/corpus/snippetTests/classes/constraints13.txt +0 -86
  296. package/test/corpus/snippetTests/classes/constraints14.txt +0 -39
  297. package/test/corpus/snippetTests/classes/constraints15.txt +0 -26
  298. package/test/corpus/snippetTests/classes/constraints2.txt +0 -69
  299. package/test/corpus/snippetTests/classes/constraints3.txt +0 -97
  300. package/test/corpus/snippetTests/classes/constraints4.txt +0 -86
  301. package/test/corpus/snippetTests/classes/constraints5.txt +0 -71
  302. package/test/corpus/snippetTests/classes/constraints6.txt +0 -85
  303. package/test/corpus/snippetTests/classes/constraints7.txt +0 -148
  304. package/test/corpus/snippetTests/classes/constraints8.txt +0 -103
  305. package/test/corpus/snippetTests/classes/constraints9.txt +0 -92
  306. package/test/corpus/snippetTests/classes/constraintsLambdaThis.txt +0 -216
  307. package/test/corpus/snippetTests/classes/equality.txt +0 -123
  308. package/test/corpus/snippetTests/classes/externalClass.txt +0 -12
  309. package/test/corpus/snippetTests/classes/externalFunction.txt +0 -18
  310. package/test/corpus/snippetTests/classes/externalProperty.txt +0 -20
  311. package/test/corpus/snippetTests/classes/functions1.txt +0 -77
  312. package/test/corpus/snippetTests/classes/functions2.txt +0 -56
  313. package/test/corpus/snippetTests/classes/functions3.txt +0 -81
  314. package/test/corpus/snippetTests/classes/functions4.txt +0 -125
  315. package/test/corpus/snippetTests/classes/functions5.txt +0 -141
  316. package/test/corpus/snippetTests/classes/inheritance1.txt +0 -98
  317. package/test/corpus/snippetTests/classes/inheritance2.txt +0 -91
  318. package/test/corpus/snippetTests/classes/invalidInstantiation1.txt +0 -16
  319. package/test/corpus/snippetTests/classes/invalidInstantiation2.txt +0 -21
  320. package/test/corpus/snippetTests/classes/lambdaConstraints1.txt +0 -190
  321. package/test/corpus/snippetTests/classes/listConstraints1.txt +0 -312
  322. package/test/corpus/snippetTests/classes/mapConstraints1.txt +0 -495
  323. package/test/corpus/snippetTests/classes/nullableTypes.txt +0 -187
  324. package/test/corpus/snippetTests/classes/setConstraints1.txt +0 -312
  325. package/test/corpus/snippetTests/classes/supercalls.txt +0 -317
  326. package/test/corpus/snippetTests/classes/unionTypes.txt +0 -543
  327. package/test/corpus/snippetTests/classes/unionTypesErrorAlias.txt +0 -93
  328. package/test/corpus/snippetTests/classes/unionTypesErrorDifferent1.txt +0 -47
  329. package/test/corpus/snippetTests/classes/unionTypesErrorDifferent2.txt +0 -52
  330. package/test/corpus/snippetTests/classes/unionTypesErrorMultipleAliases.txt +0 -36
  331. package/test/corpus/snippetTests/classes/unionTypesErrorNested.txt +0 -99
  332. package/test/corpus/snippetTests/classes/unionTypesErrorSimple.txt +0 -42
  333. package/test/corpus/snippetTests/classes/unionTypesErrorString1.txt +0 -43
  334. package/test/corpus/snippetTests/classes/unionTypesErrorString2.txt +0 -85
  335. package/test/corpus/snippetTests/classes/wrongType1.txt +0 -34
  336. package/test/corpus/snippetTests/classes/wrongType2.txt +0 -47
  337. package/test/corpus/snippetTests/classes/wrongType3.txt +0 -71
  338. package/test/corpus/snippetTests/classes/wrongType4.txt +0 -77
  339. package/test/corpus/snippetTests/classes/wrongType6.txt +0 -43
  340. package/test/corpus/snippetTests/errors/abstractOpenMember.txt +0 -13
  341. package/test/corpus/snippetTests/errors/analyzeImportsCannotFindModule.txt +0 -41
  342. package/test/corpus/snippetTests/errors/analyzeImportsInvalidGlob.txt +0 -41
  343. package/test/corpus/snippetTests/errors/analyzeInvalidHttpModule.txt +0 -26
  344. package/test/corpus/snippetTests/errors/analyzeInvalidModuleUri.txt +0 -26
  345. package/test/corpus/snippetTests/errors/analyzeRelativeModuleUri.txt +0 -26
  346. package/test/corpus/snippetTests/errors/anyConverterError.txt +0 -56
  347. package/test/corpus/snippetTests/errors/baseModule.txt +0 -24
  348. package/test/corpus/snippetTests/errors/cannotAmendFixedProperty1.txt +0 -62
  349. package/test/corpus/snippetTests/errors/cannotAmendFixedProperty2.txt +0 -24
  350. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty1.txt +0 -45
  351. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty2.txt +0 -19
  352. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty3.txt +0 -31
  353. package/test/corpus/snippetTests/errors/cannotAssignToNothing.txt +0 -15
  354. package/test/corpus/snippetTests/errors/cannotChangeFixed1.txt +0 -35
  355. package/test/corpus/snippetTests/errors/cannotChangeFixed2.txt +0 -35
  356. package/test/corpus/snippetTests/errors/cannotFindMapKey.txt +0 -39
  357. package/test/corpus/snippetTests/errors/cannotFindStdLibModule.txt +0 -20
  358. package/test/corpus/snippetTests/errors/cannotInferParent2.txt +0 -14
  359. package/test/corpus/snippetTests/errors/cannotInferParent3.txt +0 -48
  360. package/test/corpus/snippetTests/errors/cannotInstantiateAbstractModule.txt +0 -21
  361. package/test/corpus/snippetTests/errors/cannotRenderMixin.txt +0 -41
  362. package/test/corpus/snippetTests/errors/classExtendsSelf.txt +0 -27
  363. package/test/corpus/snippetTests/errors/constraintDetails1.txt +0 -80
  364. package/test/corpus/snippetTests/errors/constraintDetails2.txt +0 -77
  365. package/test/corpus/snippetTests/errors/constraintDetails3.txt +0 -87
  366. package/test/corpus/snippetTests/errors/duplicateTypeParameter.txt +0 -22
  367. package/test/corpus/snippetTests/errors/extendExternalClass.txt +0 -12
  368. package/test/corpus/snippetTests/errors/extendTypeAlias.txt +0 -33
  369. package/test/corpus/snippetTests/errors/forGeneratorCannotGenerateMethods.txt +0 -30
  370. package/test/corpus/snippetTests/errors/forGeneratorCannotGenerateProperties.txt +0 -28
  371. package/test/corpus/snippetTests/errors/forGeneratorCannotIterateOverThisValue.txt +0 -21
  372. package/test/corpus/snippetTests/errors/forGeneratorCannotIterateOverTyped.txt +0 -27
  373. package/test/corpus/snippetTests/errors/forGeneratorDuplicateParams1.txt +0 -38
  374. package/test/corpus/snippetTests/errors/fullStackTraces.txt +0 -64
  375. package/test/corpus/snippetTests/errors/fullStackTraces2.txt +0 -56
  376. package/test/corpus/snippetTests/errors/functionNotFoundInClass.txt +0 -35
  377. package/test/corpus/snippetTests/errors/functionNotFoundInModule.txt +0 -25
  378. package/test/corpus/snippetTests/errors/functionNotFoundInScope.txt +0 -38
  379. package/test/corpus/snippetTests/errors/functionNotFoundMaybeLambda.txt +0 -24
  380. package/test/corpus/snippetTests/errors/functionNotFoundMaybeProperty.txt +0 -18
  381. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias1.txt +0 -16
  382. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias2.txt +0 -16
  383. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias3.txt +0 -15
  384. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias4.txt +0 -15
  385. package/test/corpus/snippetTests/errors/invalidClassMethodModifier.txt +0 -29
  386. package/test/corpus/snippetTests/errors/invalidClassModifier.txt +0 -11
  387. package/test/corpus/snippetTests/errors/invalidClassModifier2.txt +0 -12
  388. package/test/corpus/snippetTests/errors/invalidClassPropertyModifier.txt +0 -31
  389. package/test/corpus/snippetTests/errors/invalidGlobImport1.txt +0 -19
  390. package/test/corpus/snippetTests/errors/invalidGlobImport4.txt +0 -19
  391. package/test/corpus/snippetTests/errors/invalidGlobImport5.txt +0 -20
  392. package/test/corpus/snippetTests/errors/invalidGlobImport6.txt +0 -14
  393. package/test/corpus/snippetTests/errors/invalidGlobImport7.txt +0 -21
  394. package/test/corpus/snippetTests/errors/invalidGlobImport8.txt +0 -22
  395. package/test/corpus/snippetTests/errors/invalidGlobRead1.txt +0 -14
  396. package/test/corpus/snippetTests/errors/invalidGlobRead2.txt +0 -14
  397. package/test/corpus/snippetTests/errors/invalidGlobRead3.txt +0 -14
  398. package/test/corpus/snippetTests/errors/invalidImportBackslashSep.txt +0 -14
  399. package/test/corpus/snippetTests/errors/invalidImportUri.txt +0 -19
  400. package/test/corpus/snippetTests/errors/invalidMethodModifier.txt +0 -14
  401. package/test/corpus/snippetTests/errors/invalidModuleModifier.txt +0 -20
  402. package/test/corpus/snippetTests/errors/invalidObjectPropertyModifier.txt +0 -17
  403. package/test/corpus/snippetTests/errors/invalidOutput1.txt +0 -17
  404. package/test/corpus/snippetTests/errors/invalidOutput2.txt +0 -22
  405. package/test/corpus/snippetTests/errors/invalidOutput3.txt +0 -12
  406. package/test/corpus/snippetTests/errors/invalidPropertyModifier.txt +0 -16
  407. package/test/corpus/snippetTests/errors/invalidTripleDotSyntax1.txt +0 -11
  408. package/test/corpus/snippetTests/errors/invalidTripleDotSyntax2.txt +0 -11
  409. package/test/corpus/snippetTests/errors/invalidTypeAliasModifier.txt +0 -14
  410. package/test/corpus/snippetTests/errors/invalidTypeName1.txt +0 -24
  411. package/test/corpus/snippetTests/errors/invalidTypeName2.txt +0 -31
  412. package/test/corpus/snippetTests/errors/invalidTypeName3.txt +0 -19
  413. package/test/corpus/snippetTests/errors/invalidTypeName4.txt +0 -24
  414. package/test/corpus/snippetTests/errors/letExpressionError1.txt +0 -24
  415. package/test/corpus/snippetTests/errors/letExpressionError2.txt +0 -27
  416. package/test/corpus/snippetTests/errors/letExpressionErrorTyped.txt +0 -27
  417. package/test/corpus/snippetTests/errors/listingTypeCheckError1.txt +0 -24
  418. package/test/corpus/snippetTests/errors/listingTypeCheckError2.txt +0 -30
  419. package/test/corpus/snippetTests/errors/listingTypeCheckError3.txt +0 -36
  420. package/test/corpus/snippetTests/errors/listingTypeCheckError4.txt +0 -43
  421. package/test/corpus/snippetTests/errors/listingTypeCheckError5.txt +0 -40
  422. package/test/corpus/snippetTests/errors/listingTypeCheckError6.txt +0 -58
  423. package/test/corpus/snippetTests/errors/listingTypeCheckError7.txt +0 -42
  424. package/test/corpus/snippetTests/errors/listingTypeCheckError8.txt +0 -84
  425. package/test/corpus/snippetTests/errors/listingTypeCheckError9.txt +0 -97
  426. package/test/corpus/snippetTests/errors/localFixedMember.txt +0 -19
  427. package/test/corpus/snippetTests/errors/localFunctionWithTypeParameter.txt +0 -18
  428. package/test/corpus/snippetTests/errors/localHiddenMember.txt +0 -17
  429. package/test/corpus/snippetTests/errors/mappingTypeCheckError1.txt +0 -29
  430. package/test/corpus/snippetTests/errors/mappingTypeCheckError10.txt +0 -49
  431. package/test/corpus/snippetTests/errors/mappingTypeCheckError11.txt +0 -106
  432. package/test/corpus/snippetTests/errors/mappingTypeCheckError2.txt +0 -30
  433. package/test/corpus/snippetTests/errors/mappingTypeCheckError3.txt +0 -30
  434. package/test/corpus/snippetTests/errors/mappingTypeCheckError4.txt +0 -36
  435. package/test/corpus/snippetTests/errors/mappingTypeCheckError5.txt +0 -41
  436. package/test/corpus/snippetTests/errors/mappingTypeCheckError6.txt +0 -75
  437. package/test/corpus/snippetTests/errors/mappingTypeCheckError7.txt +0 -45
  438. package/test/corpus/snippetTests/errors/mappingTypeCheckError8.txt +0 -33
  439. package/test/corpus/snippetTests/errors/mappingTypeCheckError9.txt +0 -69
  440. package/test/corpus/snippetTests/errors/missingLocalPropertyValue1.txt +0 -15
  441. package/test/corpus/snippetTests/errors/missingLocalPropertyValue2.txt +0 -22
  442. package/test/corpus/snippetTests/errors/moduleAmendsSelf.txt +0 -13
  443. package/test/corpus/snippetTests/errors/moduleAmendsVersionCheck.txt +0 -13
  444. package/test/corpus/snippetTests/errors/moduleAmendsVersionCheck2.txt +0 -22
  445. package/test/corpus/snippetTests/errors/moduleExpected.txt +0 -43
  446. package/test/corpus/snippetTests/errors/moduleExtendsSelf.txt +0 -20
  447. package/test/corpus/snippetTests/errors/moduleExtendsVersionCheck.txt +0 -13
  448. package/test/corpus/snippetTests/errors/moduleExtendsVersionCheck2.txt +0 -22
  449. package/test/corpus/snippetTests/errors/moduleImportVersionCheck.txt +0 -20
  450. package/test/corpus/snippetTests/errors/moduleWithHighMinPklVersion.txt +0 -29
  451. package/test/corpus/snippetTests/errors/noDefault.txt +0 -23
  452. package/test/corpus/snippetTests/errors/noDefault2.txt +0 -31
  453. package/test/corpus/snippetTests/errors/objectCannotHaveElement.txt +0 -72
  454. package/test/corpus/snippetTests/errors/objectCannotHaveElement2.txt +0 -98
  455. package/test/corpus/snippetTests/errors/objectCannotHavePredicateMember.txt +0 -25
  456. package/test/corpus/snippetTests/errors/outOfRange1.txt +0 -14
  457. package/test/corpus/snippetTests/errors/outOfRange2.txt +0 -17
  458. package/test/corpus/snippetTests/errors/outOfRange3.txt +0 -21
  459. package/test/corpus/snippetTests/errors/propertyNotFound1.txt +0 -32
  460. package/test/corpus/snippetTests/errors/propertyNotFound2.txt +0 -18
  461. package/test/corpus/snippetTests/errors/refusingToLoadModule.txt +0 -18
  462. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveElement.txt +0 -38
  463. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveEntry.txt +0 -34
  464. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveProperty.txt +0 -34
  465. package/test/corpus/snippetTests/errors/spreadSyntaxCannotIterateOverTyped.txt +0 -44
  466. package/test/corpus/snippetTests/errors/spreadSyntaxCannotSpreadListIntoMapping.txt +0 -37
  467. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateEntry1.txt +0 -39
  468. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateEntry2.txt +0 -39
  469. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateProperty1.txt +0 -32
  470. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateProperty2.txt +0 -32
  471. package/test/corpus/snippetTests/errors/spreadSyntaxNullValue.txt +0 -20
  472. package/test/corpus/snippetTests/errors/spreadSyntaxUnknownTypedProperty.txt +0 -47
  473. package/test/corpus/snippetTests/errors/stackTraceWithQuotedMemberName.txt +0 -23
  474. package/test/corpus/snippetTests/errors/supercalls.txt +0 -18
  475. package/test/corpus/snippetTests/errors/typeMismatchHelper.txt +0 -19
  476. package/test/corpus/snippetTests/errors/typeMismatchWithSameQualifiedClassName.txt +0 -38
  477. package/test/corpus/snippetTests/errors/typeMismatchWithSameQualifiedModuleName.txt +0 -28
  478. package/test/corpus/snippetTests/errors/undefinedOp1.txt +0 -12
  479. package/test/corpus/snippetTests/errors/undefinedOp2.txt +0 -14
  480. package/test/corpus/snippetTests/errors/undefinedOp3.txt +0 -24
  481. package/test/corpus/snippetTests/errors/undefinedProperty1.txt +0 -28
  482. package/test/corpus/snippetTests/errors/undefinedProperty2.txt +0 -15
  483. package/test/corpus/snippetTests/errors/undefinedProperty3.txt +0 -95
  484. package/test/corpus/snippetTests/errors/undefinedProperty4.txt +0 -141
  485. package/test/corpus/snippetTests/errors/undefinedProperty5.txt +0 -160
  486. package/test/corpus/snippetTests/errors/undefinedProperty6.txt +0 -40
  487. package/test/corpus/snippetTests/errors/undefinedProperty7.txt +0 -35
  488. package/test/corpus/snippetTests/errors/undefinedProperty8.txt +0 -34
  489. package/test/corpus/snippetTests/errors/underscoreLambda.txt +0 -37
  490. package/test/corpus/snippetTests/errors/underscoreLet.txt +0 -17
  491. package/test/corpus/snippetTests/errors/userDefinedTypeParameter1.txt +0 -22
  492. package/test/corpus/snippetTests/errors/userDefinedTypeParameter2.txt +0 -32
  493. package/test/corpus/snippetTests/errors/wrongForGeneratorType1.txt +0 -35
  494. package/test/corpus/snippetTests/errors/wrongForGeneratorType2.txt +0 -37
  495. package/test/corpus/snippetTests/errors/wrongNumberOfMapArguments.txt +0 -16
  496. package/test/corpus/snippetTests/generators/duplicateDefinition1.txt +0 -23
  497. package/test/corpus/snippetTests/generators/duplicateDefinition2.txt +0 -30
  498. package/test/corpus/snippetTests/generators/duplicateDefinition3.txt +0 -26
  499. package/test/corpus/snippetTests/generators/elementGenerators.txt +0 -2628
  500. package/test/corpus/snippetTests/generators/elementGeneratorsTyped.txt +0 -1593
  501. package/test/corpus/snippetTests/generators/entryGenerators.txt +0 -3013
  502. package/test/corpus/snippetTests/generators/entryGeneratorsTyped.txt +0 -1858
  503. package/test/corpus/snippetTests/generators/forGeneratorInMixins.txt +0 -301
  504. package/test/corpus/snippetTests/generators/forGeneratorLexicalScope.txt +0 -199
  505. package/test/corpus/snippetTests/generators/forGeneratorNestedReference.txt +0 -277
  506. package/test/corpus/snippetTests/generators/forGeneratorNestedReference2.txt +0 -98
  507. package/test/corpus/snippetTests/generators/forGeneratorVariableShadowing.txt +0 -177
  508. package/test/corpus/snippetTests/generators/generatorNoMembers.txt +0 -157
  509. package/test/corpus/snippetTests/generators/predicateMembersDynamicListing.txt +0 -461
  510. package/test/corpus/snippetTests/generators/predicateMembersDynamicMapping.txt +0 -473
  511. package/test/corpus/snippetTests/generators/predicateMembersListing.txt +0 -463
  512. package/test/corpus/snippetTests/generators/predicateMembersMapping.txt +0 -474
  513. package/test/corpus/snippetTests/generators/predicateMembersThis.txt +0 -82
  514. package/test/corpus/snippetTests/generators/propertyGenerators.txt +0 -104
  515. package/test/corpus/snippetTests/generators/spreadSyntaxDynamic.txt +0 -411
  516. package/test/corpus/snippetTests/generators/spreadSyntaxListing.txt +0 -496
  517. package/test/corpus/snippetTests/generators/spreadSyntaxMapping.txt +0 -655
  518. package/test/corpus/snippetTests/generators/spreadSyntaxNoSpace.txt +0 -32
  519. package/test/corpus/snippetTests/generators/spreadSyntaxNullable.txt +0 -37
  520. package/test/corpus/snippetTests/generators/spreadSyntaxTyped.txt +0 -59
  521. package/test/corpus/snippetTests/implementation/equality.txt +0 -198
  522. package/test/corpus/snippetTests/implementation/inequality.txt +0 -198
  523. package/test/corpus/snippetTests/internal/polymorphicCallSite.txt +0 -499
  524. package/test/corpus/snippetTests/lambdas/amendLambdaDef.txt +0 -310
  525. package/test/corpus/snippetTests/lambdas/amendLambdaExpr.txt +0 -325
  526. package/test/corpus/snippetTests/lambdas/amendLambdaExternalClassError.txt +0 -45
  527. package/test/corpus/snippetTests/lambdas/amendLambdaParameters.txt +0 -155
  528. package/test/corpus/snippetTests/lambdas/amendLambdaParametersTyped.txt +0 -420
  529. package/test/corpus/snippetTests/lambdas/amendLambdaThatReturnsAnotherLambda.txt +0 -380
  530. package/test/corpus/snippetTests/lambdas/amendLambdaTooFewArgsError.txt +0 -60
  531. package/test/corpus/snippetTests/lambdas/amendLambdaTooManyArgsError.txt +0 -62
  532. package/test/corpus/snippetTests/lambdas/equality.txt +0 -62
  533. package/test/corpus/snippetTests/lambdas/inequality.txt +0 -62
  534. package/test/corpus/snippetTests/lambdas/lambda1.txt +0 -85
  535. package/test/corpus/snippetTests/lambdas/lambda2.txt +0 -78
  536. package/test/corpus/snippetTests/lambdas/lambda3.txt +0 -381
  537. package/test/corpus/snippetTests/lambdas/lambda4.txt +0 -147
  538. package/test/corpus/snippetTests/lambdas/lambda5.txt +0 -307
  539. package/test/corpus/snippetTests/lambdas/lambdaStackTrace1.txt +0 -35
  540. package/test/corpus/snippetTests/lambdas/lambdaStackTrace2.txt +0 -37
  541. package/test/corpus/snippetTests/lambdas/lambdaStackTrace3.txt +0 -33
  542. package/test/corpus/snippetTests/lambdas/pipeOperator.txt +0 -189
  543. package/test/corpus/snippetTests/lambdas/tooManyLambdaParams.txt +0 -27
  544. package/test/corpus/snippetTests/lambdas/typedLambdas.txt +0 -278
  545. package/test/corpus/snippetTests/lambdas/wrongArgumentListLength.txt +0 -37
  546. package/test/corpus/snippetTests/listings/cacheStealing.txt +0 -56
  547. package/test/corpus/snippetTests/listings/cacheStealingTypeCheck.txt +0 -27
  548. package/test/corpus/snippetTests/listings/default.txt +0 -133
  549. package/test/corpus/snippetTests/listings/equality.txt +0 -341
  550. package/test/corpus/snippetTests/listings/hashCode.txt +0 -438
  551. package/test/corpus/snippetTests/listings/inequality.txt +0 -173
  552. package/test/corpus/snippetTests/listings/listing1.txt +0 -360
  553. package/test/corpus/snippetTests/listings/listing2.txt +0 -755
  554. package/test/corpus/snippetTests/listings/listing3.txt +0 -490
  555. package/test/corpus/snippetTests/listings/listing4.txt +0 -156
  556. package/test/corpus/snippetTests/listings/listing6.txt +0 -208
  557. package/test/corpus/snippetTests/listings/listing7.txt +0 -71
  558. package/test/corpus/snippetTests/listings/typeCheck.txt +0 -2506
  559. package/test/corpus/snippetTests/listings/wrongIndex.txt +0 -121
  560. package/test/corpus/snippetTests/listings/wrongParent.txt +0 -253
  561. package/test/corpus/snippetTests/listings2/default.txt +0 -157
  562. package/test/corpus/snippetTests/listings2/equality.txt +0 -358
  563. package/test/corpus/snippetTests/listings2/inequality.txt +0 -227
  564. package/test/corpus/snippetTests/listings2/listing1.txt +0 -372
  565. package/test/corpus/snippetTests/listings2/listing2.txt +0 -904
  566. package/test/corpus/snippetTests/listings2/listing3.txt +0 -568
  567. package/test/corpus/snippetTests/listings2/typeCheck.txt +0 -336
  568. package/test/corpus/snippetTests/listings2/wrongIndex.txt +0 -151
  569. package/test/corpus/snippetTests/listings2/wrongParent.txt +0 -313
  570. package/test/corpus/snippetTests/mappings/default.txt +0 -174
  571. package/test/corpus/snippetTests/mappings/duplicateComputedKey.txt +0 -85
  572. package/test/corpus/snippetTests/mappings/duplicateConstantKey.txt +0 -32
  573. package/test/corpus/snippetTests/mappings/equality.txt +0 -383
  574. package/test/corpus/snippetTests/mappings/hashCode.txt +0 -461
  575. package/test/corpus/snippetTests/mappings/inequality.txt +0 -198
  576. package/test/corpus/snippetTests/mappings/mapping1.txt +0 -590
  577. package/test/corpus/snippetTests/mappings/mapping2.txt +0 -491
  578. package/test/corpus/snippetTests/mappings/stringKeyNotFound.txt +0 -50
  579. package/test/corpus/snippetTests/mappings/typeCheck.txt +0 -2877
  580. package/test/corpus/snippetTests/mappings/wrongParent.txt +0 -262
  581. package/test/corpus/snippetTests/mappings2/default.txt +0 -195
  582. package/test/corpus/snippetTests/mappings2/duplicateComputedKey.txt +0 -99
  583. package/test/corpus/snippetTests/mappings2/duplicateConstantKey.txt +0 -39
  584. package/test/corpus/snippetTests/mappings2/equality.txt +0 -416
  585. package/test/corpus/snippetTests/mappings2/inequality.txt +0 -268
  586. package/test/corpus/snippetTests/mappings2/mapping1.txt +0 -604
  587. package/test/corpus/snippetTests/mappings2/mapping2.txt +0 -595
  588. package/test/corpus/snippetTests/mappings2/stringKeyNotFound.txt +0 -57
  589. package/test/corpus/snippetTests/mappings2/typeCheck.txt +0 -582
  590. package/test/corpus/snippetTests/mappings2/wrongParent.txt +0 -334
  591. package/test/corpus/snippetTests/methods/methodParameterConstraints1.txt +0 -220
  592. package/test/corpus/snippetTests/methods/methodParameterConstraints2.txt +0 -382
  593. package/test/corpus/snippetTests/methods/methodParameterTypes2.txt +0 -734
  594. package/test/corpus/snippetTests/methods/methodParameterTypes3.txt +0 -196
  595. package/test/corpus/snippetTests/modules/amendModule1.txt +0 -36
  596. package/test/corpus/snippetTests/modules/amendModule2.txt +0 -28
  597. package/test/corpus/snippetTests/modules/amendModule3.txt +0 -24
  598. package/test/corpus/snippetTests/modules/amendModule4.txt +0 -35
  599. package/test/corpus/snippetTests/modules/amendModule5.txt +0 -68
  600. package/test/corpus/snippetTests/modules/amendModule6.txt +0 -13
  601. package/test/corpus/snippetTests/modules/equality.txt +0 -91
  602. package/test/corpus/snippetTests/modules/extendModule1.txt +0 -80
  603. package/test/corpus/snippetTests/modules/externalFunction.txt +0 -14
  604. package/test/corpus/snippetTests/modules/externalProperty.txt +0 -16
  605. package/test/corpus/snippetTests/modules/filename with spaces 2.txt +0 -14
  606. package/test/corpus/snippetTests/modules/filename with spaces.txt +0 -13
  607. package/test/corpus/snippetTests/modules/functions.txt +0 -264
  608. package/test/corpus/snippetTests/modules/invalidAmend1.txt +0 -18
  609. package/test/corpus/snippetTests/modules/invalidAmend2.txt +0 -19
  610. package/test/corpus/snippetTests/modules/invalidAmend3.txt +0 -23
  611. package/test/corpus/snippetTests/modules/invalidAmend4.txt +0 -21
  612. package/test/corpus/snippetTests/modules/invalidAmend5.txt +0 -17
  613. package/test/corpus/snippetTests/modules/invalidAmend6.txt +0 -22
  614. package/test/corpus/snippetTests/modules/invalidExtend1.txt +0 -18
  615. package/test/corpus/snippetTests/modules/invalidExtend2.txt +0 -13
  616. package/test/corpus/snippetTests/modules/invalidExtend3.txt +0 -13
  617. package/test/corpus/snippetTests/modules/library.txt +0 -77
  618. package/test/corpus/snippetTests/modules/lists.txt +0 -26
  619. package/test/corpus/snippetTests/modules/objects.txt +0 -22
  620. package/test/corpus/snippetTests/modules/recursiveModule1.txt +0 -51
  621. package/test/corpus/snippetTests/modules/recursiveModule2.txt +0 -26
  622. package/test/corpus/snippetTests/modules/supercalls1.txt +0 -43
  623. package/test/corpus/snippetTests/modules/supercalls2.txt +0 -76
  624. package/test/corpus/snippetTests/modules/supercalls3.txt +0 -142
  625. package/test/corpus/snippetTests/modules/typedModuleMethods1.txt +0 -229
  626. package/test/corpus/snippetTests/modules/typedModuleProperties1.txt +0 -106
  627. package/test/corpus/snippetTests/modules/typedModuleProperties2.txt +0 -16
  628. package/test/corpus/snippetTests/modules/typedModuleProperties3.txt +0 -20
  629. package/test/corpus/snippetTests/modules//346/227/245/346/234/254/350/252/236.txt +0 -45
  630. package/test/corpus/snippetTests/modules//346/227/245/346/234/254/350/252/236_error.txt +0 -14
  631. package/test/corpus/snippetTests/objects/closure.txt +0 -143
  632. package/test/corpus/snippetTests/objects/configureObjectAssign.txt +0 -78
  633. package/test/corpus/snippetTests/objects/equality.txt +0 -989
  634. package/test/corpus/snippetTests/objects/hashCode.txt +0 -566
  635. package/test/corpus/snippetTests/objects/implicitReceiver1.txt +0 -37
  636. package/test/corpus/snippetTests/objects/implicitReceiver2.txt +0 -33
  637. package/test/corpus/snippetTests/objects/implicitReceiver3.txt +0 -29
  638. package/test/corpus/snippetTests/objects/implicitReceiver4.txt +0 -25
  639. package/test/corpus/snippetTests/objects/inequality.txt +0 -777
  640. package/test/corpus/snippetTests/objects/lateBinding1.txt +0 -60
  641. package/test/corpus/snippetTests/objects/lateBinding2.txt +0 -60
  642. package/test/corpus/snippetTests/objects/lateBinding3.txt +0 -81
  643. package/test/corpus/snippetTests/objects/lateBinding4.txt +0 -77
  644. package/test/corpus/snippetTests/objects/outer.txt +0 -91
  645. package/test/corpus/snippetTests/objects/outer2.txt +0 -28
  646. package/test/corpus/snippetTests/objects/super1.txt +0 -67
  647. package/test/corpus/snippetTests/objects/super2.txt +0 -59
  648. package/test/corpus/snippetTests/objects/super3.txt +0 -59
  649. package/test/corpus/snippetTests/objects/super4.txt +0 -66
  650. package/test/corpus/snippetTests/objects/super5.txt +0 -69
  651. package/test/corpus/snippetTests/objects/this1.txt +0 -24
  652. package/test/corpus/snippetTests/objects/this2.txt +0 -71
  653. package/test/corpus/snippetTests/packages/badImport1.error.txt +0 -14
  654. package/test/corpus/snippetTests/packages/badImport10.error.txt +0 -14
  655. package/test/corpus/snippetTests/packages/badImport11.error.txt +0 -14
  656. package/test/corpus/snippetTests/packages/badImport2.error.txt +0 -14
  657. package/test/corpus/snippetTests/packages/badImport3.error.txt +0 -14
  658. package/test/corpus/snippetTests/packages/badImport4.error.txt +0 -14
  659. package/test/corpus/snippetTests/packages/badImport6.error.txt +0 -20
  660. package/test/corpus/snippetTests/packages/badImport7.error.txt +0 -14
  661. package/test/corpus/snippetTests/packages/badImport8.error.txt +0 -14
  662. package/test/corpus/snippetTests/packages/badImport9.error.txt +0 -14
  663. package/test/corpus/snippetTests/packages/badRead1.error.txt +0 -14
  664. package/test/corpus/snippetTests/packages/badRead2.error.txt +0 -14
  665. package/test/corpus/snippetTests/packages/badRead3.error.txt +0 -14
  666. package/test/corpus/snippetTests/packages/badRead4.error.txt +0 -14
  667. package/test/corpus/snippetTests/packages/badRead8.error.txt +0 -14
  668. package/test/corpus/snippetTests/packages/badRead9.error.txt +0 -14
  669. package/test/corpus/snippetTests/packages/packages1.txt +0 -103
  670. package/test/corpus/snippetTests/packages/packages2.txt +0 -104
  671. package/test/corpus/snippetTests/packages/redirects.txt +0 -54
  672. package/test/corpus/snippetTests/types/ThisInTypeConstraint.txt +0 -342
  673. package/test/corpus/snippetTests/types/currentModuleType1.txt +0 -343
  674. package/test/corpus/snippetTests/types/currentModuleType2.txt +0 -351
  675. package/test/corpus/snippetTests/types/currentModuleType3.txt +0 -18
  676. package/test/corpus/snippetTests/types/cyclicTypeAlias1.txt +0 -17
  677. package/test/corpus/snippetTests/types/cyclicTypeAlias2.txt +0 -42
  678. package/test/corpus/snippetTests/types/modifiersForTypes.txt +0 -68
  679. package/test/corpus/snippetTests/types/moduleType.txt +0 -58
  680. package/test/corpus/snippetTests/types/nothingType.txt +0 -29
  681. package/test/corpus/snippetTests/types/nothingWithUnions.txt +0 -31
  682. package/test/corpus/snippetTests/types/typeAlias1.txt +0 -925
  683. package/test/corpus/snippetTests/types/typeAlias2.txt +0 -361
  684. package/test/corpus/snippetTests/types/typeAliasConstraint1.txt +0 -79
  685. package/test/corpus/snippetTests/types/typeAliasConstraint2.txt +0 -77
  686. package/test/corpus/snippetTests/types/typeAliasContext.txt +0 -26
  687. package/test/corpus/snippetTests/types/typeAliasUnion.txt +0 -169
  688. package/test/corpus/string/customStringDelimiters.txt +0 -397
  689. package/test/corpus/string/multiline.txt +0 -39
  690. package/test/corpus/string/multilineInterpolation.txt +0 -102
  691. package/test/corpus/string/multilineInterpolation2.txt +0 -15
  692. package/test/corpus/string/simple.txt +0 -13
  693. package/test/corpus/string/singleLineEscapes.txt +0 -64
  694. package/test/corpus/string/singleLineInterpolation.txt +0 -94
  695. package/test/corpus/string/stringWithTwoSlashes.txt +0 -20
  696. package/test/corpus/type/unionType.txt +0 -34
  697. package/test/corpus/type/unionTypeDefaults.txt +0 -46
@@ -1,1593 +0,0 @@
1
- ===
2
- generators/elementGeneratorsTyped.pkl
3
- ===
4
-
5
- import "pkl:test"
6
-
7
- res1 = new Listing {
8
- for (n: Int in IntSeq(1, 5)) {
9
- when (n.isOdd) {
10
- n * 2
11
- }
12
- }
13
- }
14
-
15
- res1b = test.catch(() -> new Listing {
16
- for (n: String in IntSeq(1, 5)) {
17
- when (n.isOdd) {
18
- n * 2
19
- }
20
- }
21
- })
22
-
23
- res1c = new Listing {
24
- for (i: Int, n: Int in IntSeq(1, 5)) {
25
- when (n.isOdd) {
26
- i * n
27
- }
28
- }
29
- }
30
-
31
- res1d = test.catch(() -> new Listing {
32
- for (i: String, n: Int in IntSeq(1, 5)) {
33
- when (n.isOdd) {
34
- n * 2
35
- }
36
- }
37
- })
38
-
39
- res2 = new Dynamic {
40
- for (n: Number in List(1, 2, 3, 4, 5)) {
41
- when (n.isOdd) {
42
- n * 2
43
- }
44
- }
45
- }
46
-
47
- res2b = test.catch(() -> new Dynamic {
48
- for (n: Number in List(1, 2, "other", 4, 5)) {
49
- when (n.isOdd) {
50
- n * 2
51
- }
52
- }
53
- })
54
-
55
- res2c = new Dynamic {
56
- for (i: Number, n: Number in List(1, 2, 3, 4, 5)) {
57
- when (n.isOdd) {
58
- i * n
59
- }
60
- }
61
- }
62
-
63
- res2d = test.catch(() -> new Dynamic {
64
- for (i: Number, n: Number in List(1, 2, "other", 4, 5)) {
65
- when (n.isOdd) {
66
- n * 2
67
- }
68
- }
69
- })
70
-
71
- res6 = new Listing {
72
- for (x: Any in List("a", "b", "c")) {
73
- for (y: String in List("e", "f")) {
74
- x + y
75
- }
76
- }
77
- }
78
-
79
- res6b = test.catch(() -> new Listing {
80
- for (x: Any in List("a", "b", "c")) {
81
- for (y: String in List("e", 42)) {
82
- x + y
83
- }
84
- }
85
- })
86
-
87
- res6c = new Listing {
88
- for (i1: Int, x: Any in List("a", "b", "c")) {
89
- for (i2: Int, y: String in List("e", "f")) {
90
- Pair(i1 + i2, x + y)
91
- }
92
- }
93
- }
94
-
95
- res6d = test.catch(() -> new Listing {
96
- for (i1: Int, x: Any in List("a", "b", "c")) {
97
- for (i2: Int, y: String in List("e", 42)) {
98
- Pair(i1 + i2, x + y)
99
- }
100
- }
101
- })
102
-
103
- res7 = new Dynamic {
104
- "one"
105
- for (n: Int in IntSeq(1, 5)) {
106
- when (n.isOdd) {
107
- n * 2
108
- }
109
- }
110
- "two"
111
- for (x: unknown in List("a", "b", "c")) {
112
- for (y: String in List("e", "f")) {
113
- x + y
114
- }
115
- }
116
- "three"
117
- }
118
-
119
- res7b = test.catch(() -> new Dynamic {
120
- "one"
121
- for (n: Int in IntSeq(1, 5)) {
122
- when (n.isOdd) {
123
- n * 2
124
- }
125
- }
126
- "two"
127
- for (x: unknown in List("a", "b", "c")) {
128
- for (y: String in List(42, "f")) {
129
- x + y
130
- }
131
- }
132
- "three"
133
- })
134
-
135
- res8 = new Listing {
136
- for (n: Int in IntSeq(1, 3)) { n }
137
- for (n: String in List("a", "b", "c")) { n }
138
- for (n: Number in IntSeq(1, 3)) { n }
139
- }
140
-
141
- res8b = test.catch(() -> new Listing {
142
- for (n: Int in IntSeq(1, 3)) { n }
143
- for (n: String in List(42.min, "b", "c")) { n }
144
- for (n: Number in IntSeq(1, 3)) { n }
145
- })
146
-
147
- res8c = new Listing {
148
- for (i: Int, n: Int in IntSeq(1, 3)) { Pair(i, n) }
149
- for (i: Number, n: String in List("a", "b", "c")) { Pair(i, n) }
150
- for (i: Int, n: Number in IntSeq(1, 3)) { Pair(i, n) }
151
- }
152
-
153
- res8d = test.catch(() -> new Listing {
154
- for (i: Int, n: Int in IntSeq(1, 3)) { Pair(i, n) }
155
- for (i: Number, n: String in List(42.min, "b", "c")) { Pair(i, n) }
156
- for (i: Int, n: Number in IntSeq(1, 3)) { Pair(i, n) }
157
- })
158
-
159
- forWithMultipleMembers = new Dynamic {
160
- for (ch: String in List("a", "b", "c")) {
161
- ch
162
- ch + "x"
163
- ch + "y"
164
- }
165
- }
166
-
167
- forWithMultipleMembersNested = new Dynamic {
168
- for (ch: String in List("a", "b")) {
169
- for (k: String, v: Int in Map("x", 1, "y", 2)) {
170
- ch + k + v.toString()
171
- v.toString() + k + ch
172
- }
173
- for (k: String, v: Number in Map("xx", 11, "yy", 22)) {
174
- ch + k + v.toString()
175
- v.toString() + k + ch
176
- }
177
- }
178
- }
179
-
180
- whenWithMultipleMembers = new Dynamic {
181
- for (i: Int, n: Int in new Listing { 1; 2; 3; 4; 5 }) {
182
- when (n.isOdd) {
183
- i * n
184
- i * n * 2
185
- }
186
- }
187
- }
188
-
189
- whenWithMultipleMembersNested = new Listing {
190
- for (i: Int, n: Int in new Listing { 1; 2; 3; 4; 5 }) {
191
- when (n.isOdd) {
192
- when (n > 3) {
193
- i * n
194
- i * n * 2
195
- }
196
- }
197
- }
198
- }
199
-
200
- whenWithElse = new Dynamic {
201
- for (i: Int, n: Int in new Listing { 1; 2; 3; 4; 5 }) {
202
- when (n.isOdd) {
203
- i * n
204
- i * n * 2
205
- } else {
206
- (i * n).toString()
207
- (i * n * 2).toString()
208
- }
209
- }
210
- }
211
-
212
- ---
213
-
214
- (module
215
- (importClause
216
- (stringConstant
217
- (slStringLiteralPart)))
218
- (classProperty
219
- (identifier)
220
- (newExpr
221
- (declaredType
222
- (qualifiedIdentifier
223
- (identifier)))
224
- (objectBody
225
- (forGenerator
226
- (typedIdentifier
227
- (identifier)
228
- (typeAnnotation
229
- (declaredType
230
- (qualifiedIdentifier
231
- (identifier)))))
232
- (unqualifiedAccessExpr
233
- (identifier)
234
- (argumentList
235
- (intLiteralExpr)
236
- (intLiteralExpr)))
237
- (objectBody
238
- (whenGenerator
239
- (qualifiedAccessExpr
240
- (unqualifiedAccessExpr
241
- (identifier))
242
- (identifier))
243
- (objectBody
244
- (objectElement
245
- (multiplicativeExpr
246
- (unqualifiedAccessExpr
247
- (identifier))
248
- (intLiteralExpr))))))))))
249
- (classProperty
250
- (identifier)
251
- (qualifiedAccessExpr
252
- (unqualifiedAccessExpr
253
- (identifier))
254
- (identifier)
255
- (argumentList
256
- (functionLiteralExpr
257
- (parameterList)
258
- (newExpr
259
- (declaredType
260
- (qualifiedIdentifier
261
- (identifier)))
262
- (objectBody
263
- (forGenerator
264
- (typedIdentifier
265
- (identifier)
266
- (typeAnnotation
267
- (declaredType
268
- (qualifiedIdentifier
269
- (identifier)))))
270
- (unqualifiedAccessExpr
271
- (identifier)
272
- (argumentList
273
- (intLiteralExpr)
274
- (intLiteralExpr)))
275
- (objectBody
276
- (whenGenerator
277
- (qualifiedAccessExpr
278
- (unqualifiedAccessExpr
279
- (identifier))
280
- (identifier))
281
- (objectBody
282
- (objectElement
283
- (multiplicativeExpr
284
- (unqualifiedAccessExpr
285
- (identifier))
286
- (intLiteralExpr)))))))))))))
287
- (classProperty
288
- (identifier)
289
- (newExpr
290
- (declaredType
291
- (qualifiedIdentifier
292
- (identifier)))
293
- (objectBody
294
- (forGenerator
295
- (typedIdentifier
296
- (identifier)
297
- (typeAnnotation
298
- (declaredType
299
- (qualifiedIdentifier
300
- (identifier)))))
301
- (typedIdentifier
302
- (identifier)
303
- (typeAnnotation
304
- (declaredType
305
- (qualifiedIdentifier
306
- (identifier)))))
307
- (unqualifiedAccessExpr
308
- (identifier)
309
- (argumentList
310
- (intLiteralExpr)
311
- (intLiteralExpr)))
312
- (objectBody
313
- (whenGenerator
314
- (qualifiedAccessExpr
315
- (unqualifiedAccessExpr
316
- (identifier))
317
- (identifier))
318
- (objectBody
319
- (objectElement
320
- (multiplicativeExpr
321
- (unqualifiedAccessExpr
322
- (identifier))
323
- (unqualifiedAccessExpr
324
- (identifier)))))))))))
325
- (classProperty
326
- (identifier)
327
- (qualifiedAccessExpr
328
- (unqualifiedAccessExpr
329
- (identifier))
330
- (identifier)
331
- (argumentList
332
- (functionLiteralExpr
333
- (parameterList)
334
- (newExpr
335
- (declaredType
336
- (qualifiedIdentifier
337
- (identifier)))
338
- (objectBody
339
- (forGenerator
340
- (typedIdentifier
341
- (identifier)
342
- (typeAnnotation
343
- (declaredType
344
- (qualifiedIdentifier
345
- (identifier)))))
346
- (typedIdentifier
347
- (identifier)
348
- (typeAnnotation
349
- (declaredType
350
- (qualifiedIdentifier
351
- (identifier)))))
352
- (unqualifiedAccessExpr
353
- (identifier)
354
- (argumentList
355
- (intLiteralExpr)
356
- (intLiteralExpr)))
357
- (objectBody
358
- (whenGenerator
359
- (qualifiedAccessExpr
360
- (unqualifiedAccessExpr
361
- (identifier))
362
- (identifier))
363
- (objectBody
364
- (objectElement
365
- (multiplicativeExpr
366
- (unqualifiedAccessExpr
367
- (identifier))
368
- (intLiteralExpr)))))))))))))
369
- (classProperty
370
- (identifier)
371
- (newExpr
372
- (declaredType
373
- (qualifiedIdentifier
374
- (identifier)))
375
- (objectBody
376
- (forGenerator
377
- (typedIdentifier
378
- (identifier)
379
- (typeAnnotation
380
- (declaredType
381
- (qualifiedIdentifier
382
- (identifier)))))
383
- (unqualifiedAccessExpr
384
- (identifier)
385
- (argumentList
386
- (intLiteralExpr)
387
- (intLiteralExpr)
388
- (intLiteralExpr)
389
- (intLiteralExpr)
390
- (intLiteralExpr)))
391
- (objectBody
392
- (whenGenerator
393
- (qualifiedAccessExpr
394
- (unqualifiedAccessExpr
395
- (identifier))
396
- (identifier))
397
- (objectBody
398
- (objectElement
399
- (multiplicativeExpr
400
- (unqualifiedAccessExpr
401
- (identifier))
402
- (intLiteralExpr))))))))))
403
- (classProperty
404
- (identifier)
405
- (qualifiedAccessExpr
406
- (unqualifiedAccessExpr
407
- (identifier))
408
- (identifier)
409
- (argumentList
410
- (functionLiteralExpr
411
- (parameterList)
412
- (newExpr
413
- (declaredType
414
- (qualifiedIdentifier
415
- (identifier)))
416
- (objectBody
417
- (forGenerator
418
- (typedIdentifier
419
- (identifier)
420
- (typeAnnotation
421
- (declaredType
422
- (qualifiedIdentifier
423
- (identifier)))))
424
- (unqualifiedAccessExpr
425
- (identifier)
426
- (argumentList
427
- (intLiteralExpr)
428
- (intLiteralExpr)
429
- (slStringLiteralExpr
430
- (slStringLiteralPart))
431
- (intLiteralExpr)
432
- (intLiteralExpr)))
433
- (objectBody
434
- (whenGenerator
435
- (qualifiedAccessExpr
436
- (unqualifiedAccessExpr
437
- (identifier))
438
- (identifier))
439
- (objectBody
440
- (objectElement
441
- (multiplicativeExpr
442
- (unqualifiedAccessExpr
443
- (identifier))
444
- (intLiteralExpr)))))))))))))
445
- (classProperty
446
- (identifier)
447
- (newExpr
448
- (declaredType
449
- (qualifiedIdentifier
450
- (identifier)))
451
- (objectBody
452
- (forGenerator
453
- (typedIdentifier
454
- (identifier)
455
- (typeAnnotation
456
- (declaredType
457
- (qualifiedIdentifier
458
- (identifier)))))
459
- (typedIdentifier
460
- (identifier)
461
- (typeAnnotation
462
- (declaredType
463
- (qualifiedIdentifier
464
- (identifier)))))
465
- (unqualifiedAccessExpr
466
- (identifier)
467
- (argumentList
468
- (intLiteralExpr)
469
- (intLiteralExpr)
470
- (intLiteralExpr)
471
- (intLiteralExpr)
472
- (intLiteralExpr)))
473
- (objectBody
474
- (whenGenerator
475
- (qualifiedAccessExpr
476
- (unqualifiedAccessExpr
477
- (identifier))
478
- (identifier))
479
- (objectBody
480
- (objectElement
481
- (multiplicativeExpr
482
- (unqualifiedAccessExpr
483
- (identifier))
484
- (unqualifiedAccessExpr
485
- (identifier)))))))))))
486
- (classProperty
487
- (identifier)
488
- (qualifiedAccessExpr
489
- (unqualifiedAccessExpr
490
- (identifier))
491
- (identifier)
492
- (argumentList
493
- (functionLiteralExpr
494
- (parameterList)
495
- (newExpr
496
- (declaredType
497
- (qualifiedIdentifier
498
- (identifier)))
499
- (objectBody
500
- (forGenerator
501
- (typedIdentifier
502
- (identifier)
503
- (typeAnnotation
504
- (declaredType
505
- (qualifiedIdentifier
506
- (identifier)))))
507
- (typedIdentifier
508
- (identifier)
509
- (typeAnnotation
510
- (declaredType
511
- (qualifiedIdentifier
512
- (identifier)))))
513
- (unqualifiedAccessExpr
514
- (identifier)
515
- (argumentList
516
- (intLiteralExpr)
517
- (intLiteralExpr)
518
- (slStringLiteralExpr
519
- (slStringLiteralPart))
520
- (intLiteralExpr)
521
- (intLiteralExpr)))
522
- (objectBody
523
- (whenGenerator
524
- (qualifiedAccessExpr
525
- (unqualifiedAccessExpr
526
- (identifier))
527
- (identifier))
528
- (objectBody
529
- (objectElement
530
- (multiplicativeExpr
531
- (unqualifiedAccessExpr
532
- (identifier))
533
- (intLiteralExpr)))))))))))))
534
- (classProperty
535
- (identifier)
536
- (newExpr
537
- (declaredType
538
- (qualifiedIdentifier
539
- (identifier)))
540
- (objectBody
541
- (forGenerator
542
- (typedIdentifier
543
- (identifier)
544
- (typeAnnotation
545
- (declaredType
546
- (qualifiedIdentifier
547
- (identifier)))))
548
- (unqualifiedAccessExpr
549
- (identifier)
550
- (argumentList
551
- (slStringLiteralExpr
552
- (slStringLiteralPart))
553
- (slStringLiteralExpr
554
- (slStringLiteralPart))
555
- (slStringLiteralExpr
556
- (slStringLiteralPart))))
557
- (objectBody
558
- (forGenerator
559
- (typedIdentifier
560
- (identifier)
561
- (typeAnnotation
562
- (declaredType
563
- (qualifiedIdentifier
564
- (identifier)))))
565
- (unqualifiedAccessExpr
566
- (identifier)
567
- (argumentList
568
- (slStringLiteralExpr
569
- (slStringLiteralPart))
570
- (slStringLiteralExpr
571
- (slStringLiteralPart))))
572
- (objectBody
573
- (objectElement
574
- (additiveExpr
575
- (unqualifiedAccessExpr
576
- (identifier))
577
- (unqualifiedAccessExpr
578
- (identifier)))))))))))
579
- (classProperty
580
- (identifier)
581
- (qualifiedAccessExpr
582
- (unqualifiedAccessExpr
583
- (identifier))
584
- (identifier)
585
- (argumentList
586
- (functionLiteralExpr
587
- (parameterList)
588
- (newExpr
589
- (declaredType
590
- (qualifiedIdentifier
591
- (identifier)))
592
- (objectBody
593
- (forGenerator
594
- (typedIdentifier
595
- (identifier)
596
- (typeAnnotation
597
- (declaredType
598
- (qualifiedIdentifier
599
- (identifier)))))
600
- (unqualifiedAccessExpr
601
- (identifier)
602
- (argumentList
603
- (slStringLiteralExpr
604
- (slStringLiteralPart))
605
- (slStringLiteralExpr
606
- (slStringLiteralPart))
607
- (slStringLiteralExpr
608
- (slStringLiteralPart))))
609
- (objectBody
610
- (forGenerator
611
- (typedIdentifier
612
- (identifier)
613
- (typeAnnotation
614
- (declaredType
615
- (qualifiedIdentifier
616
- (identifier)))))
617
- (unqualifiedAccessExpr
618
- (identifier)
619
- (argumentList
620
- (slStringLiteralExpr
621
- (slStringLiteralPart))
622
- (intLiteralExpr)))
623
- (objectBody
624
- (objectElement
625
- (additiveExpr
626
- (unqualifiedAccessExpr
627
- (identifier))
628
- (unqualifiedAccessExpr
629
- (identifier))))))))))))))
630
- (classProperty
631
- (identifier)
632
- (newExpr
633
- (declaredType
634
- (qualifiedIdentifier
635
- (identifier)))
636
- (objectBody
637
- (forGenerator
638
- (typedIdentifier
639
- (identifier)
640
- (typeAnnotation
641
- (declaredType
642
- (qualifiedIdentifier
643
- (identifier)))))
644
- (typedIdentifier
645
- (identifier)
646
- (typeAnnotation
647
- (declaredType
648
- (qualifiedIdentifier
649
- (identifier)))))
650
- (unqualifiedAccessExpr
651
- (identifier)
652
- (argumentList
653
- (slStringLiteralExpr
654
- (slStringLiteralPart))
655
- (slStringLiteralExpr
656
- (slStringLiteralPart))
657
- (slStringLiteralExpr
658
- (slStringLiteralPart))))
659
- (objectBody
660
- (forGenerator
661
- (typedIdentifier
662
- (identifier)
663
- (typeAnnotation
664
- (declaredType
665
- (qualifiedIdentifier
666
- (identifier)))))
667
- (typedIdentifier
668
- (identifier)
669
- (typeAnnotation
670
- (declaredType
671
- (qualifiedIdentifier
672
- (identifier)))))
673
- (unqualifiedAccessExpr
674
- (identifier)
675
- (argumentList
676
- (slStringLiteralExpr
677
- (slStringLiteralPart))
678
- (slStringLiteralExpr
679
- (slStringLiteralPart))))
680
- (objectBody
681
- (objectElement
682
- (unqualifiedAccessExpr
683
- (identifier)
684
- (argumentList
685
- (additiveExpr
686
- (unqualifiedAccessExpr
687
- (identifier))
688
- (unqualifiedAccessExpr
689
- (identifier)))
690
- (additiveExpr
691
- (unqualifiedAccessExpr
692
- (identifier))
693
- (unqualifiedAccessExpr
694
- (identifier)))))))))))))
695
- (classProperty
696
- (identifier)
697
- (qualifiedAccessExpr
698
- (unqualifiedAccessExpr
699
- (identifier))
700
- (identifier)
701
- (argumentList
702
- (functionLiteralExpr
703
- (parameterList)
704
- (newExpr
705
- (declaredType
706
- (qualifiedIdentifier
707
- (identifier)))
708
- (objectBody
709
- (forGenerator
710
- (typedIdentifier
711
- (identifier)
712
- (typeAnnotation
713
- (declaredType
714
- (qualifiedIdentifier
715
- (identifier)))))
716
- (typedIdentifier
717
- (identifier)
718
- (typeAnnotation
719
- (declaredType
720
- (qualifiedIdentifier
721
- (identifier)))))
722
- (unqualifiedAccessExpr
723
- (identifier)
724
- (argumentList
725
- (slStringLiteralExpr
726
- (slStringLiteralPart))
727
- (slStringLiteralExpr
728
- (slStringLiteralPart))
729
- (slStringLiteralExpr
730
- (slStringLiteralPart))))
731
- (objectBody
732
- (forGenerator
733
- (typedIdentifier
734
- (identifier)
735
- (typeAnnotation
736
- (declaredType
737
- (qualifiedIdentifier
738
- (identifier)))))
739
- (typedIdentifier
740
- (identifier)
741
- (typeAnnotation
742
- (declaredType
743
- (qualifiedIdentifier
744
- (identifier)))))
745
- (unqualifiedAccessExpr
746
- (identifier)
747
- (argumentList
748
- (slStringLiteralExpr
749
- (slStringLiteralPart))
750
- (intLiteralExpr)))
751
- (objectBody
752
- (objectElement
753
- (unqualifiedAccessExpr
754
- (identifier)
755
- (argumentList
756
- (additiveExpr
757
- (unqualifiedAccessExpr
758
- (identifier))
759
- (unqualifiedAccessExpr
760
- (identifier)))
761
- (additiveExpr
762
- (unqualifiedAccessExpr
763
- (identifier))
764
- (unqualifiedAccessExpr
765
- (identifier))))))))))))))))
766
- (classProperty
767
- (identifier)
768
- (newExpr
769
- (declaredType
770
- (qualifiedIdentifier
771
- (identifier)))
772
- (objectBody
773
- (objectElement
774
- (slStringLiteralExpr
775
- (slStringLiteralPart)))
776
- (forGenerator
777
- (typedIdentifier
778
- (identifier)
779
- (typeAnnotation
780
- (declaredType
781
- (qualifiedIdentifier
782
- (identifier)))))
783
- (unqualifiedAccessExpr
784
- (identifier)
785
- (argumentList
786
- (intLiteralExpr)
787
- (intLiteralExpr)))
788
- (objectBody
789
- (whenGenerator
790
- (qualifiedAccessExpr
791
- (unqualifiedAccessExpr
792
- (identifier))
793
- (identifier))
794
- (objectBody
795
- (objectElement
796
- (multiplicativeExpr
797
- (unqualifiedAccessExpr
798
- (identifier))
799
- (intLiteralExpr)))))))
800
- (objectElement
801
- (slStringLiteralExpr
802
- (slStringLiteralPart)))
803
- (forGenerator
804
- (typedIdentifier
805
- (identifier)
806
- (typeAnnotation
807
- (unknownType)))
808
- (unqualifiedAccessExpr
809
- (identifier)
810
- (argumentList
811
- (slStringLiteralExpr
812
- (slStringLiteralPart))
813
- (slStringLiteralExpr
814
- (slStringLiteralPart))
815
- (slStringLiteralExpr
816
- (slStringLiteralPart))))
817
- (objectBody
818
- (forGenerator
819
- (typedIdentifier
820
- (identifier)
821
- (typeAnnotation
822
- (declaredType
823
- (qualifiedIdentifier
824
- (identifier)))))
825
- (unqualifiedAccessExpr
826
- (identifier)
827
- (argumentList
828
- (slStringLiteralExpr
829
- (slStringLiteralPart))
830
- (slStringLiteralExpr
831
- (slStringLiteralPart))))
832
- (objectBody
833
- (objectElement
834
- (additiveExpr
835
- (unqualifiedAccessExpr
836
- (identifier))
837
- (unqualifiedAccessExpr
838
- (identifier))))))))
839
- (objectElement
840
- (slStringLiteralExpr
841
- (slStringLiteralPart))))))
842
- (classProperty
843
- (identifier)
844
- (qualifiedAccessExpr
845
- (unqualifiedAccessExpr
846
- (identifier))
847
- (identifier)
848
- (argumentList
849
- (functionLiteralExpr
850
- (parameterList)
851
- (newExpr
852
- (declaredType
853
- (qualifiedIdentifier
854
- (identifier)))
855
- (objectBody
856
- (objectElement
857
- (slStringLiteralExpr
858
- (slStringLiteralPart)))
859
- (forGenerator
860
- (typedIdentifier
861
- (identifier)
862
- (typeAnnotation
863
- (declaredType
864
- (qualifiedIdentifier
865
- (identifier)))))
866
- (unqualifiedAccessExpr
867
- (identifier)
868
- (argumentList
869
- (intLiteralExpr)
870
- (intLiteralExpr)))
871
- (objectBody
872
- (whenGenerator
873
- (qualifiedAccessExpr
874
- (unqualifiedAccessExpr
875
- (identifier))
876
- (identifier))
877
- (objectBody
878
- (objectElement
879
- (multiplicativeExpr
880
- (unqualifiedAccessExpr
881
- (identifier))
882
- (intLiteralExpr)))))))
883
- (objectElement
884
- (slStringLiteralExpr
885
- (slStringLiteralPart)))
886
- (forGenerator
887
- (typedIdentifier
888
- (identifier)
889
- (typeAnnotation
890
- (unknownType)))
891
- (unqualifiedAccessExpr
892
- (identifier)
893
- (argumentList
894
- (slStringLiteralExpr
895
- (slStringLiteralPart))
896
- (slStringLiteralExpr
897
- (slStringLiteralPart))
898
- (slStringLiteralExpr
899
- (slStringLiteralPart))))
900
- (objectBody
901
- (forGenerator
902
- (typedIdentifier
903
- (identifier)
904
- (typeAnnotation
905
- (declaredType
906
- (qualifiedIdentifier
907
- (identifier)))))
908
- (unqualifiedAccessExpr
909
- (identifier)
910
- (argumentList
911
- (intLiteralExpr)
912
- (slStringLiteralExpr
913
- (slStringLiteralPart))))
914
- (objectBody
915
- (objectElement
916
- (additiveExpr
917
- (unqualifiedAccessExpr
918
- (identifier))
919
- (unqualifiedAccessExpr
920
- (identifier))))))))
921
- (objectElement
922
- (slStringLiteralExpr
923
- (slStringLiteralPart)))))))))
924
- (classProperty
925
- (identifier)
926
- (newExpr
927
- (declaredType
928
- (qualifiedIdentifier
929
- (identifier)))
930
- (objectBody
931
- (forGenerator
932
- (typedIdentifier
933
- (identifier)
934
- (typeAnnotation
935
- (declaredType
936
- (qualifiedIdentifier
937
- (identifier)))))
938
- (unqualifiedAccessExpr
939
- (identifier)
940
- (argumentList
941
- (intLiteralExpr)
942
- (intLiteralExpr)))
943
- (objectBody
944
- (objectElement
945
- (unqualifiedAccessExpr
946
- (identifier)))))
947
- (forGenerator
948
- (typedIdentifier
949
- (identifier)
950
- (typeAnnotation
951
- (declaredType
952
- (qualifiedIdentifier
953
- (identifier)))))
954
- (unqualifiedAccessExpr
955
- (identifier)
956
- (argumentList
957
- (slStringLiteralExpr
958
- (slStringLiteralPart))
959
- (slStringLiteralExpr
960
- (slStringLiteralPart))
961
- (slStringLiteralExpr
962
- (slStringLiteralPart))))
963
- (objectBody
964
- (objectElement
965
- (unqualifiedAccessExpr
966
- (identifier)))))
967
- (forGenerator
968
- (typedIdentifier
969
- (identifier)
970
- (typeAnnotation
971
- (declaredType
972
- (qualifiedIdentifier
973
- (identifier)))))
974
- (unqualifiedAccessExpr
975
- (identifier)
976
- (argumentList
977
- (intLiteralExpr)
978
- (intLiteralExpr)))
979
- (objectBody
980
- (objectElement
981
- (unqualifiedAccessExpr
982
- (identifier))))))))
983
- (classProperty
984
- (identifier)
985
- (qualifiedAccessExpr
986
- (unqualifiedAccessExpr
987
- (identifier))
988
- (identifier)
989
- (argumentList
990
- (functionLiteralExpr
991
- (parameterList)
992
- (newExpr
993
- (declaredType
994
- (qualifiedIdentifier
995
- (identifier)))
996
- (objectBody
997
- (forGenerator
998
- (typedIdentifier
999
- (identifier)
1000
- (typeAnnotation
1001
- (declaredType
1002
- (qualifiedIdentifier
1003
- (identifier)))))
1004
- (unqualifiedAccessExpr
1005
- (identifier)
1006
- (argumentList
1007
- (intLiteralExpr)
1008
- (intLiteralExpr)))
1009
- (objectBody
1010
- (objectElement
1011
- (unqualifiedAccessExpr
1012
- (identifier)))))
1013
- (forGenerator
1014
- (typedIdentifier
1015
- (identifier)
1016
- (typeAnnotation
1017
- (declaredType
1018
- (qualifiedIdentifier
1019
- (identifier)))))
1020
- (unqualifiedAccessExpr
1021
- (identifier)
1022
- (argumentList
1023
- (qualifiedAccessExpr
1024
- (intLiteralExpr)
1025
- (identifier))
1026
- (slStringLiteralExpr
1027
- (slStringLiteralPart))
1028
- (slStringLiteralExpr
1029
- (slStringLiteralPart))))
1030
- (objectBody
1031
- (objectElement
1032
- (unqualifiedAccessExpr
1033
- (identifier)))))
1034
- (forGenerator
1035
- (typedIdentifier
1036
- (identifier)
1037
- (typeAnnotation
1038
- (declaredType
1039
- (qualifiedIdentifier
1040
- (identifier)))))
1041
- (unqualifiedAccessExpr
1042
- (identifier)
1043
- (argumentList
1044
- (intLiteralExpr)
1045
- (intLiteralExpr)))
1046
- (objectBody
1047
- (objectElement
1048
- (unqualifiedAccessExpr
1049
- (identifier)))))))))))
1050
- (classProperty
1051
- (identifier)
1052
- (newExpr
1053
- (declaredType
1054
- (qualifiedIdentifier
1055
- (identifier)))
1056
- (objectBody
1057
- (forGenerator
1058
- (typedIdentifier
1059
- (identifier)
1060
- (typeAnnotation
1061
- (declaredType
1062
- (qualifiedIdentifier
1063
- (identifier)))))
1064
- (typedIdentifier
1065
- (identifier)
1066
- (typeAnnotation
1067
- (declaredType
1068
- (qualifiedIdentifier
1069
- (identifier)))))
1070
- (unqualifiedAccessExpr
1071
- (identifier)
1072
- (argumentList
1073
- (intLiteralExpr)
1074
- (intLiteralExpr)))
1075
- (objectBody
1076
- (objectElement
1077
- (unqualifiedAccessExpr
1078
- (identifier)
1079
- (argumentList
1080
- (unqualifiedAccessExpr
1081
- (identifier))
1082
- (unqualifiedAccessExpr
1083
- (identifier)))))))
1084
- (forGenerator
1085
- (typedIdentifier
1086
- (identifier)
1087
- (typeAnnotation
1088
- (declaredType
1089
- (qualifiedIdentifier
1090
- (identifier)))))
1091
- (typedIdentifier
1092
- (identifier)
1093
- (typeAnnotation
1094
- (declaredType
1095
- (qualifiedIdentifier
1096
- (identifier)))))
1097
- (unqualifiedAccessExpr
1098
- (identifier)
1099
- (argumentList
1100
- (slStringLiteralExpr
1101
- (slStringLiteralPart))
1102
- (slStringLiteralExpr
1103
- (slStringLiteralPart))
1104
- (slStringLiteralExpr
1105
- (slStringLiteralPart))))
1106
- (objectBody
1107
- (objectElement
1108
- (unqualifiedAccessExpr
1109
- (identifier)
1110
- (argumentList
1111
- (unqualifiedAccessExpr
1112
- (identifier))
1113
- (unqualifiedAccessExpr
1114
- (identifier)))))))
1115
- (forGenerator
1116
- (typedIdentifier
1117
- (identifier)
1118
- (typeAnnotation
1119
- (declaredType
1120
- (qualifiedIdentifier
1121
- (identifier)))))
1122
- (typedIdentifier
1123
- (identifier)
1124
- (typeAnnotation
1125
- (declaredType
1126
- (qualifiedIdentifier
1127
- (identifier)))))
1128
- (unqualifiedAccessExpr
1129
- (identifier)
1130
- (argumentList
1131
- (intLiteralExpr)
1132
- (intLiteralExpr)))
1133
- (objectBody
1134
- (objectElement
1135
- (unqualifiedAccessExpr
1136
- (identifier)
1137
- (argumentList
1138
- (unqualifiedAccessExpr
1139
- (identifier))
1140
- (unqualifiedAccessExpr
1141
- (identifier))))))))))
1142
- (classProperty
1143
- (identifier)
1144
- (qualifiedAccessExpr
1145
- (unqualifiedAccessExpr
1146
- (identifier))
1147
- (identifier)
1148
- (argumentList
1149
- (functionLiteralExpr
1150
- (parameterList)
1151
- (newExpr
1152
- (declaredType
1153
- (qualifiedIdentifier
1154
- (identifier)))
1155
- (objectBody
1156
- (forGenerator
1157
- (typedIdentifier
1158
- (identifier)
1159
- (typeAnnotation
1160
- (declaredType
1161
- (qualifiedIdentifier
1162
- (identifier)))))
1163
- (typedIdentifier
1164
- (identifier)
1165
- (typeAnnotation
1166
- (declaredType
1167
- (qualifiedIdentifier
1168
- (identifier)))))
1169
- (unqualifiedAccessExpr
1170
- (identifier)
1171
- (argumentList
1172
- (intLiteralExpr)
1173
- (intLiteralExpr)))
1174
- (objectBody
1175
- (objectElement
1176
- (unqualifiedAccessExpr
1177
- (identifier)
1178
- (argumentList
1179
- (unqualifiedAccessExpr
1180
- (identifier))
1181
- (unqualifiedAccessExpr
1182
- (identifier)))))))
1183
- (forGenerator
1184
- (typedIdentifier
1185
- (identifier)
1186
- (typeAnnotation
1187
- (declaredType
1188
- (qualifiedIdentifier
1189
- (identifier)))))
1190
- (typedIdentifier
1191
- (identifier)
1192
- (typeAnnotation
1193
- (declaredType
1194
- (qualifiedIdentifier
1195
- (identifier)))))
1196
- (unqualifiedAccessExpr
1197
- (identifier)
1198
- (argumentList
1199
- (qualifiedAccessExpr
1200
- (intLiteralExpr)
1201
- (identifier))
1202
- (slStringLiteralExpr
1203
- (slStringLiteralPart))
1204
- (slStringLiteralExpr
1205
- (slStringLiteralPart))))
1206
- (objectBody
1207
- (objectElement
1208
- (unqualifiedAccessExpr
1209
- (identifier)
1210
- (argumentList
1211
- (unqualifiedAccessExpr
1212
- (identifier))
1213
- (unqualifiedAccessExpr
1214
- (identifier)))))))
1215
- (forGenerator
1216
- (typedIdentifier
1217
- (identifier)
1218
- (typeAnnotation
1219
- (declaredType
1220
- (qualifiedIdentifier
1221
- (identifier)))))
1222
- (typedIdentifier
1223
- (identifier)
1224
- (typeAnnotation
1225
- (declaredType
1226
- (qualifiedIdentifier
1227
- (identifier)))))
1228
- (unqualifiedAccessExpr
1229
- (identifier)
1230
- (argumentList
1231
- (intLiteralExpr)
1232
- (intLiteralExpr)))
1233
- (objectBody
1234
- (objectElement
1235
- (unqualifiedAccessExpr
1236
- (identifier)
1237
- (argumentList
1238
- (unqualifiedAccessExpr
1239
- (identifier))
1240
- (unqualifiedAccessExpr
1241
- (identifier)))))))))))))
1242
- (classProperty
1243
- (identifier)
1244
- (newExpr
1245
- (declaredType
1246
- (qualifiedIdentifier
1247
- (identifier)))
1248
- (objectBody
1249
- (forGenerator
1250
- (typedIdentifier
1251
- (identifier)
1252
- (typeAnnotation
1253
- (declaredType
1254
- (qualifiedIdentifier
1255
- (identifier)))))
1256
- (unqualifiedAccessExpr
1257
- (identifier)
1258
- (argumentList
1259
- (slStringLiteralExpr
1260
- (slStringLiteralPart))
1261
- (slStringLiteralExpr
1262
- (slStringLiteralPart))
1263
- (slStringLiteralExpr
1264
- (slStringLiteralPart))))
1265
- (objectBody
1266
- (objectElement
1267
- (unqualifiedAccessExpr
1268
- (identifier)))
1269
- (objectElement
1270
- (additiveExpr
1271
- (unqualifiedAccessExpr
1272
- (identifier))
1273
- (slStringLiteralExpr
1274
- (slStringLiteralPart))))
1275
- (objectElement
1276
- (additiveExpr
1277
- (unqualifiedAccessExpr
1278
- (identifier))
1279
- (slStringLiteralExpr
1280
- (slStringLiteralPart)))))))))
1281
- (classProperty
1282
- (identifier)
1283
- (newExpr
1284
- (declaredType
1285
- (qualifiedIdentifier
1286
- (identifier)))
1287
- (objectBody
1288
- (forGenerator
1289
- (typedIdentifier
1290
- (identifier)
1291
- (typeAnnotation
1292
- (declaredType
1293
- (qualifiedIdentifier
1294
- (identifier)))))
1295
- (unqualifiedAccessExpr
1296
- (identifier)
1297
- (argumentList
1298
- (slStringLiteralExpr
1299
- (slStringLiteralPart))
1300
- (slStringLiteralExpr
1301
- (slStringLiteralPart))))
1302
- (objectBody
1303
- (forGenerator
1304
- (typedIdentifier
1305
- (identifier)
1306
- (typeAnnotation
1307
- (declaredType
1308
- (qualifiedIdentifier
1309
- (identifier)))))
1310
- (typedIdentifier
1311
- (identifier)
1312
- (typeAnnotation
1313
- (declaredType
1314
- (qualifiedIdentifier
1315
- (identifier)))))
1316
- (unqualifiedAccessExpr
1317
- (identifier)
1318
- (argumentList
1319
- (slStringLiteralExpr
1320
- (slStringLiteralPart))
1321
- (intLiteralExpr)
1322
- (slStringLiteralExpr
1323
- (slStringLiteralPart))
1324
- (intLiteralExpr)))
1325
- (objectBody
1326
- (objectElement
1327
- (additiveExpr
1328
- (additiveExpr
1329
- (unqualifiedAccessExpr
1330
- (identifier))
1331
- (unqualifiedAccessExpr
1332
- (identifier)))
1333
- (qualifiedAccessExpr
1334
- (unqualifiedAccessExpr
1335
- (identifier))
1336
- (identifier)
1337
- (argumentList))))
1338
- (objectElement
1339
- (additiveExpr
1340
- (additiveExpr
1341
- (qualifiedAccessExpr
1342
- (unqualifiedAccessExpr
1343
- (identifier))
1344
- (identifier)
1345
- (argumentList))
1346
- (unqualifiedAccessExpr
1347
- (identifier)))
1348
- (unqualifiedAccessExpr
1349
- (identifier))))))
1350
- (forGenerator
1351
- (typedIdentifier
1352
- (identifier)
1353
- (typeAnnotation
1354
- (declaredType
1355
- (qualifiedIdentifier
1356
- (identifier)))))
1357
- (typedIdentifier
1358
- (identifier)
1359
- (typeAnnotation
1360
- (declaredType
1361
- (qualifiedIdentifier
1362
- (identifier)))))
1363
- (unqualifiedAccessExpr
1364
- (identifier)
1365
- (argumentList
1366
- (slStringLiteralExpr
1367
- (slStringLiteralPart))
1368
- (intLiteralExpr)
1369
- (slStringLiteralExpr
1370
- (slStringLiteralPart))
1371
- (intLiteralExpr)))
1372
- (objectBody
1373
- (objectElement
1374
- (additiveExpr
1375
- (additiveExpr
1376
- (unqualifiedAccessExpr
1377
- (identifier))
1378
- (unqualifiedAccessExpr
1379
- (identifier)))
1380
- (qualifiedAccessExpr
1381
- (unqualifiedAccessExpr
1382
- (identifier))
1383
- (identifier)
1384
- (argumentList))))
1385
- (objectElement
1386
- (additiveExpr
1387
- (additiveExpr
1388
- (qualifiedAccessExpr
1389
- (unqualifiedAccessExpr
1390
- (identifier))
1391
- (identifier)
1392
- (argumentList))
1393
- (unqualifiedAccessExpr
1394
- (identifier)))
1395
- (unqualifiedAccessExpr
1396
- (identifier)))))))))))
1397
- (classProperty
1398
- (identifier)
1399
- (newExpr
1400
- (declaredType
1401
- (qualifiedIdentifier
1402
- (identifier)))
1403
- (objectBody
1404
- (forGenerator
1405
- (typedIdentifier
1406
- (identifier)
1407
- (typeAnnotation
1408
- (declaredType
1409
- (qualifiedIdentifier
1410
- (identifier)))))
1411
- (typedIdentifier
1412
- (identifier)
1413
- (typeAnnotation
1414
- (declaredType
1415
- (qualifiedIdentifier
1416
- (identifier)))))
1417
- (newExpr
1418
- (declaredType
1419
- (qualifiedIdentifier
1420
- (identifier)))
1421
- (objectBody
1422
- (objectElement
1423
- (intLiteralExpr))
1424
- (objectElement
1425
- (intLiteralExpr))
1426
- (objectElement
1427
- (intLiteralExpr))
1428
- (objectElement
1429
- (intLiteralExpr))
1430
- (objectElement
1431
- (intLiteralExpr))))
1432
- (objectBody
1433
- (whenGenerator
1434
- (qualifiedAccessExpr
1435
- (unqualifiedAccessExpr
1436
- (identifier))
1437
- (identifier))
1438
- (objectBody
1439
- (objectElement
1440
- (multiplicativeExpr
1441
- (unqualifiedAccessExpr
1442
- (identifier))
1443
- (unqualifiedAccessExpr
1444
- (identifier))))
1445
- (objectElement
1446
- (multiplicativeExpr
1447
- (multiplicativeExpr
1448
- (unqualifiedAccessExpr
1449
- (identifier))
1450
- (unqualifiedAccessExpr
1451
- (identifier)))
1452
- (intLiteralExpr))))))))))
1453
- (classProperty
1454
- (identifier)
1455
- (newExpr
1456
- (declaredType
1457
- (qualifiedIdentifier
1458
- (identifier)))
1459
- (objectBody
1460
- (forGenerator
1461
- (typedIdentifier
1462
- (identifier)
1463
- (typeAnnotation
1464
- (declaredType
1465
- (qualifiedIdentifier
1466
- (identifier)))))
1467
- (typedIdentifier
1468
- (identifier)
1469
- (typeAnnotation
1470
- (declaredType
1471
- (qualifiedIdentifier
1472
- (identifier)))))
1473
- (newExpr
1474
- (declaredType
1475
- (qualifiedIdentifier
1476
- (identifier)))
1477
- (objectBody
1478
- (objectElement
1479
- (intLiteralExpr))
1480
- (objectElement
1481
- (intLiteralExpr))
1482
- (objectElement
1483
- (intLiteralExpr))
1484
- (objectElement
1485
- (intLiteralExpr))
1486
- (objectElement
1487
- (intLiteralExpr))))
1488
- (objectBody
1489
- (whenGenerator
1490
- (qualifiedAccessExpr
1491
- (unqualifiedAccessExpr
1492
- (identifier))
1493
- (identifier))
1494
- (objectBody
1495
- (whenGenerator
1496
- (comparisonExpr
1497
- (unqualifiedAccessExpr
1498
- (identifier))
1499
- (intLiteralExpr))
1500
- (objectBody
1501
- (objectElement
1502
- (multiplicativeExpr
1503
- (unqualifiedAccessExpr
1504
- (identifier))
1505
- (unqualifiedAccessExpr
1506
- (identifier))))
1507
- (objectElement
1508
- (multiplicativeExpr
1509
- (multiplicativeExpr
1510
- (unqualifiedAccessExpr
1511
- (identifier))
1512
- (unqualifiedAccessExpr
1513
- (identifier)))
1514
- (intLiteralExpr))))))))))))
1515
- (classProperty
1516
- (identifier)
1517
- (newExpr
1518
- (declaredType
1519
- (qualifiedIdentifier
1520
- (identifier)))
1521
- (objectBody
1522
- (forGenerator
1523
- (typedIdentifier
1524
- (identifier)
1525
- (typeAnnotation
1526
- (declaredType
1527
- (qualifiedIdentifier
1528
- (identifier)))))
1529
- (typedIdentifier
1530
- (identifier)
1531
- (typeAnnotation
1532
- (declaredType
1533
- (qualifiedIdentifier
1534
- (identifier)))))
1535
- (newExpr
1536
- (declaredType
1537
- (qualifiedIdentifier
1538
- (identifier)))
1539
- (objectBody
1540
- (objectElement
1541
- (intLiteralExpr))
1542
- (objectElement
1543
- (intLiteralExpr))
1544
- (objectElement
1545
- (intLiteralExpr))
1546
- (objectElement
1547
- (intLiteralExpr))
1548
- (objectElement
1549
- (intLiteralExpr))))
1550
- (objectBody
1551
- (whenGenerator
1552
- (qualifiedAccessExpr
1553
- (unqualifiedAccessExpr
1554
- (identifier))
1555
- (identifier))
1556
- (objectBody
1557
- (objectElement
1558
- (multiplicativeExpr
1559
- (unqualifiedAccessExpr
1560
- (identifier))
1561
- (unqualifiedAccessExpr
1562
- (identifier))))
1563
- (objectElement
1564
- (multiplicativeExpr
1565
- (multiplicativeExpr
1566
- (unqualifiedAccessExpr
1567
- (identifier))
1568
- (unqualifiedAccessExpr
1569
- (identifier)))
1570
- (intLiteralExpr))))
1571
- (objectBody
1572
- (objectElement
1573
- (qualifiedAccessExpr
1574
- (parenthesizedExpr
1575
- (multiplicativeExpr
1576
- (unqualifiedAccessExpr
1577
- (identifier))
1578
- (unqualifiedAccessExpr
1579
- (identifier))))
1580
- (identifier)
1581
- (argumentList)))
1582
- (objectElement
1583
- (qualifiedAccessExpr
1584
- (parenthesizedExpr
1585
- (multiplicativeExpr
1586
- (multiplicativeExpr
1587
- (unqualifiedAccessExpr
1588
- (identifier))
1589
- (unqualifiedAccessExpr
1590
- (identifier)))
1591
- (intLiteralExpr)))
1592
- (identifier)
1593
- (argumentList)))))))))))