@apple/tree-sitter-pkl 0.18.1 → 0.20.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 (680) hide show
  1. package/CHANGELOG.adoc +16 -3
  2. package/CMakeLists.txt +1 -1
  3. package/Cargo.lock +21 -21
  4. package/Cargo.toml +1 -1
  5. package/MAINTAINERS.adoc +1 -0
  6. package/Makefile +1 -1
  7. package/SECURITY.adoc +1 -1
  8. package/binding.gyp +22 -6
  9. package/bindings/node/binding.cc +13 -22
  10. package/bindings/node/index.js +7 -15
  11. package/bindings/python/tests/test_binding.py +2 -2
  12. package/bindings/swift/TreeSitterPkl/pkl.h +4 -4
  13. package/grammar.js +2 -2
  14. package/package.json +16 -11
  15. package/pyproject.toml +1 -1
  16. package/setup.py +24 -24
  17. package/src/grammar.json +84 -0
  18. package/src/node-types.json +2 -0
  19. package/src/parser.c +36434 -33698
  20. package/src/tree_sitter/parser.h +0 -1
  21. package/tree-sitter.json +1 -1
  22. package/bindings/c/tree-sitter-pkl.h +0 -16
  23. package/test/corpus/basic/annotation.txt +0 -241
  24. package/test/corpus/basic/comments.txt +0 -41
  25. package/test/corpus/basic/shebangComment.txt +0 -15
  26. package/test/corpus/basic/types.txt +0 -187
  27. package/test/corpus/class/constModifier.txt +0 -23
  28. package/test/corpus/class/fixedModifier.txt +0 -23
  29. package/test/corpus/expr/binary.txt +0 -107
  30. package/test/corpus/expr/binary2.txt +0 -18
  31. package/test/corpus/expr/functionLiteral.txt +0 -22
  32. package/test/corpus/expr/if.txt +0 -15
  33. package/test/corpus/expr/import.txt +0 -20
  34. package/test/corpus/expr/let.txt +0 -17
  35. package/test/corpus/expr/new.txt +0 -34
  36. package/test/corpus/expr/qualifiedAccess.txt +0 -102
  37. package/test/corpus/expr/read.txt +0 -26
  38. package/test/corpus/expr/subscript.txt +0 -48
  39. package/test/corpus/expr/super.txt +0 -27
  40. package/test/corpus/expr/throw.txt +0 -13
  41. package/test/corpus/expr/trace.txt +0 -13
  42. package/test/corpus/expr/typeTest.txt +0 -40
  43. package/test/corpus/expr/unaryMinus.txt +0 -22
  44. package/test/corpus/module/moduleHeader1.txt +0 -23
  45. package/test/corpus/module/moduleHeader2.txt +0 -29
  46. package/test/corpus/module/moduleHeader3.error.txt +0 -23
  47. package/test/corpus/module/moduleHeader4.txt +0 -34
  48. package/test/corpus/module/moduleHeader5.txt +0 -16
  49. package/test/corpus/module/moduleHeader6.txt +0 -17
  50. package/test/corpus/number/underscores.txt +0 -99
  51. package/test/corpus/object/mixedEntriesAndElements.txt +0 -52
  52. package/test/corpus/object/objectAmendChain.txt +0 -38
  53. package/test/corpus/object/objectBodyParams.txt +0 -21
  54. package/test/corpus/object/objectElementWithTypeConstraint +0 -30
  55. package/test/corpus/object/objectElementsWithParens.txt +0 -51
  56. package/test/corpus/object/objectElementsWithTypeParams +0 -65
  57. package/test/corpus/object/objectGenerator.txt +0 -53
  58. package/test/corpus/object/objectMember.txt +0 -129
  59. package/test/corpus/object/objectMemberPredicate.txt +0 -41
  60. package/test/corpus/object/objectSpread.txt +0 -51
  61. package/test/corpus/object/objectWhenGenerator.txt +0 -71
  62. package/test/corpus/snippetTests/annotation/annotation1.txt +0 -284
  63. package/test/corpus/snippetTests/annotation/annotation2.txt +0 -20
  64. package/test/corpus/snippetTests/annotation/annotation3.txt +0 -24
  65. package/test/corpus/snippetTests/annotation/annotation4.txt +0 -32
  66. package/test/corpus/snippetTests/annotation/annotation5.txt +0 -28
  67. package/test/corpus/snippetTests/annotation/annotation6.txt +0 -19
  68. package/test/corpus/snippetTests/annotation/annotationIsNotExpression.txt +0 -29
  69. package/test/corpus/snippetTests/annotation/deprecated1.txt +0 -385
  70. package/test/corpus/snippetTests/annotation/deprecated2.txt +0 -99
  71. package/test/corpus/snippetTests/annotation/deprecated3.txt +0 -155
  72. package/test/corpus/snippetTests/annotation/deprecatedNoRepeatedWarnings.txt +0 -58
  73. package/test/corpus/snippetTests/annotation/deprecatedWithMessage1.txt +0 -405
  74. package/test/corpus/snippetTests/annotation/deprecatedWithMessage2.txt +0 -104
  75. package/test/corpus/snippetTests/annotation/deprecatedWithMessage3.txt +0 -155
  76. package/test/corpus/snippetTests/annotation/deprecationSuperMethod.txt +0 -144
  77. package/test/corpus/snippetTests/api/Resource.txt +0 -128
  78. package/test/corpus/snippetTests/api/analyze1.txt +0 -176
  79. package/test/corpus/snippetTests/api/any.txt +0 -523
  80. package/test/corpus/snippetTests/api/anyConverter.txt +0 -161
  81. package/test/corpus/snippetTests/api/baseModule.txt +0 -170
  82. package/test/corpus/snippetTests/api/dataSize.txt +0 -1165
  83. package/test/corpus/snippetTests/api/duration.txt +0 -800
  84. package/test/corpus/snippetTests/api/float.txt +0 -1334
  85. package/test/corpus/snippetTests/api/int.txt +0 -1142
  86. package/test/corpus/snippetTests/api/intseq.txt +0 -1021
  87. package/test/corpus/snippetTests/api/jsonParser1.txt +0 -279
  88. package/test/corpus/snippetTests/api/jsonParser2.txt +0 -294
  89. package/test/corpus/snippetTests/api/jsonParser3.txt +0 -143
  90. package/test/corpus/snippetTests/api/jsonParser4.txt +0 -112
  91. package/test/corpus/snippetTests/api/jsonParser5.txt +0 -171
  92. package/test/corpus/snippetTests/api/jsonRenderer1.json.txt +0 -41
  93. package/test/corpus/snippetTests/api/jsonRenderer2b.txt +0 -300
  94. package/test/corpus/snippetTests/api/jsonRenderer3.json.txt +0 -334
  95. package/test/corpus/snippetTests/api/jsonRenderer4.txt +0 -388
  96. package/test/corpus/snippetTests/api/jsonRenderer5.txt +0 -388
  97. package/test/corpus/snippetTests/api/jsonRenderer6.json.txt +0 -163
  98. package/test/corpus/snippetTests/api/jsonRenderer7.txt +0 -53
  99. package/test/corpus/snippetTests/api/jsonRenderer8.txt +0 -30
  100. package/test/corpus/snippetTests/api/jsonRendererEmptyComposites.txt +0 -114
  101. package/test/corpus/snippetTests/api/jsonnetRenderer3.jsonnet.txt +0 -356
  102. package/test/corpus/snippetTests/api/jsonnetRenderer4.txt +0 -393
  103. package/test/corpus/snippetTests/api/jsonnetRenderer5.txt +0 -393
  104. package/test/corpus/snippetTests/api/jsonnetRenderer6.jsonnet.txt +0 -169
  105. package/test/corpus/snippetTests/api/jsonnetRenderer7.txt +0 -36
  106. package/test/corpus/snippetTests/api/list.txt +0 -4432
  107. package/test/corpus/snippetTests/api/listNullable.txt +0 -1513
  108. package/test/corpus/snippetTests/api/map.txt +0 -1144
  109. package/test/corpus/snippetTests/api/mapping.txt +0 -948
  110. package/test/corpus/snippetTests/api/mathModule.txt +0 -1426
  111. package/test/corpus/snippetTests/api/module.txt +0 -77
  112. package/test/corpus/snippetTests/api/moduleOutput.txt +0 -24
  113. package/test/corpus/snippetTests/api/moduleOutput2.txt +0 -25
  114. package/test/corpus/snippetTests/api/pListRenderer1.plist.txt +0 -41
  115. package/test/corpus/snippetTests/api/pListRenderer3.plist.txt +0 -348
  116. package/test/corpus/snippetTests/api/pListRenderer4.txt +0 -375
  117. package/test/corpus/snippetTests/api/pListRenderer5.txt +0 -424
  118. package/test/corpus/snippetTests/api/pListRenderer6.plist.txt +0 -163
  119. package/test/corpus/snippetTests/api/pListRenderer7.txt +0 -30
  120. package/test/corpus/snippetTests/api/pair.txt +0 -170
  121. package/test/corpus/snippetTests/api/pcfRenderer1.txt +0 -95
  122. package/test/corpus/snippetTests/api/pcfRenderer2b.txt +0 -301
  123. package/test/corpus/snippetTests/api/pcfRenderer3.txt +0 -350
  124. package/test/corpus/snippetTests/api/pcfRenderer4.txt +0 -391
  125. package/test/corpus/snippetTests/api/pcfRenderer5.txt +0 -460
  126. package/test/corpus/snippetTests/api/pcfRenderer6.txt +0 -118
  127. package/test/corpus/snippetTests/api/pcfRenderer8.txt +0 -16
  128. package/test/corpus/snippetTests/api/platformModule.txt +0 -147
  129. package/test/corpus/snippetTests/api/plistRenderer2b.txt +0 -300
  130. package/test/corpus/snippetTests/api/propertiesRenderer1.properties.txt +0 -41
  131. package/test/corpus/snippetTests/api/propertiesRenderer10.properties.txt +0 -24
  132. package/test/corpus/snippetTests/api/propertiesRenderer11.txt +0 -30
  133. package/test/corpus/snippetTests/api/propertiesRenderer2b.txt +0 -303
  134. package/test/corpus/snippetTests/api/propertiesRenderer4.txt +0 -484
  135. package/test/corpus/snippetTests/api/propertiesRenderer5.txt +0 -491
  136. package/test/corpus/snippetTests/api/propertiesRenderer8.properties.txt +0 -628
  137. package/test/corpus/snippetTests/api/propertiesRenderer9.properties.txt +0 -292
  138. package/test/corpus/snippetTests/api/propertiesRendererBug66849708.properties.txt +0 -106
  139. package/test/corpus/snippetTests/api/protobuf2.txt +0 -408
  140. package/test/corpus/snippetTests/api/reflect1.txt +0 -1686
  141. package/test/corpus/snippetTests/api/reflect2.txt +0 -480
  142. package/test/corpus/snippetTests/api/reflect3.txt +0 -193
  143. package/test/corpus/snippetTests/api/reflectedDeclaration.txt +0 -64
  144. package/test/corpus/snippetTests/api/regex.txt +0 -320
  145. package/test/corpus/snippetTests/api/releaseModule.txt +0 -262
  146. package/test/corpus/snippetTests/api/renderDirective2.txt +0 -374
  147. package/test/corpus/snippetTests/api/semverModule.txt +0 -2224
  148. package/test/corpus/snippetTests/api/set.txt +0 -3891
  149. package/test/corpus/snippetTests/api/setNullable.txt +0 -1113
  150. package/test/corpus/snippetTests/api/typeAliases.txt +0 -449
  151. package/test/corpus/snippetTests/api/typeConverters.txt +0 -211
  152. package/test/corpus/snippetTests/api/xmlRenderer1.xml.txt +0 -174
  153. package/test/corpus/snippetTests/api/xmlRenderer2b.txt +0 -306
  154. package/test/corpus/snippetTests/api/xmlRenderer3.xml.txt +0 -320
  155. package/test/corpus/snippetTests/api/xmlRenderer4.txt +0 -401
  156. package/test/corpus/snippetTests/api/xmlRenderer5.txt +0 -402
  157. package/test/corpus/snippetTests/api/xmlRenderer6.xml.txt +0 -169
  158. package/test/corpus/snippetTests/api/xmlRenderer8.txt +0 -36
  159. package/test/corpus/snippetTests/api/xmlRendererCData.xml.txt +0 -48
  160. package/test/corpus/snippetTests/api/xmlRendererElement.xml.txt +0 -103
  161. package/test/corpus/snippetTests/api/xmlRendererHtml.xml.txt +0 -212
  162. package/test/corpus/snippetTests/api/xmlRendererInline.xml.txt +0 -175
  163. package/test/corpus/snippetTests/api/xmlRendererInline3.xml.txt +0 -152
  164. package/test/corpus/snippetTests/api/yamlParser1Yaml11.txt +0 -22
  165. package/test/corpus/snippetTests/api/yamlParser1Yaml12.txt +0 -22
  166. package/test/corpus/snippetTests/api/yamlParser2.txt +0 -253
  167. package/test/corpus/snippetTests/api/yamlParser3.txt +0 -194
  168. package/test/corpus/snippetTests/api/yamlParser4.txt +0 -198
  169. package/test/corpus/snippetTests/api/yamlParser5.txt +0 -86
  170. package/test/corpus/snippetTests/api/yamlParser6.txt +0 -92
  171. package/test/corpus/snippetTests/api/yamlRenderer1.yml.txt +0 -41
  172. package/test/corpus/snippetTests/api/yamlRenderer2b.txt +0 -300
  173. package/test/corpus/snippetTests/api/yamlRenderer3.yml.txt +0 -342
  174. package/test/corpus/snippetTests/api/yamlRenderer4.txt +0 -441
  175. package/test/corpus/snippetTests/api/yamlRenderer5.txt +0 -441
  176. package/test/corpus/snippetTests/api/yamlRenderer6.yml.txt +0 -163
  177. package/test/corpus/snippetTests/api/yamlRenderer7.txt +0 -30
  178. package/test/corpus/snippetTests/api/yamlRenderer8.yml.txt +0 -142
  179. package/test/corpus/snippetTests/api/yamlRendererBug66849708.yml.txt +0 -106
  180. package/test/corpus/snippetTests/api/yamlRendererEmpty.yml.txt +0 -326
  181. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth2.yml.txt +0 -227
  182. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth4.yml.txt +0 -32
  183. package/test/corpus/snippetTests/api/yamlRendererIndentationWidth5.yml.txt +0 -32
  184. package/test/corpus/snippetTests/api/yamlRendererStream1.txt +0 -140
  185. package/test/corpus/snippetTests/api/yamlRendererStringsYaml11.txt +0 -22
  186. package/test/corpus/snippetTests/api/yamlRendererStringsYaml12.txt +0 -22
  187. package/test/corpus/snippetTests/basic/amendsChains.txt +0 -275
  188. package/test/corpus/snippetTests/basic/as.txt +0 -1468
  189. package/test/corpus/snippetTests/basic/as2.txt +0 -1077
  190. package/test/corpus/snippetTests/basic/as3.txt +0 -297
  191. package/test/corpus/snippetTests/basic/baseModule.txt +0 -11
  192. package/test/corpus/snippetTests/basic/boolean.txt +0 -430
  193. package/test/corpus/snippetTests/basic/constModifier.txt +0 -324
  194. package/test/corpus/snippetTests/basic/constModifier2.txt +0 -227
  195. package/test/corpus/snippetTests/basic/constModifier3.txt +0 -136
  196. package/test/corpus/snippetTests/basic/constModifier4.txt +0 -64
  197. package/test/corpus/snippetTests/basic/constModifier5.txt +0 -68
  198. package/test/corpus/snippetTests/basic/dataSize.txt +0 -658
  199. package/test/corpus/snippetTests/basic/duration.txt +0 -618
  200. package/test/corpus/snippetTests/basic/exceptions.txt +0 -18
  201. package/test/corpus/snippetTests/basic/fixedProperty1.txt +0 -62
  202. package/test/corpus/snippetTests/basic/fixedProperty2.txt +0 -33
  203. package/test/corpus/snippetTests/basic/fixedProperty3.txt +0 -31
  204. package/test/corpus/snippetTests/basic/fixedProperty4.txt +0 -15
  205. package/test/corpus/snippetTests/basic/fixedProperty5.txt +0 -20
  206. package/test/corpus/snippetTests/basic/fixedProperty6.txt +0 -15
  207. package/test/corpus/snippetTests/basic/if.txt +0 -83
  208. package/test/corpus/snippetTests/basic/import1.txt +0 -51
  209. package/test/corpus/snippetTests/basic/import1b.txt +0 -51
  210. package/test/corpus/snippetTests/basic/import2.txt +0 -34
  211. package/test/corpus/snippetTests/basic/import3.txt +0 -34
  212. package/test/corpus/snippetTests/basic/imported.txt +0 -19
  213. package/test/corpus/snippetTests/basic/indexExpressions.txt +0 -53
  214. package/test/corpus/snippetTests/basic/intseq.txt +0 -365
  215. package/test/corpus/snippetTests/basic/is.txt +0 -1504
  216. package/test/corpus/snippetTests/basic/is2.txt +0 -677
  217. package/test/corpus/snippetTests/basic/let.txt +0 -515
  218. package/test/corpus/snippetTests/basic/letTyped.txt +0 -293
  219. package/test/corpus/snippetTests/basic/list.txt +0 -252
  220. package/test/corpus/snippetTests/basic/localMethodDynamicBinding.txt +0 -187
  221. package/test/corpus/snippetTests/basic/localMethodInAmendingModule.txt +0 -216
  222. package/test/corpus/snippetTests/basic/localMethodOverride1.txt +0 -152
  223. package/test/corpus/snippetTests/basic/localMethodOverride2.txt +0 -173
  224. package/test/corpus/snippetTests/basic/localMethodTyped.txt +0 -564
  225. package/test/corpus/snippetTests/basic/localMethodTyped2.txt +0 -580
  226. package/test/corpus/snippetTests/basic/localMethodTyped3.txt +0 -218
  227. package/test/corpus/snippetTests/basic/localMethodTyped4.txt +0 -232
  228. package/test/corpus/snippetTests/basic/localMethodTyped5.txt +0 -211
  229. package/test/corpus/snippetTests/basic/localMethodTyped6.txt +0 -225
  230. package/test/corpus/snippetTests/basic/localMethodUntyped.txt +0 -488
  231. package/test/corpus/snippetTests/basic/localModuleMemberOverride1.txt +0 -227
  232. package/test/corpus/snippetTests/basic/localModuleMemberOverride2.txt +0 -202
  233. package/test/corpus/snippetTests/basic/localProperty1.txt +0 -33
  234. package/test/corpus/snippetTests/basic/localProperty2.txt +0 -77
  235. package/test/corpus/snippetTests/basic/localPropertyAmendInAmendingModule.txt +0 -25
  236. package/test/corpus/snippetTests/basic/localPropertyInAmendingModule.txt +0 -205
  237. package/test/corpus/snippetTests/basic/localPropertyOverride1.txt +0 -131
  238. package/test/corpus/snippetTests/basic/localPropertyOverride2.txt +0 -152
  239. package/test/corpus/snippetTests/basic/localPropertyOverride3.txt +0 -52
  240. package/test/corpus/snippetTests/basic/localTypedClassMember.txt +0 -277
  241. package/test/corpus/snippetTests/basic/localTypedModuleMember.txt +0 -265
  242. package/test/corpus/snippetTests/basic/localTypedObjectMember.txt +0 -268
  243. package/test/corpus/snippetTests/basic/map.txt +0 -398
  244. package/test/corpus/snippetTests/basic/minPklVersion.txt +0 -40
  245. package/test/corpus/snippetTests/basic/moduleRef1.txt +0 -108
  246. package/test/corpus/snippetTests/basic/moduleRef2.txt +0 -80
  247. package/test/corpus/snippetTests/basic/moduleRef3.txt +0 -112
  248. package/test/corpus/snippetTests/basic/moduleRefLibrary.txt +0 -33
  249. package/test/corpus/snippetTests/basic/new.txt +0 -1028
  250. package/test/corpus/snippetTests/basic/newInAmendingModuleMethod.txt +0 -116
  251. package/test/corpus/snippetTests/basic/newInsideIf.txt +0 -841
  252. package/test/corpus/snippetTests/basic/newInsideLet.txt +0 -869
  253. package/test/corpus/snippetTests/basic/newType.txt +0 -686
  254. package/test/corpus/snippetTests/basic/nonNull.txt +0 -131
  255. package/test/corpus/snippetTests/basic/nullable.txt +0 -239
  256. package/test/corpus/snippetTests/basic/objectMember.txt +0 -129
  257. package/test/corpus/snippetTests/basic/objectMemberInvalid.txt +0 -18
  258. package/test/corpus/snippetTests/basic/objectMemberInvalid2.txt +0 -18
  259. package/test/corpus/snippetTests/basic/objectMemberInvalid3.txt +0 -22
  260. package/test/corpus/snippetTests/basic/parens.txt +0 -59
  261. package/test/corpus/snippetTests/basic/propertyDefaults.txt +0 -126
  262. package/test/corpus/snippetTests/basic/read.txt +0 -250
  263. package/test/corpus/snippetTests/basic/readGlob.txt +0 -209
  264. package/test/corpus/snippetTests/basic/semicolon.txt +0 -18
  265. package/test/corpus/snippetTests/basic/set.txt +0 -340
  266. package/test/corpus/snippetTests/basic/trace.txt +0 -130
  267. package/test/corpus/snippetTests/basic/typeResolution1.txt +0 -31
  268. package/test/corpus/snippetTests/basic/typeResolution2.txt +0 -37
  269. package/test/corpus/snippetTests/basic/typeResolution3.txt +0 -63
  270. package/test/corpus/snippetTests/basic/typeResolution4.txt +0 -61
  271. package/test/corpus/snippetTests/basic/underscore.txt +0 -419
  272. package/test/corpus/snippetTests/classes/class1.txt +0 -54
  273. package/test/corpus/snippetTests/classes/class2.txt +0 -123
  274. package/test/corpus/snippetTests/classes/class2a.txt +0 -110
  275. package/test/corpus/snippetTests/classes/class3.txt +0 -65
  276. package/test/corpus/snippetTests/classes/class4.txt +0 -58
  277. package/test/corpus/snippetTests/classes/constraints1.txt +0 -141
  278. package/test/corpus/snippetTests/classes/constraints11.txt +0 -201
  279. package/test/corpus/snippetTests/classes/constraints12.txt +0 -204
  280. package/test/corpus/snippetTests/classes/constraints13.txt +0 -86
  281. package/test/corpus/snippetTests/classes/constraints14.txt +0 -39
  282. package/test/corpus/snippetTests/classes/constraints2.txt +0 -69
  283. package/test/corpus/snippetTests/classes/constraints3.txt +0 -97
  284. package/test/corpus/snippetTests/classes/constraints4.txt +0 -86
  285. package/test/corpus/snippetTests/classes/constraints5.txt +0 -71
  286. package/test/corpus/snippetTests/classes/constraints6.txt +0 -85
  287. package/test/corpus/snippetTests/classes/constraints7.txt +0 -148
  288. package/test/corpus/snippetTests/classes/constraints8.txt +0 -103
  289. package/test/corpus/snippetTests/classes/constraints9.txt +0 -92
  290. package/test/corpus/snippetTests/classes/constraintsLambdaThis.txt +0 -216
  291. package/test/corpus/snippetTests/classes/equality.txt +0 -123
  292. package/test/corpus/snippetTests/classes/externalClass.txt +0 -12
  293. package/test/corpus/snippetTests/classes/externalFunction.txt +0 -18
  294. package/test/corpus/snippetTests/classes/externalProperty.txt +0 -20
  295. package/test/corpus/snippetTests/classes/functions1.txt +0 -77
  296. package/test/corpus/snippetTests/classes/functions2.txt +0 -56
  297. package/test/corpus/snippetTests/classes/functions3.txt +0 -81
  298. package/test/corpus/snippetTests/classes/functions4.txt +0 -125
  299. package/test/corpus/snippetTests/classes/inheritance1.txt +0 -98
  300. package/test/corpus/snippetTests/classes/inheritance2.txt +0 -91
  301. package/test/corpus/snippetTests/classes/invalidInstantiation1.txt +0 -16
  302. package/test/corpus/snippetTests/classes/invalidInstantiation2.txt +0 -21
  303. package/test/corpus/snippetTests/classes/lambdaConstraints1.txt +0 -190
  304. package/test/corpus/snippetTests/classes/listConstraints1.txt +0 -312
  305. package/test/corpus/snippetTests/classes/mapConstraints1.txt +0 -495
  306. package/test/corpus/snippetTests/classes/nullableTypes.txt +0 -187
  307. package/test/corpus/snippetTests/classes/setConstraints1.txt +0 -312
  308. package/test/corpus/snippetTests/classes/supercalls.txt +0 -317
  309. package/test/corpus/snippetTests/classes/unionTypes.txt +0 -543
  310. package/test/corpus/snippetTests/classes/unionTypesErrorAlias.txt +0 -93
  311. package/test/corpus/snippetTests/classes/unionTypesErrorDifferent1.txt +0 -47
  312. package/test/corpus/snippetTests/classes/unionTypesErrorDifferent2.txt +0 -52
  313. package/test/corpus/snippetTests/classes/unionTypesErrorMultipleAliases.txt +0 -36
  314. package/test/corpus/snippetTests/classes/unionTypesErrorNested.txt +0 -99
  315. package/test/corpus/snippetTests/classes/unionTypesErrorSimple.txt +0 -42
  316. package/test/corpus/snippetTests/classes/unionTypesErrorString1.txt +0 -43
  317. package/test/corpus/snippetTests/classes/unionTypesErrorString2.txt +0 -85
  318. package/test/corpus/snippetTests/classes/wrongType1.txt +0 -34
  319. package/test/corpus/snippetTests/classes/wrongType2.txt +0 -47
  320. package/test/corpus/snippetTests/classes/wrongType3.txt +0 -71
  321. package/test/corpus/snippetTests/classes/wrongType4.txt +0 -77
  322. package/test/corpus/snippetTests/classes/wrongType6.txt +0 -43
  323. package/test/corpus/snippetTests/errors/abstractOpenMember.txt +0 -13
  324. package/test/corpus/snippetTests/errors/analyzeImportsCannotFindModule.txt +0 -41
  325. package/test/corpus/snippetTests/errors/analyzeImportsInvalidGlob.txt +0 -41
  326. package/test/corpus/snippetTests/errors/analyzeInvalidHttpModule.txt +0 -26
  327. package/test/corpus/snippetTests/errors/analyzeInvalidModuleUri.txt +0 -26
  328. package/test/corpus/snippetTests/errors/analyzeRelativeModuleUri.txt +0 -26
  329. package/test/corpus/snippetTests/errors/anyConverterError.txt +0 -56
  330. package/test/corpus/snippetTests/errors/baseModule.txt +0 -24
  331. package/test/corpus/snippetTests/errors/cannotAmendFixedProperty1.txt +0 -62
  332. package/test/corpus/snippetTests/errors/cannotAmendFixedProperty2.txt +0 -24
  333. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty1.txt +0 -45
  334. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty2.txt +0 -19
  335. package/test/corpus/snippetTests/errors/cannotAssignFixedProperty3.txt +0 -31
  336. package/test/corpus/snippetTests/errors/cannotAssignToNothing.txt +0 -15
  337. package/test/corpus/snippetTests/errors/cannotChangeFixed1.txt +0 -35
  338. package/test/corpus/snippetTests/errors/cannotChangeFixed2.txt +0 -35
  339. package/test/corpus/snippetTests/errors/cannotFindMapKey.txt +0 -39
  340. package/test/corpus/snippetTests/errors/cannotFindStdLibModule.txt +0 -20
  341. package/test/corpus/snippetTests/errors/cannotInferParent2.txt +0 -14
  342. package/test/corpus/snippetTests/errors/cannotInferParent3.txt +0 -48
  343. package/test/corpus/snippetTests/errors/cannotInstantiateAbstractModule.txt +0 -21
  344. package/test/corpus/snippetTests/errors/cannotRenderMixin.txt +0 -41
  345. package/test/corpus/snippetTests/errors/classExtendsSelf.txt +0 -27
  346. package/test/corpus/snippetTests/errors/constraintDetails1.txt +0 -80
  347. package/test/corpus/snippetTests/errors/constraintDetails2.txt +0 -77
  348. package/test/corpus/snippetTests/errors/constraintDetails3.txt +0 -87
  349. package/test/corpus/snippetTests/errors/duplicateTypeParameter.txt +0 -22
  350. package/test/corpus/snippetTests/errors/extendExternalClass.txt +0 -12
  351. package/test/corpus/snippetTests/errors/extendTypeAlias.txt +0 -33
  352. package/test/corpus/snippetTests/errors/forGeneratorCannotGenerateMethods.txt +0 -30
  353. package/test/corpus/snippetTests/errors/forGeneratorCannotGenerateProperties.txt +0 -28
  354. package/test/corpus/snippetTests/errors/forGeneratorCannotIterateOverThisValue.txt +0 -21
  355. package/test/corpus/snippetTests/errors/forGeneratorCannotIterateOverTyped.txt +0 -27
  356. package/test/corpus/snippetTests/errors/forGeneratorDuplicateParams1.txt +0 -38
  357. package/test/corpus/snippetTests/errors/fullStackTraces.txt +0 -64
  358. package/test/corpus/snippetTests/errors/fullStackTraces2.txt +0 -56
  359. package/test/corpus/snippetTests/errors/functionNotFoundInClass.txt +0 -35
  360. package/test/corpus/snippetTests/errors/functionNotFoundInModule.txt +0 -25
  361. package/test/corpus/snippetTests/errors/functionNotFoundInScope.txt +0 -38
  362. package/test/corpus/snippetTests/errors/functionNotFoundMaybeLambda.txt +0 -24
  363. package/test/corpus/snippetTests/errors/functionNotFoundMaybeProperty.txt +0 -18
  364. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias1.txt +0 -16
  365. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias2.txt +0 -16
  366. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias3.txt +0 -15
  367. package/test/corpus/snippetTests/errors/intrinsifiedTypeAlias4.txt +0 -15
  368. package/test/corpus/snippetTests/errors/invalidClassMethodModifier.txt +0 -29
  369. package/test/corpus/snippetTests/errors/invalidClassModifier.txt +0 -11
  370. package/test/corpus/snippetTests/errors/invalidClassModifier2.txt +0 -12
  371. package/test/corpus/snippetTests/errors/invalidClassPropertyModifier.txt +0 -31
  372. package/test/corpus/snippetTests/errors/invalidGlobImport1.txt +0 -19
  373. package/test/corpus/snippetTests/errors/invalidGlobImport4.txt +0 -19
  374. package/test/corpus/snippetTests/errors/invalidGlobImport5.txt +0 -20
  375. package/test/corpus/snippetTests/errors/invalidGlobImport6.txt +0 -14
  376. package/test/corpus/snippetTests/errors/invalidGlobImport7.txt +0 -21
  377. package/test/corpus/snippetTests/errors/invalidGlobImport8.txt +0 -22
  378. package/test/corpus/snippetTests/errors/invalidGlobRead1.txt +0 -14
  379. package/test/corpus/snippetTests/errors/invalidGlobRead2.txt +0 -14
  380. package/test/corpus/snippetTests/errors/invalidGlobRead3.txt +0 -14
  381. package/test/corpus/snippetTests/errors/invalidImportBackslashSep.txt +0 -14
  382. package/test/corpus/snippetTests/errors/invalidImportUri.txt +0 -19
  383. package/test/corpus/snippetTests/errors/invalidMethodModifier.txt +0 -14
  384. package/test/corpus/snippetTests/errors/invalidModuleModifier.txt +0 -20
  385. package/test/corpus/snippetTests/errors/invalidObjectPropertyModifier.txt +0 -17
  386. package/test/corpus/snippetTests/errors/invalidOutput1.txt +0 -17
  387. package/test/corpus/snippetTests/errors/invalidOutput2.txt +0 -22
  388. package/test/corpus/snippetTests/errors/invalidOutput3.txt +0 -12
  389. package/test/corpus/snippetTests/errors/invalidPropertyModifier.txt +0 -16
  390. package/test/corpus/snippetTests/errors/invalidTripleDotSyntax1.txt +0 -11
  391. package/test/corpus/snippetTests/errors/invalidTripleDotSyntax2.txt +0 -11
  392. package/test/corpus/snippetTests/errors/invalidTypeAliasModifier.txt +0 -14
  393. package/test/corpus/snippetTests/errors/invalidTypeName1.txt +0 -24
  394. package/test/corpus/snippetTests/errors/invalidTypeName2.txt +0 -31
  395. package/test/corpus/snippetTests/errors/invalidTypeName3.txt +0 -19
  396. package/test/corpus/snippetTests/errors/invalidTypeName4.txt +0 -24
  397. package/test/corpus/snippetTests/errors/letExpressionError1.txt +0 -24
  398. package/test/corpus/snippetTests/errors/letExpressionError2.txt +0 -27
  399. package/test/corpus/snippetTests/errors/letExpressionErrorTyped.txt +0 -27
  400. package/test/corpus/snippetTests/errors/listingTypeCheckError1.txt +0 -24
  401. package/test/corpus/snippetTests/errors/listingTypeCheckError2.txt +0 -30
  402. package/test/corpus/snippetTests/errors/listingTypeCheckError3.txt +0 -36
  403. package/test/corpus/snippetTests/errors/listingTypeCheckError4.txt +0 -43
  404. package/test/corpus/snippetTests/errors/listingTypeCheckError5.txt +0 -40
  405. package/test/corpus/snippetTests/errors/listingTypeCheckError6.txt +0 -58
  406. package/test/corpus/snippetTests/errors/listingTypeCheckError7.txt +0 -42
  407. package/test/corpus/snippetTests/errors/listingTypeCheckError8.txt +0 -84
  408. package/test/corpus/snippetTests/errors/listingTypeCheckError9.txt +0 -97
  409. package/test/corpus/snippetTests/errors/localFixedMember.txt +0 -19
  410. package/test/corpus/snippetTests/errors/localFunctionWithTypeParameter.txt +0 -18
  411. package/test/corpus/snippetTests/errors/localHiddenMember.txt +0 -17
  412. package/test/corpus/snippetTests/errors/mappingTypeCheckError1.txt +0 -29
  413. package/test/corpus/snippetTests/errors/mappingTypeCheckError10.txt +0 -49
  414. package/test/corpus/snippetTests/errors/mappingTypeCheckError11.txt +0 -106
  415. package/test/corpus/snippetTests/errors/mappingTypeCheckError2.txt +0 -30
  416. package/test/corpus/snippetTests/errors/mappingTypeCheckError3.txt +0 -30
  417. package/test/corpus/snippetTests/errors/mappingTypeCheckError4.txt +0 -36
  418. package/test/corpus/snippetTests/errors/mappingTypeCheckError5.txt +0 -41
  419. package/test/corpus/snippetTests/errors/mappingTypeCheckError6.txt +0 -75
  420. package/test/corpus/snippetTests/errors/mappingTypeCheckError7.txt +0 -45
  421. package/test/corpus/snippetTests/errors/mappingTypeCheckError8.txt +0 -33
  422. package/test/corpus/snippetTests/errors/mappingTypeCheckError9.txt +0 -69
  423. package/test/corpus/snippetTests/errors/missingLocalPropertyValue1.txt +0 -15
  424. package/test/corpus/snippetTests/errors/missingLocalPropertyValue2.txt +0 -22
  425. package/test/corpus/snippetTests/errors/moduleAmendsSelf.txt +0 -13
  426. package/test/corpus/snippetTests/errors/moduleAmendsVersionCheck.txt +0 -13
  427. package/test/corpus/snippetTests/errors/moduleAmendsVersionCheck2.txt +0 -22
  428. package/test/corpus/snippetTests/errors/moduleExpected.txt +0 -43
  429. package/test/corpus/snippetTests/errors/moduleExtendsSelf.txt +0 -20
  430. package/test/corpus/snippetTests/errors/moduleExtendsVersionCheck.txt +0 -13
  431. package/test/corpus/snippetTests/errors/moduleExtendsVersionCheck2.txt +0 -22
  432. package/test/corpus/snippetTests/errors/moduleImportVersionCheck.txt +0 -20
  433. package/test/corpus/snippetTests/errors/moduleWithHighMinPklVersion.txt +0 -29
  434. package/test/corpus/snippetTests/errors/noDefault.txt +0 -23
  435. package/test/corpus/snippetTests/errors/noDefault2.txt +0 -31
  436. package/test/corpus/snippetTests/errors/objectCannotHaveElement.txt +0 -72
  437. package/test/corpus/snippetTests/errors/objectCannotHaveElement2.txt +0 -98
  438. package/test/corpus/snippetTests/errors/objectCannotHavePredicateMember.txt +0 -25
  439. package/test/corpus/snippetTests/errors/outOfRange1.txt +0 -14
  440. package/test/corpus/snippetTests/errors/outOfRange2.txt +0 -17
  441. package/test/corpus/snippetTests/errors/outOfRange3.txt +0 -21
  442. package/test/corpus/snippetTests/errors/propertyNotFound1.txt +0 -32
  443. package/test/corpus/snippetTests/errors/propertyNotFound2.txt +0 -18
  444. package/test/corpus/snippetTests/errors/refusingToLoadModule.txt +0 -18
  445. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveElement.txt +0 -38
  446. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveEntry.txt +0 -34
  447. package/test/corpus/snippetTests/errors/spreadSyntaxCannotHaveProperty.txt +0 -34
  448. package/test/corpus/snippetTests/errors/spreadSyntaxCannotIterateOverTyped.txt +0 -44
  449. package/test/corpus/snippetTests/errors/spreadSyntaxCannotSpreadListIntoMapping.txt +0 -37
  450. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateEntry1.txt +0 -39
  451. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateEntry2.txt +0 -39
  452. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateProperty1.txt +0 -32
  453. package/test/corpus/snippetTests/errors/spreadSyntaxDuplicateProperty2.txt +0 -32
  454. package/test/corpus/snippetTests/errors/spreadSyntaxNullValue.txt +0 -20
  455. package/test/corpus/snippetTests/errors/spreadSyntaxUnknownTypedProperty.txt +0 -47
  456. package/test/corpus/snippetTests/errors/stackTraceWithQuotedMemberName.txt +0 -23
  457. package/test/corpus/snippetTests/errors/supercalls.txt +0 -18
  458. package/test/corpus/snippetTests/errors/typeMismatchHelper.txt +0 -19
  459. package/test/corpus/snippetTests/errors/typeMismatchWithSameQualifiedClassName.txt +0 -38
  460. package/test/corpus/snippetTests/errors/typeMismatchWithSameQualifiedModuleName.txt +0 -28
  461. package/test/corpus/snippetTests/errors/undefinedOp1.txt +0 -12
  462. package/test/corpus/snippetTests/errors/undefinedOp2.txt +0 -14
  463. package/test/corpus/snippetTests/errors/undefinedOp3.txt +0 -24
  464. package/test/corpus/snippetTests/errors/undefinedProperty1.txt +0 -28
  465. package/test/corpus/snippetTests/errors/undefinedProperty2.txt +0 -15
  466. package/test/corpus/snippetTests/errors/undefinedProperty3.txt +0 -95
  467. package/test/corpus/snippetTests/errors/undefinedProperty4.txt +0 -141
  468. package/test/corpus/snippetTests/errors/undefinedProperty5.txt +0 -160
  469. package/test/corpus/snippetTests/errors/undefinedProperty6.txt +0 -40
  470. package/test/corpus/snippetTests/errors/undefinedProperty7.txt +0 -35
  471. package/test/corpus/snippetTests/errors/undefinedProperty8.txt +0 -34
  472. package/test/corpus/snippetTests/errors/underscoreLambda.txt +0 -37
  473. package/test/corpus/snippetTests/errors/underscoreLet.txt +0 -17
  474. package/test/corpus/snippetTests/errors/userDefinedTypeParameter1.txt +0 -22
  475. package/test/corpus/snippetTests/errors/userDefinedTypeParameter2.txt +0 -32
  476. package/test/corpus/snippetTests/errors/wrongForGeneratorType1.txt +0 -35
  477. package/test/corpus/snippetTests/errors/wrongForGeneratorType2.txt +0 -37
  478. package/test/corpus/snippetTests/errors/wrongNumberOfMapArguments.txt +0 -16
  479. package/test/corpus/snippetTests/generators/duplicateDefinition1.txt +0 -23
  480. package/test/corpus/snippetTests/generators/duplicateDefinition2.txt +0 -30
  481. package/test/corpus/snippetTests/generators/duplicateDefinition3.txt +0 -26
  482. package/test/corpus/snippetTests/generators/elementGenerators.txt +0 -2628
  483. package/test/corpus/snippetTests/generators/elementGeneratorsTyped.txt +0 -1593
  484. package/test/corpus/snippetTests/generators/entryGenerators.txt +0 -3013
  485. package/test/corpus/snippetTests/generators/entryGeneratorsTyped.txt +0 -1858
  486. package/test/corpus/snippetTests/generators/forGeneratorInMixins.txt +0 -301
  487. package/test/corpus/snippetTests/generators/forGeneratorLexicalScope.txt +0 -199
  488. package/test/corpus/snippetTests/generators/forGeneratorNestedReference.txt +0 -277
  489. package/test/corpus/snippetTests/generators/forGeneratorNestedReference2.txt +0 -98
  490. package/test/corpus/snippetTests/generators/forGeneratorVariableShadowing.txt +0 -177
  491. package/test/corpus/snippetTests/generators/generatorNoMembers.txt +0 -157
  492. package/test/corpus/snippetTests/generators/predicateMembersDynamicListing.txt +0 -461
  493. package/test/corpus/snippetTests/generators/predicateMembersDynamicMapping.txt +0 -473
  494. package/test/corpus/snippetTests/generators/predicateMembersListing.txt +0 -463
  495. package/test/corpus/snippetTests/generators/predicateMembersMapping.txt +0 -474
  496. package/test/corpus/snippetTests/generators/predicateMembersThis.txt +0 -82
  497. package/test/corpus/snippetTests/generators/propertyGenerators.txt +0 -104
  498. package/test/corpus/snippetTests/generators/spreadSyntaxDynamic.txt +0 -411
  499. package/test/corpus/snippetTests/generators/spreadSyntaxListing.txt +0 -496
  500. package/test/corpus/snippetTests/generators/spreadSyntaxMapping.txt +0 -655
  501. package/test/corpus/snippetTests/generators/spreadSyntaxNoSpace.txt +0 -32
  502. package/test/corpus/snippetTests/generators/spreadSyntaxNullable.txt +0 -37
  503. package/test/corpus/snippetTests/generators/spreadSyntaxTyped.txt +0 -59
  504. package/test/corpus/snippetTests/implementation/equality.txt +0 -198
  505. package/test/corpus/snippetTests/implementation/inequality.txt +0 -198
  506. package/test/corpus/snippetTests/internal/polymorphicCallSite.txt +0 -499
  507. package/test/corpus/snippetTests/lambdas/amendLambdaDef.txt +0 -310
  508. package/test/corpus/snippetTests/lambdas/amendLambdaExpr.txt +0 -325
  509. package/test/corpus/snippetTests/lambdas/amendLambdaExternalClassError.txt +0 -45
  510. package/test/corpus/snippetTests/lambdas/amendLambdaParameters.txt +0 -155
  511. package/test/corpus/snippetTests/lambdas/amendLambdaParametersTyped.txt +0 -420
  512. package/test/corpus/snippetTests/lambdas/amendLambdaThatReturnsAnotherLambda.txt +0 -380
  513. package/test/corpus/snippetTests/lambdas/amendLambdaTooFewArgsError.txt +0 -60
  514. package/test/corpus/snippetTests/lambdas/amendLambdaTooManyArgsError.txt +0 -62
  515. package/test/corpus/snippetTests/lambdas/equality.txt +0 -62
  516. package/test/corpus/snippetTests/lambdas/inequality.txt +0 -62
  517. package/test/corpus/snippetTests/lambdas/lambda1.txt +0 -85
  518. package/test/corpus/snippetTests/lambdas/lambda2.txt +0 -78
  519. package/test/corpus/snippetTests/lambdas/lambda3.txt +0 -381
  520. package/test/corpus/snippetTests/lambdas/lambda4.txt +0 -147
  521. package/test/corpus/snippetTests/lambdas/lambda5.txt +0 -307
  522. package/test/corpus/snippetTests/lambdas/lambdaStackTrace1.txt +0 -35
  523. package/test/corpus/snippetTests/lambdas/lambdaStackTrace2.txt +0 -37
  524. package/test/corpus/snippetTests/lambdas/lambdaStackTrace3.txt +0 -33
  525. package/test/corpus/snippetTests/lambdas/pipeOperator.txt +0 -189
  526. package/test/corpus/snippetTests/lambdas/tooManyLambdaParams.txt +0 -27
  527. package/test/corpus/snippetTests/lambdas/typedLambdas.txt +0 -278
  528. package/test/corpus/snippetTests/lambdas/wrongArgumentListLength.txt +0 -37
  529. package/test/corpus/snippetTests/listings/cacheStealing.txt +0 -56
  530. package/test/corpus/snippetTests/listings/cacheStealingTypeCheck.txt +0 -27
  531. package/test/corpus/snippetTests/listings/default.txt +0 -133
  532. package/test/corpus/snippetTests/listings/equality.txt +0 -341
  533. package/test/corpus/snippetTests/listings/hashCode.txt +0 -438
  534. package/test/corpus/snippetTests/listings/inequality.txt +0 -173
  535. package/test/corpus/snippetTests/listings/listing1.txt +0 -360
  536. package/test/corpus/snippetTests/listings/listing2.txt +0 -755
  537. package/test/corpus/snippetTests/listings/listing3.txt +0 -490
  538. package/test/corpus/snippetTests/listings/listing4.txt +0 -156
  539. package/test/corpus/snippetTests/listings/listing6.txt +0 -208
  540. package/test/corpus/snippetTests/listings/listing7.txt +0 -71
  541. package/test/corpus/snippetTests/listings/typeCheck.txt +0 -2506
  542. package/test/corpus/snippetTests/listings/wrongIndex.txt +0 -121
  543. package/test/corpus/snippetTests/listings/wrongParent.txt +0 -253
  544. package/test/corpus/snippetTests/listings2/default.txt +0 -157
  545. package/test/corpus/snippetTests/listings2/equality.txt +0 -358
  546. package/test/corpus/snippetTests/listings2/inequality.txt +0 -227
  547. package/test/corpus/snippetTests/listings2/listing1.txt +0 -372
  548. package/test/corpus/snippetTests/listings2/listing2.txt +0 -904
  549. package/test/corpus/snippetTests/listings2/listing3.txt +0 -568
  550. package/test/corpus/snippetTests/listings2/typeCheck.txt +0 -336
  551. package/test/corpus/snippetTests/listings2/wrongIndex.txt +0 -151
  552. package/test/corpus/snippetTests/listings2/wrongParent.txt +0 -313
  553. package/test/corpus/snippetTests/mappings/default.txt +0 -174
  554. package/test/corpus/snippetTests/mappings/duplicateComputedKey.txt +0 -85
  555. package/test/corpus/snippetTests/mappings/duplicateConstantKey.txt +0 -32
  556. package/test/corpus/snippetTests/mappings/equality.txt +0 -383
  557. package/test/corpus/snippetTests/mappings/hashCode.txt +0 -461
  558. package/test/corpus/snippetTests/mappings/inequality.txt +0 -198
  559. package/test/corpus/snippetTests/mappings/mapping1.txt +0 -590
  560. package/test/corpus/snippetTests/mappings/mapping2.txt +0 -491
  561. package/test/corpus/snippetTests/mappings/stringKeyNotFound.txt +0 -50
  562. package/test/corpus/snippetTests/mappings/typeCheck.txt +0 -2877
  563. package/test/corpus/snippetTests/mappings/wrongParent.txt +0 -262
  564. package/test/corpus/snippetTests/mappings2/default.txt +0 -195
  565. package/test/corpus/snippetTests/mappings2/duplicateComputedKey.txt +0 -99
  566. package/test/corpus/snippetTests/mappings2/duplicateConstantKey.txt +0 -39
  567. package/test/corpus/snippetTests/mappings2/equality.txt +0 -416
  568. package/test/corpus/snippetTests/mappings2/inequality.txt +0 -268
  569. package/test/corpus/snippetTests/mappings2/mapping1.txt +0 -604
  570. package/test/corpus/snippetTests/mappings2/mapping2.txt +0 -595
  571. package/test/corpus/snippetTests/mappings2/stringKeyNotFound.txt +0 -57
  572. package/test/corpus/snippetTests/mappings2/typeCheck.txt +0 -582
  573. package/test/corpus/snippetTests/mappings2/wrongParent.txt +0 -334
  574. package/test/corpus/snippetTests/methods/methodParameterConstraints1.txt +0 -220
  575. package/test/corpus/snippetTests/methods/methodParameterConstraints2.txt +0 -382
  576. package/test/corpus/snippetTests/methods/methodParameterTypes2.txt +0 -734
  577. package/test/corpus/snippetTests/methods/methodParameterTypes3.txt +0 -196
  578. package/test/corpus/snippetTests/modules/amendModule1.txt +0 -36
  579. package/test/corpus/snippetTests/modules/amendModule2.txt +0 -28
  580. package/test/corpus/snippetTests/modules/amendModule3.txt +0 -24
  581. package/test/corpus/snippetTests/modules/amendModule4.txt +0 -35
  582. package/test/corpus/snippetTests/modules/amendModule5.txt +0 -68
  583. package/test/corpus/snippetTests/modules/amendModule6.txt +0 -13
  584. package/test/corpus/snippetTests/modules/equality.txt +0 -91
  585. package/test/corpus/snippetTests/modules/extendModule1.txt +0 -80
  586. package/test/corpus/snippetTests/modules/externalFunction.txt +0 -14
  587. package/test/corpus/snippetTests/modules/externalProperty.txt +0 -16
  588. package/test/corpus/snippetTests/modules/filename with spaces 2.txt +0 -14
  589. package/test/corpus/snippetTests/modules/filename with spaces.txt +0 -13
  590. package/test/corpus/snippetTests/modules/functions.txt +0 -264
  591. package/test/corpus/snippetTests/modules/invalidAmend1.txt +0 -18
  592. package/test/corpus/snippetTests/modules/invalidAmend2.txt +0 -19
  593. package/test/corpus/snippetTests/modules/invalidAmend3.txt +0 -23
  594. package/test/corpus/snippetTests/modules/invalidAmend4.txt +0 -21
  595. package/test/corpus/snippetTests/modules/invalidAmend5.txt +0 -17
  596. package/test/corpus/snippetTests/modules/invalidAmend6.txt +0 -22
  597. package/test/corpus/snippetTests/modules/invalidExtend1.txt +0 -18
  598. package/test/corpus/snippetTests/modules/invalidExtend2.txt +0 -13
  599. package/test/corpus/snippetTests/modules/invalidExtend3.txt +0 -13
  600. package/test/corpus/snippetTests/modules/library.txt +0 -77
  601. package/test/corpus/snippetTests/modules/lists.txt +0 -26
  602. package/test/corpus/snippetTests/modules/objects.txt +0 -22
  603. package/test/corpus/snippetTests/modules/recursiveModule1.txt +0 -51
  604. package/test/corpus/snippetTests/modules/recursiveModule2.txt +0 -26
  605. package/test/corpus/snippetTests/modules/supercalls1.txt +0 -43
  606. package/test/corpus/snippetTests/modules/supercalls2.txt +0 -76
  607. package/test/corpus/snippetTests/modules/supercalls3.txt +0 -142
  608. package/test/corpus/snippetTests/modules/typedModuleMethods1.txt +0 -229
  609. package/test/corpus/snippetTests/modules/typedModuleProperties1.txt +0 -106
  610. package/test/corpus/snippetTests/modules/typedModuleProperties2.txt +0 -16
  611. package/test/corpus/snippetTests/modules/typedModuleProperties3.txt +0 -20
  612. package/test/corpus/snippetTests/modules//346/227/245/346/234/254/350/252/236.txt +0 -45
  613. package/test/corpus/snippetTests/modules//346/227/245/346/234/254/350/252/236_error.txt +0 -14
  614. package/test/corpus/snippetTests/objects/closure.txt +0 -143
  615. package/test/corpus/snippetTests/objects/configureObjectAssign.txt +0 -78
  616. package/test/corpus/snippetTests/objects/equality.txt +0 -989
  617. package/test/corpus/snippetTests/objects/hashCode.txt +0 -566
  618. package/test/corpus/snippetTests/objects/implicitReceiver1.txt +0 -37
  619. package/test/corpus/snippetTests/objects/implicitReceiver2.txt +0 -33
  620. package/test/corpus/snippetTests/objects/implicitReceiver3.txt +0 -29
  621. package/test/corpus/snippetTests/objects/implicitReceiver4.txt +0 -25
  622. package/test/corpus/snippetTests/objects/inequality.txt +0 -777
  623. package/test/corpus/snippetTests/objects/lateBinding1.txt +0 -60
  624. package/test/corpus/snippetTests/objects/lateBinding2.txt +0 -60
  625. package/test/corpus/snippetTests/objects/lateBinding3.txt +0 -81
  626. package/test/corpus/snippetTests/objects/lateBinding4.txt +0 -77
  627. package/test/corpus/snippetTests/objects/outer.txt +0 -91
  628. package/test/corpus/snippetTests/objects/outer2.txt +0 -28
  629. package/test/corpus/snippetTests/objects/super1.txt +0 -67
  630. package/test/corpus/snippetTests/objects/super2.txt +0 -59
  631. package/test/corpus/snippetTests/objects/super3.txt +0 -59
  632. package/test/corpus/snippetTests/objects/super4.txt +0 -66
  633. package/test/corpus/snippetTests/objects/super5.txt +0 -69
  634. package/test/corpus/snippetTests/objects/this1.txt +0 -24
  635. package/test/corpus/snippetTests/objects/this2.txt +0 -71
  636. package/test/corpus/snippetTests/packages/badImport1.error.txt +0 -14
  637. package/test/corpus/snippetTests/packages/badImport10.error.txt +0 -14
  638. package/test/corpus/snippetTests/packages/badImport11.error.txt +0 -14
  639. package/test/corpus/snippetTests/packages/badImport2.error.txt +0 -14
  640. package/test/corpus/snippetTests/packages/badImport3.error.txt +0 -14
  641. package/test/corpus/snippetTests/packages/badImport4.error.txt +0 -14
  642. package/test/corpus/snippetTests/packages/badImport6.error.txt +0 -20
  643. package/test/corpus/snippetTests/packages/badImport7.error.txt +0 -14
  644. package/test/corpus/snippetTests/packages/badImport8.error.txt +0 -14
  645. package/test/corpus/snippetTests/packages/badImport9.error.txt +0 -14
  646. package/test/corpus/snippetTests/packages/badRead1.error.txt +0 -14
  647. package/test/corpus/snippetTests/packages/badRead2.error.txt +0 -14
  648. package/test/corpus/snippetTests/packages/badRead3.error.txt +0 -14
  649. package/test/corpus/snippetTests/packages/badRead4.error.txt +0 -14
  650. package/test/corpus/snippetTests/packages/badRead8.error.txt +0 -14
  651. package/test/corpus/snippetTests/packages/badRead9.error.txt +0 -14
  652. package/test/corpus/snippetTests/packages/packages1.txt +0 -103
  653. package/test/corpus/snippetTests/packages/packages2.txt +0 -104
  654. package/test/corpus/snippetTests/packages/redirects.txt +0 -54
  655. package/test/corpus/snippetTests/types/ThisInTypeConstraint.txt +0 -342
  656. package/test/corpus/snippetTests/types/currentModuleType1.txt +0 -343
  657. package/test/corpus/snippetTests/types/currentModuleType2.txt +0 -351
  658. package/test/corpus/snippetTests/types/currentModuleType3.txt +0 -18
  659. package/test/corpus/snippetTests/types/cyclicTypeAlias1.txt +0 -17
  660. package/test/corpus/snippetTests/types/cyclicTypeAlias2.txt +0 -42
  661. package/test/corpus/snippetTests/types/modifiersForTypes.txt +0 -68
  662. package/test/corpus/snippetTests/types/moduleType.txt +0 -58
  663. package/test/corpus/snippetTests/types/nothingType.txt +0 -29
  664. package/test/corpus/snippetTests/types/nothingWithUnions.txt +0 -31
  665. package/test/corpus/snippetTests/types/typeAlias1.txt +0 -925
  666. package/test/corpus/snippetTests/types/typeAlias2.txt +0 -361
  667. package/test/corpus/snippetTests/types/typeAliasConstraint1.txt +0 -79
  668. package/test/corpus/snippetTests/types/typeAliasConstraint2.txt +0 -77
  669. package/test/corpus/snippetTests/types/typeAliasContext.txt +0 -26
  670. package/test/corpus/snippetTests/types/typeAliasUnion.txt +0 -169
  671. package/test/corpus/string/customStringDelimiters.txt +0 -397
  672. package/test/corpus/string/multiline.txt +0 -39
  673. package/test/corpus/string/multilineInterpolation.txt +0 -102
  674. package/test/corpus/string/multilineInterpolation2.txt +0 -15
  675. package/test/corpus/string/simple.txt +0 -13
  676. package/test/corpus/string/singleLineEscapes.txt +0 -64
  677. package/test/corpus/string/singleLineInterpolation.txt +0 -94
  678. package/test/corpus/string/stringWithTwoSlashes.txt +0 -20
  679. package/test/corpus/type/unionType.txt +0 -34
  680. package/test/corpus/type/unionTypeDefaults.txt +0 -46
