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