@@ -1,385 +0,0 @@
1
- ===
2
- annotation/deprecated1.pkl
3
- ===
4
-
5
- open module deprecated1
6
-
7
- function f1(n) = n * 1000 + 1
8
-
9
- @Deprecated
10
- function f2(n) = n * 1000 + 2
11
-
12
- class A {
13
- @Deprecated
14
- function f(n) = n * 1000 + 101
15
- }
16
-
17
- open class B {
18
- function f1(n) = n * 1000 + 201
19
- @Deprecated
20
- function f2(n) = n * 1000 + 202
21
- }
22
-
23
- class C extends B {
24
- @Deprecated
25
- function f1(n) = n * 1000 + 301
26
- }
27
-
28
- res1 = f1(100)
29
- res1b = List(1, 2, 3).map((n) -> f1(n))
30
-
31
- res2 = f2(200)
32
- res2b = List(4, 5, 6).map((n) -> f2(n))
33
-
34
- res3 = new A {}.f(300)
35
- res3b = List(7, 8, 9).map((n) -> new A {}.f(n))
36
-
37
- res4 = new B {}.f1(400)
38
- res4b = List(10, 11, 12).map((n) -> new B {}.f1(n))
39
-
40
- res5 = new B {}.f2(500)
41
- res5b = List(13, 14, 15).map((n) -> new B {}.f2(n))
42
-
43
- res6 = new C {}.f1(600)
44
- res6b = List(16, 17, 18).map((n) -> new C {}.f1(n))
45
-
46
- res7 = new C {}.f2(700)
47
- res7b = List(19, 20, 21).map((n) -> new C {}.f2(n))
48
-
49
- ---
50
-
51
- (module
52
- (moduleHeader
53
- (moduleClause
54
-
55
- (modifier)
56
- (qualifiedIdentifier
57
- (identifier))))
58
- (classMethod
59
- (methodHeader
60
- (identifier)
61
- (parameterList
62
- (typedIdentifier
63
- (identifier))))
64
- (additiveExpr
65
- (multiplicativeExpr
66
- (unqualifiedAccessExpr
67
- (identifier))
68
- (intLiteralExpr))
69
- (intLiteralExpr)))
70
- (classMethod
71
- (annotation
72
- (qualifiedIdentifier
73
- (identifier)))
74
- (methodHeader
75
- (identifier)
76
- (parameterList
77
- (typedIdentifier
78
- (identifier))))
79
- (additiveExpr
80
- (multiplicativeExpr
81
- (unqualifiedAccessExpr
82
- (identifier))
83
- (intLiteralExpr))
84
- (intLiteralExpr)))
85
- (clazz
86
- (identifier)
87
- (classBody
88
- (classMethod
89
- (annotation
90
- (qualifiedIdentifier
91
- (identifier)))
92
- (methodHeader
93
- (identifier)
94
- (parameterList
95
- (typedIdentifier
96
- (identifier))))
97
- (additiveExpr
98
- (multiplicativeExpr
99
- (unqualifiedAccessExpr
100
- (identifier))
101
- (intLiteralExpr))
102
- (intLiteralExpr)))))
103
- (clazz
104
- (modifier)
105
- (identifier)
106
- (classBody
107
- (classMethod
108
- (methodHeader
109
- (identifier)
110
- (parameterList
111
- (typedIdentifier
112
- (identifier))))
113
- (additiveExpr
114
- (multiplicativeExpr
115
- (unqualifiedAccessExpr
116
- (identifier))
117
- (intLiteralExpr))
118
- (intLiteralExpr)))
119
- (classMethod
120
- (annotation
121
- (qualifiedIdentifier
122
- (identifier)))
123
- (methodHeader
124
- (identifier)
125
- (parameterList
126
- (typedIdentifier
127
- (identifier))))
128
- (additiveExpr
129
- (multiplicativeExpr
130
- (unqualifiedAccessExpr
131
- (identifier))
132
- (intLiteralExpr))
133
- (intLiteralExpr)))))
134
- (clazz
135
- (identifier) (classExtendsClause
136
- (qualifiedIdentifier
137
- (identifier)))
138
- (classBody
139
- (classMethod
140
- (annotation
141
- (qualifiedIdentifier
142
- (identifier)))
143
- (methodHeader
144
- (identifier)
145
- (parameterList
146
- (typedIdentifier
147
- (identifier))))
148
- (additiveExpr
149
- (multiplicativeExpr
150
- (unqualifiedAccessExpr
151
- (identifier))
152
- (intLiteralExpr))
153
- (intLiteralExpr)))))
154
- (classProperty
155
- (identifier)
156
- (unqualifiedAccessExpr
157
- (identifier)
158
- (argumentList
159
- (intLiteralExpr))))
160
- (classProperty
161
- (identifier)
162
- (qualifiedAccessExpr
163
- (unqualifiedAccessExpr
164
- (identifier)
165
- (argumentList
166
- (intLiteralExpr)
167
- (intLiteralExpr)
168
- (intLiteralExpr)))
169
- (identifier)
170
- (argumentList
171
- (functionLiteralExpr
172
- (parameterList
173
- (typedIdentifier
174
- (identifier)))
175
- (unqualifiedAccessExpr
176
- (identifier)
177
- (argumentList
178
- (unqualifiedAccessExpr
179
- (identifier))))))))
180
- (classProperty
181
- (identifier)
182
- (unqualifiedAccessExpr
183
- (identifier)
184
- (argumentList
185
- (intLiteralExpr))))
186
- (classProperty
187
- (identifier)
188
- (qualifiedAccessExpr
189
- (unqualifiedAccessExpr
190
- (identifier)
191
- (argumentList
192
- (intLiteralExpr)
193
- (intLiteralExpr)
194
- (intLiteralExpr)))
195
- (identifier)
196
- (argumentList
197
- (functionLiteralExpr
198
- (parameterList
199
- (typedIdentifier
200
- (identifier)))
201
- (unqualifiedAccessExpr
202
- (identifier)
203
- (argumentList
204
- (unqualifiedAccessExpr
205
- (identifier))))))))
206
- (classProperty
207
- (identifier)
208
- (qualifiedAccessExpr
209
- (newExpr
210
- (declaredType
211
- (qualifiedIdentifier
212
- (identifier)))
213
- (objectBody))
214
- (identifier)
215
- (argumentList
216
- (intLiteralExpr))))
217
- (classProperty
218
- (identifier)
219
- (qualifiedAccessExpr
220
- (unqualifiedAccessExpr
221
- (identifier)
222
- (argumentList
223
- (intLiteralExpr)
224
- (intLiteralExpr)
225
- (intLiteralExpr)))
226
- (identifier)
227
- (argumentList
228
- (functionLiteralExpr
229
- (parameterList
230
- (typedIdentifier
231
- (identifier)))
232
- (qualifiedAccessExpr
233
- (newExpr
234
- (declaredType
235
- (qualifiedIdentifier
236
- (identifier)))
237
- (objectBody))
238
- (identifier)
239
- (argumentList
240
- (unqualifiedAccessExpr
241
- (identifier))))))))
242
- (classProperty
243
- (identifier)
244
- (qualifiedAccessExpr
245
- (newExpr
246
- (declaredType
247
- (qualifiedIdentifier
248
- (identifier)))
249
- (objectBody))
250
- (identifier)
251
- (argumentList
252
- (intLiteralExpr))))
253
- (classProperty
254
- (identifier)
255
- (qualifiedAccessExpr
256
- (unqualifiedAccessExpr
257
- (identifier)
258
- (argumentList
259
- (intLiteralExpr)
260
- (intLiteralExpr)
261
- (intLiteralExpr)))
262
- (identifier)
263
- (argumentList
264
- (functionLiteralExpr
265
- (parameterList
266
- (typedIdentifier
267
- (identifier)))
268
- (qualifiedAccessExpr
269
- (newExpr
270
- (declaredType
271
- (qualifiedIdentifier
272
- (identifier)))
273
- (objectBody))
274
- (identifier)
275
- (argumentList
276
- (unqualifiedAccessExpr
277
- (identifier))))))))
278
- (classProperty
279
- (identifier)
280
- (qualifiedAccessExpr
281
- (newExpr
282
- (declaredType
283
- (qualifiedIdentifier
284
- (identifier)))
285
- (objectBody))
286
- (identifier)
287
- (argumentList
288
- (intLiteralExpr))))
289
- (classProperty
290
- (identifier)
291
- (qualifiedAccessExpr
292
- (unqualifiedAccessExpr
293
- (identifier)
294
- (argumentList
295
- (intLiteralExpr)
296
- (intLiteralExpr)
297
- (intLiteralExpr)))
298
- (identifier)
299
- (argumentList
300
- (functionLiteralExpr
301
- (parameterList
302
- (typedIdentifier
303
- (identifier)))
304
- (qualifiedAccessExpr
305
- (newExpr
306
- (declaredType
307
- (qualifiedIdentifier
308
- (identifier)))
309
- (objectBody))
310
- (identifier)
311
- (argumentList
312
- (unqualifiedAccessExpr
313
- (identifier))))))))
314
- (classProperty
315
- (identifier)
316
- (qualifiedAccessExpr
317
- (newExpr
318
- (declaredType
319
- (qualifiedIdentifier
320
- (identifier)))
321
- (objectBody))
322
- (identifier)
323
- (argumentList
324
- (intLiteralExpr))))
325
- (classProperty
326
- (identifier)
327
- (qualifiedAccessExpr
328
- (unqualifiedAccessExpr
329
- (identifier)
330
- (argumentList
331
- (intLiteralExpr)
332
- (intLiteralExpr)
333
- (intLiteralExpr)))
334
- (identifier)
335
- (argumentList
336
- (functionLiteralExpr
337
- (parameterList
338
- (typedIdentifier
339
- (identifier)))
340
- (qualifiedAccessExpr
341
- (newExpr
342
- (declaredType
343
- (qualifiedIdentifier
344
- (identifier)))
345
- (objectBody))
346
- (identifier)
347
- (argumentList
348
- (unqualifiedAccessExpr
349
- (identifier))))))))
350
- (classProperty
351
- (identifier)
352
- (qualifiedAccessExpr
353
- (newExpr
354
- (declaredType
355
- (qualifiedIdentifier
356
- (identifier)))
357
- (objectBody))
358
- (identifier)
359
- (argumentList
360
- (intLiteralExpr))))
361
- (classProperty
362
- (identifier)
363
- (qualifiedAccessExpr
364
- (unqualifiedAccessExpr
365
- (identifier)
366
- (argumentList
367
- (intLiteralExpr)
368
- (intLiteralExpr)
369
- (intLiteralExpr)))
370
- (identifier)
371
- (argumentList
372
- (functionLiteralExpr
373
- (parameterList
374
- (typedIdentifier
375
- (identifier)))
376
- (qualifiedAccessExpr
377
- (newExpr
378
- (declaredType
379
- (qualifiedIdentifier
380
- (identifier)))
381
- (objectBody))
382
- (identifier)
383
- (argumentList
384
- (unqualifiedAccessExpr
385
- (identifier)))))))))
@@ -1,99 +0,0 @@
1
- ===
2
- annotation/deprecated2.pkl
3
- ===
4
-
5
- module deprecated2
6
-
7
- extends "deprecated1.pkl"
8
-
9
- @Deprecated
10
- function f1(n) = -1 * (n * 1000 + 1)
11
-
12
- res1 = f1(800)
13
- res1b = List(22, 23, 24).map((n) -> f1(n))
14
-
15
- res2 = f2(900)
16
- res2b = List(25, 26, 27).map((n) -> f2(n))
17
-
18
- ---
19
-
20
- (module
21
- (moduleHeader
22
- (moduleClause
23
-
24
- (qualifiedIdentifier
25
- (identifier)))
26
- (extendsOrAmendsClause
27
- (stringConstant
28
- (slStringLiteralPart))))
29
- (classMethod
30
- (annotation
31
- (qualifiedIdentifier
32
- (identifier)))
33
- (methodHeader
34
- (identifier)
35
- (parameterList
36
- (typedIdentifier
37
- (identifier))))
38
- (multiplicativeExpr
39
- (unaryMinusExpr
40
- (intLiteralExpr))
41
- (parenthesizedExpr
42
- (additiveExpr
43
- (multiplicativeExpr
44
- (unqualifiedAccessExpr
45
- (identifier))
46
- (intLiteralExpr))
47
- (intLiteralExpr)))))
48
- (classProperty
49
- (identifier)
50
- (unqualifiedAccessExpr
51
- (identifier)
52
- (argumentList
53
- (intLiteralExpr))))
54
- (classProperty
55
- (identifier)
56
- (qualifiedAccessExpr
57
- (unqualifiedAccessExpr
58
- (identifier)
59
- (argumentList
60
- (intLiteralExpr)
61
- (intLiteralExpr)
62
- (intLiteralExpr)))
63
- (identifier)
64
- (argumentList
65
- (functionLiteralExpr
66
- (parameterList
67
- (typedIdentifier
68
- (identifier)))
69
- (unqualifiedAccessExpr
70
- (identifier)
71
- (argumentList
72
- (unqualifiedAccessExpr
73
- (identifier))))))))
74
- (classProperty
75
- (identifier)
76
- (unqualifiedAccessExpr
77
- (identifier)
78
- (argumentList
79
- (intLiteralExpr))))
80
- (classProperty
81
- (identifier)
82
- (qualifiedAccessExpr
83
- (unqualifiedAccessExpr
84
- (identifier)
85
- (argumentList
86
- (intLiteralExpr)
87
- (intLiteralExpr)
88
- (intLiteralExpr)))
89
- (identifier)
90
- (argumentList
91
- (functionLiteralExpr
92
- (parameterList
93
- (typedIdentifier
94
- (identifier)))
95
- (unqualifiedAccessExpr
96
- (identifier)
97
- (argumentList
98
- (unqualifiedAccessExpr
99
- (identifier)))))))))
@@ -1,155 +0,0 @@
1
- ===
2
- annotation/deprecated3.pkl
3
- ===
4
-
5
- module deprecated3
6
-
7
- import "deprecated1.pkl"
8
- import "deprecated2.pkl"
9
-
10
- res1 = deprecated1.f1(1000)
11
- res1b = List(28, 29, 30).map((n) -> deprecated1.f1(n))
12
-
13
- res2 = deprecated1.f2(1100)
14
- res2b = List(31, 32, 33).map((n) -> deprecated1.f2(n))
15
-
16
- res3 = deprecated2.f1(1200)
17
- res3b = List(34, 35, 36).map((n) -> deprecated2.f1(n))
18
-
19
- res4 = deprecated2.f2(1300)
20
- res4b = List(37, 38, 39).map((n) -> deprecated2.f2(n))
21
-
22
- ---
23
-
24
- (module
25
- (moduleHeader
26
- (moduleClause
27
-
28
- (qualifiedIdentifier
29
- (identifier))))
30
- (importClause
31
- (stringConstant
32
- (slStringLiteralPart)))
33
- (importClause
34
- (stringConstant
35
- (slStringLiteralPart)))
36
- (classProperty
37
- (identifier)
38
- (qualifiedAccessExpr
39
- (unqualifiedAccessExpr
40
- (identifier))
41
- (identifier)
42
- (argumentList
43
- (intLiteralExpr))))
44
- (classProperty
45
- (identifier)
46
- (qualifiedAccessExpr
47
- (unqualifiedAccessExpr
48
- (identifier)
49
- (argumentList
50
- (intLiteralExpr)
51
- (intLiteralExpr)
52
- (intLiteralExpr)))
53
- (identifier)
54
- (argumentList
55
- (functionLiteralExpr
56
- (parameterList
57
- (typedIdentifier
58
- (identifier)))
59
- (qualifiedAccessExpr
60
- (unqualifiedAccessExpr
61
- (identifier))
62
- (identifier)
63
- (argumentList
64
- (unqualifiedAccessExpr
65
- (identifier))))))))
66
- (classProperty
67
- (identifier)
68
- (qualifiedAccessExpr
69
- (unqualifiedAccessExpr
70
- (identifier))
71
- (identifier)
72
- (argumentList
73
- (intLiteralExpr))))
74
- (classProperty
75
- (identifier)
76
- (qualifiedAccessExpr
77
- (unqualifiedAccessExpr
78
- (identifier)
79
- (argumentList
80
- (intLiteralExpr)
81
- (intLiteralExpr)
82
- (intLiteralExpr)))
83
- (identifier)
84
- (argumentList
85
- (functionLiteralExpr
86
- (parameterList
87
- (typedIdentifier
88
- (identifier)))
89
- (qualifiedAccessExpr
90
- (unqualifiedAccessExpr
91
- (identifier))
92
- (identifier)
93
- (argumentList
94
- (unqualifiedAccessExpr
95
- (identifier))))))))
96
- (classProperty
97
- (identifier)
98
- (qualifiedAccessExpr
99
- (unqualifiedAccessExpr
100
- (identifier))
101
- (identifier)
102
- (argumentList
103
- (intLiteralExpr))))
104
- (classProperty
105
- (identifier)
106
- (qualifiedAccessExpr
107
- (unqualifiedAccessExpr
108
- (identifier)
109
- (argumentList
110
- (intLiteralExpr)
111
- (intLiteralExpr)
112
- (intLiteralExpr)))
113
- (identifier)
114
- (argumentList
115
- (functionLiteralExpr
116
- (parameterList
117
- (typedIdentifier
118
- (identifier)))
119
- (qualifiedAccessExpr
120
- (unqualifiedAccessExpr
121
- (identifier))
122
- (identifier)
123
- (argumentList
124
- (unqualifiedAccessExpr
125
- (identifier))))))))
126
- (classProperty
127
- (identifier)
128
- (qualifiedAccessExpr
129
- (unqualifiedAccessExpr
130
- (identifier))
131
- (identifier)
132
- (argumentList
133
- (intLiteralExpr))))
134
- (classProperty
135
- (identifier)
136
- (qualifiedAccessExpr
137
- (unqualifiedAccessExpr
138
- (identifier)
139
- (argumentList
140
- (intLiteralExpr)
141
- (intLiteralExpr)
142
- (intLiteralExpr)))
143
- (identifier)
144
- (argumentList
145
- (functionLiteralExpr
146
- (parameterList
147
- (typedIdentifier
148
- (identifier)))
149
- (qualifiedAccessExpr
150
- (unqualifiedAccessExpr
151
- (identifier))
152
- (identifier)
153
- (argumentList
154
- (unqualifiedAccessExpr
155
- (identifier)))))))))
@@ -1,58 +0,0 @@
1
- ===
2
- annotation/deprecatedNoRepeatedWarnings.pkl
3
- ===
4
-
5
- @Deprecated
6
- function foo() = 0
7
-
8
- function bar() = foo()
9
-
10
- shouldWarnForFirstCallToFooFromBar = bar()
11
- shouldNotWarnForRepeatedCallToFooFromBar1 = bar()
12
- shouldNotWarnForRepeatedCallToFooFromBar2 = bar()
13
- shouldWarnForDirectCallToFoo = foo()
14
- shouldWarnForRepeatedDirectCallToFoo = foo()
15
-
16
- ---
17
-
18
- (module
19
- (classMethod
20
- (annotation
21
- (qualifiedIdentifier
22
- (identifier)))
23
- (methodHeader
24
- (identifier)
25
- (parameterList))
26
- (intLiteralExpr))
27
- (classMethod
28
- (methodHeader
29
- (identifier)
30
- (parameterList))
31
- (unqualifiedAccessExpr
32
- (identifier)
33
- (argumentList)))
34
- (classProperty
35
- (identifier)
36
- (unqualifiedAccessExpr
37
- (identifier)
38
- (argumentList)))
39
- (classProperty
40
- (identifier)
41
- (unqualifiedAccessExpr
42
- (identifier)
43
- (argumentList)))
44
- (classProperty
45
- (identifier)
46
- (unqualifiedAccessExpr
47
- (identifier)
48
- (argumentList)))
49
- (classProperty
50
- (identifier)
51
- (unqualifiedAccessExpr
52
- (identifier)
53
- (argumentList)))
54
- (classProperty
55
- (identifier)
56
- (unqualifiedAccessExpr
57
- (identifier)
58
- (argumentList))))