diff --git a/actions/ql/lib/CHANGELOG.md b/actions/ql/lib/CHANGELOG.md index 4713be3d4f5..4dfbb8413e2 100644 --- a/actions/ql/lib/CHANGELOG.md +++ b/actions/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.25 + +No user-facing changes. + ## 0.4.24 No user-facing changes. diff --git a/actions/ql/lib/change-notes/released/0.4.25.md b/actions/ql/lib/change-notes/released/0.4.25.md new file mode 100644 index 00000000000..b6bf0f1e3ab --- /dev/null +++ b/actions/ql/lib/change-notes/released/0.4.25.md @@ -0,0 +1,3 @@ +## 0.4.25 + +No user-facing changes. diff --git a/actions/ql/lib/codeql-pack.release.yml b/actions/ql/lib/codeql-pack.release.yml index b26f62aec37..7b212c2605f 100644 --- a/actions/ql/lib/codeql-pack.release.yml +++ b/actions/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.24 +lastReleaseVersion: 0.4.25 diff --git a/actions/ql/lib/qlpack.yml b/actions/ql/lib/qlpack.yml index 2ef4b7765bf..f22b1a9a199 100644 --- a/actions/ql/lib/qlpack.yml +++ b/actions/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-all -version: 0.4.25-dev +version: 0.4.26-dev library: true warnOnImplicitThis: true dependencies: diff --git a/actions/ql/src/CHANGELOG.md b/actions/ql/src/CHANGELOG.md index 9a9f8964755..1e5d2cab0e7 100644 --- a/actions/ql/src/CHANGELOG.md +++ b/actions/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.6.17 + +No user-facing changes. + ## 0.6.16 No user-facing changes. diff --git a/actions/ql/src/change-notes/released/0.6.17.md b/actions/ql/src/change-notes/released/0.6.17.md new file mode 100644 index 00000000000..8f59252451e --- /dev/null +++ b/actions/ql/src/change-notes/released/0.6.17.md @@ -0,0 +1,3 @@ +## 0.6.17 + +No user-facing changes. diff --git a/actions/ql/src/codeql-pack.release.yml b/actions/ql/src/codeql-pack.release.yml index 169788bff08..e1ac143badf 100644 --- a/actions/ql/src/codeql-pack.release.yml +++ b/actions/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.6.16 +lastReleaseVersion: 0.6.17 diff --git a/actions/ql/src/qlpack.yml b/actions/ql/src/qlpack.yml index 51286147674..70e9a695116 100644 --- a/actions/ql/src/qlpack.yml +++ b/actions/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-queries -version: 0.6.17-dev +version: 0.6.18-dev library: false warnOnImplicitThis: true groups: [actions, queries] diff --git a/cpp/ql/lib/CHANGELOG.md b/cpp/ql/lib/CHANGELOG.md index e0c8b287adc..3a543c0da92 100644 --- a/cpp/ql/lib/CHANGELOG.md +++ b/cpp/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.1.4 + +No user-facing changes. + ## 6.1.3 No user-facing changes. diff --git a/cpp/ql/lib/change-notes/released/6.1.4.md b/cpp/ql/lib/change-notes/released/6.1.4.md new file mode 100644 index 00000000000..7c4728fafa4 --- /dev/null +++ b/cpp/ql/lib/change-notes/released/6.1.4.md @@ -0,0 +1,3 @@ +## 6.1.4 + +No user-facing changes. diff --git a/cpp/ql/lib/codeql-pack.release.yml b/cpp/ql/lib/codeql-pack.release.yml index e641a874973..7dbbf7fb553 100644 --- a/cpp/ql/lib/codeql-pack.release.yml +++ b/cpp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 6.1.3 +lastReleaseVersion: 6.1.4 diff --git a/cpp/ql/lib/qlpack.yml b/cpp/ql/lib/qlpack.yml index 76f68c8b83e..02876035046 100644 --- a/cpp/ql/lib/qlpack.yml +++ b/cpp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-all -version: 6.1.4-dev +version: 6.1.5-dev groups: cpp dbscheme: semmlecode.cpp.dbscheme extractor: cpp diff --git a/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll b/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll index cc4647b54e0..c3c3c2dd3e7 100644 --- a/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll +++ b/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll @@ -1709,6 +1709,22 @@ predicate nonNanGuardedVariable(Expr guard, VariableAccess v, boolean branch) { nanExcludingComparison(guard, branch) } +/** + * Adjusts a lower bound to its meaning for integral types. + * + * Examples: + * `>= 3.0` becomes `3.0` + * ` > 3.0` becomes `4.0` + * `>= 3.5` becomes `4.0` + * ` > 3.5` becomes `4.0` + */ +bindingset[strictness, lb] +private float adjustLowerBoundIntegral(RelationStrictness strictness, float lb) { + if strictness = Nonstrict() and lb.floorFloat() = lb + then result = lb + else result = lb.floorFloat() + 1 +} + /** * If the guard is a comparison of the form `p*v + q r`, then this * predicate uses the bounds information for `r` to compute a lower bound @@ -1720,15 +1736,29 @@ private predicate lowerBoundFromGuard(Expr guard, VariableAccess v, float lb, bo | if nonNanGuardedVariable(guard, v, branch) then - if - strictness = Nonstrict() or - not getVariableRangeType(v.getTarget()) instanceof IntegralType - then lb = childLB - else lb = childLB + 1 + if getVariableRangeType(v.getTarget()) instanceof IntegralType + then lb = adjustLowerBoundIntegral(strictness, childLB) + else lb = childLB else lb = varMinVal(v.getTarget()) ) } +/** + * Adjusts an upper bound to its meaning for integral types. + * + * Examples: + * `<= 3.0` becomes `3.0` + * ` < 3.0` becomes `2.0` + * `<= 3.5` becomes `3.0` + * ` < 3.5` becomes `3.0` + */ +bindingset[strictness, ub] +private float adjustUpperBoundIntegral(RelationStrictness strictness, float ub) { + if strictness = Nonstrict() and ub.ceilFloat() = ub + then result = ub + else result = ub.ceilFloat() - 1 +} + /** * If the guard is a comparison of the form `p*v + q r`, then this * predicate uses the bounds information for `r` to compute a upper bound @@ -1740,11 +1770,9 @@ private predicate upperBoundFromGuard(Expr guard, VariableAccess v, float ub, bo | if nonNanGuardedVariable(guard, v, branch) then - if - strictness = Nonstrict() or - not getVariableRangeType(v.getTarget()) instanceof IntegralType - then ub = childUB - else ub = childUB - 1 + if getVariableRangeType(v.getTarget()) instanceof IntegralType + then ub = adjustUpperBoundIntegral(strictness, childUB) + else ub = childUB else ub = varMaxVal(v.getTarget()) ) } diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index a6caf3c6a6b..6747d616b43 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.5.8 + +No user-facing changes. + ## 1.5.7 No user-facing changes. diff --git a/cpp/ql/src/change-notes/released/1.5.8.md b/cpp/ql/src/change-notes/released/1.5.8.md new file mode 100644 index 00000000000..ec8f84e657f --- /dev/null +++ b/cpp/ql/src/change-notes/released/1.5.8.md @@ -0,0 +1,3 @@ +## 1.5.8 + +No user-facing changes. diff --git a/cpp/ql/src/codeql-pack.release.yml b/cpp/ql/src/codeql-pack.release.yml index 227ac5febef..d26e0a52764 100644 --- a/cpp/ql/src/codeql-pack.release.yml +++ b/cpp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.5.7 +lastReleaseVersion: 1.5.8 diff --git a/cpp/ql/src/qlpack.yml b/cpp/ql/src/qlpack.yml index 9161494a401..188d20e50b2 100644 --- a/cpp/ql/src/qlpack.yml +++ b/cpp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-queries -version: 1.5.8-dev +version: 1.5.9-dev groups: - cpp - queries diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected index eb1dbc7b93f..0c520190c8b 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected @@ -352,664 +352,679 @@ | test.c:333:10:333:14 | total | -2147483648 | | test.c:341:32:341:34 | odd | 9007199254740991 | | test.c:343:10:343:16 | shifted | 4503599627370495 | -| test.c:348:7:348:7 | x | -2147483648 | -| test.c:352:10:352:10 | i | 0 | -| test.c:353:5:353:5 | i | 0 | -| test.c:355:3:355:3 | d | -2147483648 | -| test.c:355:7:355:7 | i | 3 | -| test.c:356:7:356:7 | x | 0 | -| test.c:357:9:357:9 | d | 3 | -| test.c:357:14:357:14 | x | 0 | -| test.c:367:3:367:4 | y1 | 0 | -| test.c:367:8:367:8 | x | 0 | -| test.c:367:18:367:18 | x | 0 | -| test.c:368:3:368:4 | y2 | 0 | -| test.c:368:8:368:8 | x | 0 | -| test.c:368:24:368:24 | x | 0 | -| test.c:369:3:369:4 | y3 | 0 | -| test.c:370:3:370:4 | y4 | 0 | -| test.c:371:3:371:4 | y5 | 0 | -| test.c:372:3:372:4 | y6 | 0 | -| test.c:373:3:373:4 | y7 | 0 | -| test.c:374:3:374:4 | y8 | 0 | -| test.c:375:7:375:7 | x | 0 | -| test.c:376:5:376:6 | y3 | 0 | -| test.c:376:10:376:10 | x | 0 | -| test.c:377:5:377:6 | y4 | 0 | -| test.c:377:10:377:10 | x | 0 | -| test.c:378:5:378:6 | y5 | 0 | -| test.c:378:11:378:11 | x | 0 | -| test.c:379:5:379:6 | y6 | 0 | -| test.c:379:27:379:27 | x | 0 | -| test.c:380:5:380:6 | y7 | 0 | -| test.c:380:27:380:27 | x | 0 | -| test.c:381:5:381:6 | y8 | 0 | -| test.c:381:28:381:28 | x | 0 | -| test.c:383:10:383:11 | y1 | 0 | -| test.c:383:15:383:16 | y2 | 0 | -| test.c:383:20:383:21 | y3 | 0 | -| test.c:383:25:383:26 | y4 | 0 | -| test.c:383:30:383:31 | y5 | 0 | -| test.c:383:35:383:36 | y6 | 0 | -| test.c:383:40:383:41 | y7 | 0 | -| test.c:383:45:383:46 | y8 | 0 | -| test.c:389:3:389:4 | y1 | 0 | -| test.c:389:8:389:8 | x | 0 | -| test.c:389:18:389:18 | x | 101 | -| test.c:390:3:390:4 | y2 | 0 | -| test.c:390:8:390:8 | x | 0 | -| test.c:390:25:390:25 | x | 101 | -| test.c:391:3:391:4 | y3 | 0 | -| test.c:392:3:392:4 | y4 | 0 | -| test.c:393:3:393:4 | y5 | 0 | -| test.c:394:7:394:7 | x | 0 | -| test.c:395:5:395:6 | y3 | 0 | -| test.c:395:11:395:11 | x | 300 | -| test.c:396:5:396:6 | y4 | 0 | -| test.c:396:11:396:11 | x | 300 | -| test.c:397:5:397:6 | y5 | 0 | -| test.c:397:27:397:27 | x | 300 | -| test.c:399:10:399:11 | y1 | 101 | -| test.c:399:15:399:16 | y2 | 101 | -| test.c:399:20:399:21 | y3 | 0 | -| test.c:399:25:399:26 | y4 | 100 | -| test.c:399:30:399:31 | y5 | 0 | -| test.c:404:14:404:14 | m | -Infinity | -| test.c:404:18:404:18 | n | -Infinity | -| test.c:404:22:404:22 | o | -Infinity | -| test.c:404:26:404:26 | p | -Infinity | -| test.c:404:30:404:30 | q | -Infinity | -| test.c:405:14:405:14 | m | -Infinity | -| test.c:405:18:405:18 | n | -Infinity | -| test.c:405:22:405:22 | o | -Infinity | -| test.c:405:26:405:26 | p | -Infinity | -| test.c:405:30:405:30 | q | -Infinity | -| test.c:406:14:406:14 | m | -Infinity | -| test.c:406:18:406:18 | n | -Infinity | -| test.c:406:22:406:22 | o | -Infinity | -| test.c:406:26:406:26 | p | -Infinity | -| test.c:406:30:406:30 | q | -Infinity | -| test.c:407:14:407:14 | m | -Infinity | -| test.c:407:18:407:18 | n | -Infinity | -| test.c:407:22:407:22 | o | -Infinity | -| test.c:407:26:407:26 | p | -Infinity | -| test.c:407:30:407:30 | q | -Infinity | -| test.c:408:14:408:14 | m | -Infinity | -| test.c:408:18:408:18 | n | -Infinity | -| test.c:408:22:408:22 | o | -Infinity | -| test.c:408:26:408:26 | p | -Infinity | -| test.c:408:30:408:30 | q | -Infinity | -| test.c:409:14:409:14 | m | -Infinity | -| test.c:409:18:409:18 | n | -Infinity | -| test.c:409:22:409:22 | o | -Infinity | -| test.c:409:26:409:26 | p | -Infinity | -| test.c:409:30:409:30 | q | -Infinity | -| test.c:410:14:410:14 | m | -Infinity | -| test.c:410:18:410:18 | n | -Infinity | -| test.c:410:22:410:22 | o | -Infinity | -| test.c:410:26:410:26 | p | -Infinity | -| test.c:410:30:410:30 | q | -Infinity | -| test.c:411:14:411:14 | m | -Infinity | -| test.c:411:18:411:18 | n | -Infinity | -| test.c:411:22:411:22 | o | -Infinity | -| test.c:411:26:411:26 | p | -Infinity | -| test.c:411:30:411:30 | q | -Infinity | -| test.c:412:14:412:14 | m | -Infinity | -| test.c:412:18:412:18 | n | -Infinity | -| test.c:412:22:412:22 | o | -Infinity | -| test.c:412:26:412:26 | p | -Infinity | -| test.c:412:30:412:30 | q | -Infinity | -| test.c:413:14:413:14 | m | -Infinity | -| test.c:413:18:413:18 | n | -Infinity | -| test.c:413:22:413:22 | o | -Infinity | -| test.c:413:26:413:26 | p | -Infinity | -| test.c:413:30:413:30 | q | -Infinity | -| test.c:414:14:414:14 | m | -Infinity | -| test.c:414:18:414:18 | n | -Infinity | -| test.c:414:22:414:22 | o | -Infinity | -| test.c:414:26:414:26 | p | -Infinity | -| test.c:414:30:414:30 | q | -Infinity | +| test.c:348:27:348:27 | e | 0 | +| test.c:348:40:348:40 | e | 0 | +| test.c:349:25:349:25 | e | 0 | +| test.c:349:39:349:39 | e | 0 | +| test.c:350:27:350:27 | e | 0 | +| test.c:350:40:350:40 | e | 0 | +| test.c:351:27:351:27 | e | 0 | +| test.c:351:40:351:40 | e | 0 | +| test.c:352:27:352:27 | e | 0 | +| test.c:352:41:352:41 | e | 8 | +| test.c:354:10:354:12 | bi1 | 0 | +| test.c:354:16:354:18 | bi2 | 0 | +| test.c:354:22:354:24 | bi3 | 0 | +| test.c:354:28:354:30 | bi4 | 0 | +| test.c:354:34:354:36 | bi5 | 2 | +| test.c:359:7:359:7 | x | -2147483648 | +| test.c:363:10:363:10 | i | 0 | +| test.c:364:5:364:5 | i | 0 | +| test.c:366:3:366:3 | d | -2147483648 | +| test.c:366:7:366:7 | i | 3 | +| test.c:367:7:367:7 | x | 0 | +| test.c:368:9:368:9 | d | 3 | +| test.c:368:14:368:14 | x | 0 | +| test.c:378:3:378:4 | y1 | 0 | +| test.c:378:8:378:8 | x | 0 | +| test.c:378:18:378:18 | x | 0 | +| test.c:379:3:379:4 | y2 | 0 | +| test.c:379:8:379:8 | x | 0 | +| test.c:379:24:379:24 | x | 0 | +| test.c:380:3:380:4 | y3 | 0 | +| test.c:381:3:381:4 | y4 | 0 | +| test.c:382:3:382:4 | y5 | 0 | +| test.c:383:3:383:4 | y6 | 0 | +| test.c:384:3:384:4 | y7 | 0 | +| test.c:385:3:385:4 | y8 | 0 | +| test.c:386:7:386:7 | x | 0 | +| test.c:387:5:387:6 | y3 | 0 | +| test.c:387:10:387:10 | x | 0 | +| test.c:388:5:388:6 | y4 | 0 | +| test.c:388:10:388:10 | x | 0 | +| test.c:389:5:389:6 | y5 | 0 | +| test.c:389:11:389:11 | x | 0 | +| test.c:390:5:390:6 | y6 | 0 | +| test.c:390:27:390:27 | x | 0 | +| test.c:391:5:391:6 | y7 | 0 | +| test.c:391:27:391:27 | x | 0 | +| test.c:392:5:392:6 | y8 | 0 | +| test.c:392:28:392:28 | x | 0 | +| test.c:394:10:394:11 | y1 | 0 | +| test.c:394:15:394:16 | y2 | 0 | +| test.c:394:20:394:21 | y3 | 0 | +| test.c:394:25:394:26 | y4 | 0 | +| test.c:394:30:394:31 | y5 | 0 | +| test.c:394:35:394:36 | y6 | 0 | +| test.c:394:40:394:41 | y7 | 0 | +| test.c:394:45:394:46 | y8 | 0 | +| test.c:400:3:400:4 | y1 | 0 | +| test.c:400:8:400:8 | x | 0 | +| test.c:400:18:400:18 | x | 101 | +| test.c:401:3:401:4 | y2 | 0 | +| test.c:401:8:401:8 | x | 0 | +| test.c:401:25:401:25 | x | 101 | +| test.c:402:3:402:4 | y3 | 0 | +| test.c:403:3:403:4 | y4 | 0 | +| test.c:404:3:404:4 | y5 | 0 | +| test.c:405:7:405:7 | x | 0 | +| test.c:406:5:406:6 | y3 | 0 | +| test.c:406:11:406:11 | x | 300 | +| test.c:407:5:407:6 | y4 | 0 | +| test.c:407:11:407:11 | x | 300 | +| test.c:408:5:408:6 | y5 | 0 | +| test.c:408:27:408:27 | x | 300 | +| test.c:410:10:410:11 | y1 | 101 | +| test.c:410:15:410:16 | y2 | 101 | +| test.c:410:20:410:21 | y3 | 0 | +| test.c:410:25:410:26 | y4 | 100 | +| test.c:410:30:410:31 | y5 | 0 | | test.c:415:14:415:14 | m | -Infinity | | test.c:415:18:415:18 | n | -Infinity | | test.c:415:22:415:22 | o | -Infinity | | test.c:415:26:415:26 | p | -Infinity | | test.c:415:30:415:30 | q | -Infinity | -| test.c:421:19:421:19 | a | 0.143339 | -| test.c:421:23:421:23 | b | 0.222479 | -| test.c:421:27:421:27 | c | 0.051213 | -| test.c:421:31:421:31 | d | 0.369769 | -| test.c:421:35:421:35 | e | 0.105977 | -| test.c:421:39:421:39 | f | 0.107867 | -| test.c:421:43:421:43 | g | 0.025243 | -| test.c:421:47:421:47 | h | 0.149635 | -| test.c:421:51:421:51 | i | 0.053282 | -| test.c:421:55:421:55 | j | 0.276432 | -| test.c:421:59:421:59 | k | 0.205191 | -| test.c:421:63:421:63 | l | 0.132041 | -| test.c:423:10:423:15 | output | 1.842468 | -| test.c:430:7:430:9 | rhs | 0 | -| test.c:430:19:430:21 | rhs | 0 | -| test.c:431:7:431:9 | rhs | 0 | -| test.c:431:19:431:21 | rhs | 0 | -| test.c:432:7:432:9 | rhs | 0 | -| test.c:432:19:432:21 | rhs | 0 | -| test.c:433:7:433:9 | rhs | 0 | -| test.c:433:19:433:21 | rhs | 0 | -| test.c:434:7:434:9 | rhs | 0 | -| test.c:434:19:434:21 | rhs | 0 | -| test.c:435:10:435:12 | rhs | 0 | -| test.c:439:7:439:7 | a | -2147483648 | -| test.c:440:9:440:9 | b | -2147483648 | -| test.c:441:7:441:7 | a | 17 | -| test.c:441:12:441:12 | b | 23 | -| test.c:443:9:443:9 | a | 17 | -| test.c:444:7:444:7 | b | -2147483648 | -| test.c:449:11:449:11 | a | -2147483648 | -| test.c:449:15:449:15 | b | -2147483648 | -| test.c:450:10:450:10 | a | -2147483648 | -| test.c:450:14:450:14 | b | -2147483648 | -| test.c:457:10:457:11 | ip | 0 | -| test.c:457:20:457:21 | ip | 0 | -| test.c:457:40:457:41 | ip | 0 | -| test.c:458:14:458:15 | ip | 1 | -| test.c:459:14:459:15 | ip | 0 | -| test.c:459:34:459:35 | ip | 0 | -| test.c:460:11:460:12 | ip | 0 | -| test.c:461:13:461:14 | ip | 0 | -| test.c:462:14:462:15 | ip | 0 | -| test.c:463:14:463:15 | ip | 0 | -| test.c:464:15:464:16 | ip | 0 | -| test.c:464:41:464:42 | ip | 0 | -| test.c:464:52:464:53 | ip | 0 | -| test.c:464:67:464:68 | ip | 0 | -| test.c:464:78:464:79 | ip | 0 | -| test.c:465:18:465:19 | ip | 0 | -| test.c:466:23:466:24 | ip | 0 | -| test.c:466:34:466:35 | ip | 0 | -| test.c:467:25:467:26 | ip | 0 | +| test.c:416:14:416:14 | m | -Infinity | +| test.c:416:18:416:18 | n | -Infinity | +| test.c:416:22:416:22 | o | -Infinity | +| test.c:416:26:416:26 | p | -Infinity | +| test.c:416:30:416:30 | q | -Infinity | +| test.c:417:14:417:14 | m | -Infinity | +| test.c:417:18:417:18 | n | -Infinity | +| test.c:417:22:417:22 | o | -Infinity | +| test.c:417:26:417:26 | p | -Infinity | +| test.c:417:30:417:30 | q | -Infinity | +| test.c:418:14:418:14 | m | -Infinity | +| test.c:418:18:418:18 | n | -Infinity | +| test.c:418:22:418:22 | o | -Infinity | +| test.c:418:26:418:26 | p | -Infinity | +| test.c:418:30:418:30 | q | -Infinity | +| test.c:419:14:419:14 | m | -Infinity | +| test.c:419:18:419:18 | n | -Infinity | +| test.c:419:22:419:22 | o | -Infinity | +| test.c:419:26:419:26 | p | -Infinity | +| test.c:419:30:419:30 | q | -Infinity | +| test.c:420:14:420:14 | m | -Infinity | +| test.c:420:18:420:18 | n | -Infinity | +| test.c:420:22:420:22 | o | -Infinity | +| test.c:420:26:420:26 | p | -Infinity | +| test.c:420:30:420:30 | q | -Infinity | +| test.c:421:14:421:14 | m | -Infinity | +| test.c:421:18:421:18 | n | -Infinity | +| test.c:421:22:421:22 | o | -Infinity | +| test.c:421:26:421:26 | p | -Infinity | +| test.c:421:30:421:30 | q | -Infinity | +| test.c:422:14:422:14 | m | -Infinity | +| test.c:422:18:422:18 | n | -Infinity | +| test.c:422:22:422:22 | o | -Infinity | +| test.c:422:26:422:26 | p | -Infinity | +| test.c:422:30:422:30 | q | -Infinity | +| test.c:423:14:423:14 | m | -Infinity | +| test.c:423:18:423:18 | n | -Infinity | +| test.c:423:22:423:22 | o | -Infinity | +| test.c:423:26:423:26 | p | -Infinity | +| test.c:423:30:423:30 | q | -Infinity | +| test.c:424:14:424:14 | m | -Infinity | +| test.c:424:18:424:18 | n | -Infinity | +| test.c:424:22:424:22 | o | -Infinity | +| test.c:424:26:424:26 | p | -Infinity | +| test.c:424:30:424:30 | q | -Infinity | +| test.c:425:14:425:14 | m | -Infinity | +| test.c:425:18:425:18 | n | -Infinity | +| test.c:425:22:425:22 | o | -Infinity | +| test.c:425:26:425:26 | p | -Infinity | +| test.c:425:30:425:30 | q | -Infinity | +| test.c:426:14:426:14 | m | -Infinity | +| test.c:426:18:426:18 | n | -Infinity | +| test.c:426:22:426:22 | o | -Infinity | +| test.c:426:26:426:26 | p | -Infinity | +| test.c:426:30:426:30 | q | -Infinity | +| test.c:432:19:432:19 | a | 0.143339 | +| test.c:432:23:432:23 | b | 0.222479 | +| test.c:432:27:432:27 | c | 0.051213 | +| test.c:432:31:432:31 | d | 0.369769 | +| test.c:432:35:432:35 | e | 0.105977 | +| test.c:432:39:432:39 | f | 0.107867 | +| test.c:432:43:432:43 | g | 0.025243 | +| test.c:432:47:432:47 | h | 0.149635 | +| test.c:432:51:432:51 | i | 0.053282 | +| test.c:432:55:432:55 | j | 0.276432 | +| test.c:432:59:432:59 | k | 0.205191 | +| test.c:432:63:432:63 | l | 0.132041 | +| test.c:434:10:434:15 | output | 1.842468 | +| test.c:441:7:441:9 | rhs | 0 | +| test.c:441:19:441:21 | rhs | 0 | +| test.c:442:7:442:9 | rhs | 0 | +| test.c:442:19:442:21 | rhs | 0 | +| test.c:443:7:443:9 | rhs | 0 | +| test.c:443:19:443:21 | rhs | 0 | +| test.c:444:7:444:9 | rhs | 0 | +| test.c:444:19:444:21 | rhs | 0 | +| test.c:445:7:445:9 | rhs | 0 | +| test.c:445:19:445:21 | rhs | 0 | +| test.c:446:10:446:12 | rhs | 0 | +| test.c:450:7:450:7 | a | -2147483648 | +| test.c:451:9:451:9 | b | -2147483648 | +| test.c:452:7:452:7 | a | 17 | +| test.c:452:12:452:12 | b | 23 | +| test.c:454:9:454:9 | a | 17 | +| test.c:455:7:455:7 | b | -2147483648 | +| test.c:460:11:460:11 | a | -2147483648 | +| test.c:460:15:460:15 | b | -2147483648 | +| test.c:461:10:461:10 | a | -2147483648 | +| test.c:461:14:461:14 | b | -2147483648 | +| test.c:468:10:468:11 | ip | 0 | | test.c:468:20:468:21 | ip | 0 | -| test.c:469:11:469:12 | ip | 0 | -| test.c:469:26:469:27 | ip | 0 | -| test.c:470:16:470:17 | ip | 0 | -| test.c:471:16:471:17 | ip | 0 | -| test.c:472:16:472:17 | ip | 0 | -| test.c:473:17:473:18 | ip | 0 | -| test.c:474:22:474:23 | ip | 0 | -| test.c:474:33:474:34 | ip | 0 | -| test.c:474:48:474:49 | ip | 0 | -| test.c:474:59:474:60 | ip | 0 | -| test.c:475:20:475:21 | ip | 0 | -| test.c:476:25:476:26 | ip | 0 | -| test.c:476:36:476:37 | ip | 0 | -| test.c:477:27:477:28 | ip | 0 | -| test.c:478:22:478:23 | ip | 0 | -| test.c:479:15:479:16 | ip | 0 | -| test.c:479:30:479:31 | ip | 0 | +| test.c:468:40:468:41 | ip | 0 | +| test.c:469:14:469:15 | ip | 1 | +| test.c:470:14:470:15 | ip | 0 | +| test.c:470:34:470:35 | ip | 0 | +| test.c:471:11:471:12 | ip | 0 | +| test.c:472:13:472:14 | ip | 0 | +| test.c:473:14:473:15 | ip | 0 | +| test.c:474:14:474:15 | ip | 0 | +| test.c:475:15:475:16 | ip | 0 | +| test.c:475:41:475:42 | ip | 0 | +| test.c:475:52:475:53 | ip | 0 | +| test.c:475:67:475:68 | ip | 0 | +| test.c:475:78:475:79 | ip | 0 | +| test.c:476:18:476:19 | ip | 0 | +| test.c:477:23:477:24 | ip | 0 | +| test.c:477:34:477:35 | ip | 0 | +| test.c:478:25:478:26 | ip | 0 | +| test.c:479:20:479:21 | ip | 0 | | test.c:480:11:480:12 | ip | 0 | -| test.c:481:12:481:13 | ip | 0 | -| test.c:482:12:482:13 | ip | 0 | -| test.c:483:13:483:14 | ip | 0 | -| test.c:483:39:483:40 | ip | 0 | -| test.c:483:50:483:51 | ip | 0 | -| test.c:483:65:483:66 | ip | 0 | -| test.c:483:76:483:77 | ip | 0 | -| test.c:484:16:484:17 | ip | 0 | -| test.c:485:21:485:22 | ip | 0 | -| test.c:485:32:485:33 | ip | 0 | -| test.c:486:23:486:24 | ip | 0 | -| test.c:487:18:487:19 | ip | 0 | -| test.c:488:11:488:12 | ip | 0 | -| test.c:488:17:488:18 | ip | 0 | -| test.c:488:37:488:38 | ip | 0 | -| test.c:488:43:488:44 | ip | 0 | -| test.c:489:14:489:15 | ip | 0 | -| test.c:490:14:490:15 | ip | 0 | -| test.c:491:14:491:15 | ip | 0 | -| test.c:492:15:492:16 | ip | 0 | -| test.c:492:41:492:42 | ip | 0 | -| test.c:492:52:492:53 | ip | 0 | -| test.c:492:67:492:68 | ip | 0 | -| test.c:492:78:492:79 | ip | 0 | -| test.c:493:18:493:19 | ip | 0 | -| test.c:494:23:494:24 | ip | 0 | -| test.c:494:34:494:35 | ip | 0 | -| test.c:495:25:495:26 | ip | 0 | -| test.c:496:20:496:21 | ip | 0 | -| test.c:497:14:497:15 | ip | 0 | -| test.c:497:20:497:21 | ip | 0 | -| test.c:498:16:498:17 | ip | 0 | -| test.c:499:12:499:13 | ip | 0 | +| test.c:480:26:480:27 | ip | 0 | +| test.c:481:16:481:17 | ip | 0 | +| test.c:482:16:482:17 | ip | 0 | +| test.c:483:16:483:17 | ip | 0 | +| test.c:484:17:484:18 | ip | 0 | +| test.c:485:22:485:23 | ip | 0 | +| test.c:485:33:485:34 | ip | 0 | +| test.c:485:48:485:49 | ip | 0 | +| test.c:485:59:485:60 | ip | 0 | +| test.c:486:20:486:21 | ip | 0 | +| test.c:487:25:487:26 | ip | 0 | +| test.c:487:36:487:37 | ip | 0 | +| test.c:488:27:488:28 | ip | 0 | +| test.c:489:22:489:23 | ip | 0 | +| test.c:490:15:490:16 | ip | 0 | +| test.c:490:30:490:31 | ip | 0 | +| test.c:491:11:491:12 | ip | 0 | +| test.c:492:12:492:13 | ip | 0 | +| test.c:493:12:493:13 | ip | 0 | +| test.c:494:13:494:14 | ip | 0 | +| test.c:494:39:494:40 | ip | 0 | +| test.c:494:50:494:51 | ip | 0 | +| test.c:494:65:494:66 | ip | 0 | +| test.c:494:76:494:77 | ip | 0 | +| test.c:495:16:495:17 | ip | 0 | +| test.c:496:21:496:22 | ip | 0 | +| test.c:496:32:496:33 | ip | 0 | +| test.c:497:23:497:24 | ip | 0 | +| test.c:498:18:498:19 | ip | 0 | +| test.c:499:11:499:12 | ip | 0 | +| test.c:499:17:499:18 | ip | 0 | +| test.c:499:37:499:38 | ip | 0 | +| test.c:499:43:499:44 | ip | 0 | | test.c:500:14:500:15 | ip | 0 | -| test.c:501:15:501:16 | ip | 0 | -| test.c:502:16:502:17 | ip | 0 | -| test.c:503:16:503:17 | ip | 0 | -| test.c:504:17:504:18 | ip | 0 | -| test.c:505:22:505:23 | ip | 0 | -| test.c:505:33:505:34 | ip | 0 | -| test.c:505:48:505:49 | ip | 0 | -| test.c:505:59:505:60 | ip | 0 | -| test.c:506:20:506:21 | ip | 0 | -| test.c:507:25:507:26 | ip | 0 | -| test.c:507:36:507:37 | ip | 0 | -| test.c:508:27:508:28 | ip | 0 | -| test.c:509:22:509:23 | ip | 0 | -| test.c:510:13:510:14 | ip | 0 | -| test.c:510:28:510:29 | ip | 0 | -| test.c:511:18:511:19 | ip | 0 | -| test.c:512:18:512:19 | ip | 0 | -| test.c:513:18:513:19 | ip | 0 | -| test.c:514:19:514:20 | ip | 0 | -| test.c:515:24:515:25 | ip | 0 | -| test.c:515:35:515:36 | ip | 0 | -| test.c:515:50:515:51 | ip | 0 | -| test.c:515:61:515:62 | ip | 0 | +| test.c:501:14:501:15 | ip | 0 | +| test.c:502:14:502:15 | ip | 0 | +| test.c:503:15:503:16 | ip | 0 | +| test.c:503:41:503:42 | ip | 0 | +| test.c:503:52:503:53 | ip | 0 | +| test.c:503:67:503:68 | ip | 0 | +| test.c:503:78:503:79 | ip | 0 | +| test.c:504:18:504:19 | ip | 0 | +| test.c:505:23:505:24 | ip | 0 | +| test.c:505:34:505:35 | ip | 0 | +| test.c:506:25:506:26 | ip | 0 | +| test.c:507:20:507:21 | ip | 0 | +| test.c:508:14:508:15 | ip | 0 | +| test.c:508:20:508:21 | ip | 0 | +| test.c:509:16:509:17 | ip | 0 | +| test.c:510:12:510:13 | ip | 0 | +| test.c:511:14:511:15 | ip | 0 | +| test.c:512:15:512:16 | ip | 0 | +| test.c:513:16:513:17 | ip | 0 | +| test.c:514:16:514:17 | ip | 0 | +| test.c:515:17:515:18 | ip | 0 | | test.c:516:22:516:23 | ip | 0 | -| test.c:517:27:517:28 | ip | 0 | -| test.c:517:38:517:39 | ip | 0 | -| test.c:518:29:518:30 | ip | 0 | -| test.c:519:24:519:25 | ip | 0 | -| test.c:520:17:520:18 | ip | 0 | -| test.c:520:32:520:33 | ip | 0 | -| test.c:521:14:521:15 | ip | 0 | +| test.c:516:33:516:34 | ip | 0 | +| test.c:516:48:516:49 | ip | 0 | +| test.c:516:59:516:60 | ip | 0 | +| test.c:517:20:517:21 | ip | 0 | +| test.c:518:25:518:26 | ip | 0 | +| test.c:518:36:518:37 | ip | 0 | +| test.c:519:27:519:28 | ip | 0 | +| test.c:520:22:520:23 | ip | 0 | +| test.c:521:13:521:14 | ip | 0 | +| test.c:521:28:521:29 | ip | 0 | | test.c:522:18:522:19 | ip | 0 | | test.c:523:18:523:19 | ip | 0 | -| test.c:524:19:524:20 | ip | 0 | -| test.c:525:24:525:25 | ip | 0 | -| test.c:525:35:525:36 | ip | 0 | -| test.c:525:50:525:51 | ip | 0 | -| test.c:525:61:525:62 | ip | 0 | -| test.c:526:22:526:23 | ip | 0 | -| test.c:527:27:527:28 | ip | 0 | -| test.c:527:38:527:39 | ip | 0 | -| test.c:528:29:528:30 | ip | 0 | -| test.c:529:24:529:25 | ip | 0 | -| test.c:530:17:530:18 | ip | 0 | -| test.c:530:23:530:24 | ip | 0 | -| test.c:530:43:530:44 | ip | 0 | -| test.c:530:49:530:50 | ip | 0 | -| test.c:531:16:531:17 | ip | 0 | -| test.c:532:16:532:17 | ip | 0 | -| test.c:533:16:533:17 | ip | 0 | -| test.c:534:17:534:18 | ip | 0 | -| test.c:535:22:535:23 | ip | 0 | -| test.c:535:33:535:34 | ip | 0 | -| test.c:535:48:535:49 | ip | 0 | -| test.c:535:59:535:60 | ip | 0 | -| test.c:536:20:536:21 | ip | 0 | -| test.c:537:25:537:26 | ip | 0 | -| test.c:537:36:537:37 | ip | 0 | +| test.c:524:18:524:19 | ip | 0 | +| test.c:525:19:525:20 | ip | 0 | +| test.c:526:24:526:25 | ip | 0 | +| test.c:526:35:526:36 | ip | 0 | +| test.c:526:50:526:51 | ip | 0 | +| test.c:526:61:526:62 | ip | 0 | +| test.c:527:22:527:23 | ip | 0 | +| test.c:528:27:528:28 | ip | 0 | +| test.c:528:38:528:39 | ip | 0 | +| test.c:529:29:529:30 | ip | 0 | +| test.c:530:24:530:25 | ip | 0 | +| test.c:531:17:531:18 | ip | 0 | +| test.c:531:32:531:33 | ip | 0 | +| test.c:532:14:532:15 | ip | 0 | +| test.c:533:18:533:19 | ip | 0 | +| test.c:534:18:534:19 | ip | 0 | +| test.c:535:19:535:20 | ip | 0 | +| test.c:536:24:536:25 | ip | 0 | +| test.c:536:35:536:36 | ip | 0 | +| test.c:536:50:536:51 | ip | 0 | +| test.c:536:61:536:62 | ip | 0 | +| test.c:537:22:537:23 | ip | 0 | | test.c:538:27:538:28 | ip | 0 | -| test.c:539:22:539:23 | ip | 0 | -| test.c:540:16:540:17 | ip | 0 | -| test.c:540:22:540:23 | ip | 0 | -| test.c:541:18:541:19 | ip | 0 | -| test.c:542:14:542:15 | ip | 0 | -| test.c:543:14:543:15 | ip | 0 | -| test.c:543:24:543:25 | ip | 0 | -| test.c:543:44:543:45 | ip | 0 | -| test.c:544:16:544:17 | ip | 1 | -| test.c:545:16:545:17 | ip | 0 | -| test.c:545:36:545:37 | ip | 0 | -| test.c:546:14:546:15 | ip | 0 | -| test.c:547:19:547:20 | ip | 0 | -| test.c:548:20:548:21 | ip | 0 | -| test.c:549:20:549:21 | ip | 0 | -| test.c:550:21:550:22 | ip | 0 | -| test.c:551:26:551:27 | ip | 0 | -| test.c:551:37:551:38 | ip | 0 | -| test.c:551:52:551:53 | ip | 0 | -| test.c:551:63:551:64 | ip | 0 | -| test.c:552:24:552:25 | ip | 0 | -| test.c:553:29:553:30 | ip | 0 | -| test.c:553:40:553:41 | ip | 0 | -| test.c:554:31:554:32 | ip | 0 | -| test.c:555:26:555:27 | ip | 0 | -| test.c:556:17:556:18 | ip | 0 | -| test.c:556:32:556:33 | ip | 0 | -| test.c:557:22:557:23 | ip | 0 | -| test.c:558:22:558:23 | ip | 0 | -| test.c:559:22:559:23 | ip | 0 | -| test.c:560:23:560:24 | ip | 0 | -| test.c:561:28:561:29 | ip | 0 | -| test.c:561:39:561:40 | ip | 0 | -| test.c:561:54:561:55 | ip | 0 | -| test.c:561:65:561:66 | ip | 0 | +| test.c:538:38:538:39 | ip | 0 | +| test.c:539:29:539:30 | ip | 0 | +| test.c:540:24:540:25 | ip | 0 | +| test.c:541:17:541:18 | ip | 0 | +| test.c:541:23:541:24 | ip | 0 | +| test.c:541:43:541:44 | ip | 0 | +| test.c:541:49:541:50 | ip | 0 | +| test.c:542:16:542:17 | ip | 0 | +| test.c:543:16:543:17 | ip | 0 | +| test.c:544:16:544:17 | ip | 0 | +| test.c:545:17:545:18 | ip | 0 | +| test.c:546:22:546:23 | ip | 0 | +| test.c:546:33:546:34 | ip | 0 | +| test.c:546:48:546:49 | ip | 0 | +| test.c:546:59:546:60 | ip | 0 | +| test.c:547:20:547:21 | ip | 0 | +| test.c:548:25:548:26 | ip | 0 | +| test.c:548:36:548:37 | ip | 0 | +| test.c:549:27:549:28 | ip | 0 | +| test.c:550:22:550:23 | ip | 0 | +| test.c:551:16:551:17 | ip | 0 | +| test.c:551:22:551:23 | ip | 0 | +| test.c:552:18:552:19 | ip | 0 | +| test.c:553:14:553:15 | ip | 0 | +| test.c:554:14:554:15 | ip | 0 | +| test.c:554:24:554:25 | ip | 0 | +| test.c:554:44:554:45 | ip | 0 | +| test.c:555:16:555:17 | ip | 1 | +| test.c:556:16:556:17 | ip | 0 | +| test.c:556:36:556:37 | ip | 0 | +| test.c:557:14:557:15 | ip | 0 | +| test.c:558:19:558:20 | ip | 0 | +| test.c:559:20:559:21 | ip | 0 | +| test.c:560:20:560:21 | ip | 0 | +| test.c:561:21:561:22 | ip | 0 | | test.c:562:26:562:27 | ip | 0 | -| test.c:563:31:563:32 | ip | 0 | -| test.c:563:42:563:43 | ip | 0 | -| test.c:564:33:564:34 | ip | 0 | -| test.c:565:28:565:29 | ip | 0 | -| test.c:566:21:566:22 | ip | 0 | -| test.c:566:36:566:37 | ip | 0 | +| test.c:562:37:562:38 | ip | 0 | +| test.c:562:52:562:53 | ip | 0 | +| test.c:562:63:562:64 | ip | 0 | +| test.c:563:24:563:25 | ip | 0 | +| test.c:564:29:564:30 | ip | 0 | +| test.c:564:40:564:41 | ip | 0 | +| test.c:565:31:565:32 | ip | 0 | +| test.c:566:26:566:27 | ip | 0 | | test.c:567:17:567:18 | ip | 0 | -| test.c:568:18:568:19 | ip | 0 | -| test.c:569:18:569:19 | ip | 0 | -| test.c:570:19:570:20 | ip | 0 | -| test.c:571:24:571:25 | ip | 0 | -| test.c:571:35:571:36 | ip | 0 | -| test.c:571:50:571:51 | ip | 0 | -| test.c:571:61:571:62 | ip | 0 | -| test.c:572:22:572:23 | ip | 0 | -| test.c:573:27:573:28 | ip | 0 | -| test.c:573:38:573:39 | ip | 0 | -| test.c:574:29:574:30 | ip | 0 | -| test.c:575:24:575:25 | ip | 0 | -| test.c:576:17:576:18 | ip | 0 | -| test.c:576:23:576:24 | ip | 0 | -| test.c:576:43:576:44 | ip | 0 | -| test.c:576:49:576:50 | ip | 0 | -| test.c:577:20:577:21 | ip | 0 | -| test.c:578:20:578:21 | ip | 0 | -| test.c:579:20:579:21 | ip | 0 | -| test.c:580:21:580:22 | ip | 0 | -| test.c:581:26:581:27 | ip | 0 | -| test.c:581:37:581:38 | ip | 0 | -| test.c:581:52:581:53 | ip | 0 | -| test.c:581:63:581:64 | ip | 0 | +| test.c:567:32:567:33 | ip | 0 | +| test.c:568:22:568:23 | ip | 0 | +| test.c:569:22:569:23 | ip | 0 | +| test.c:570:22:570:23 | ip | 0 | +| test.c:571:23:571:24 | ip | 0 | +| test.c:572:28:572:29 | ip | 0 | +| test.c:572:39:572:40 | ip | 0 | +| test.c:572:54:572:55 | ip | 0 | +| test.c:572:65:572:66 | ip | 0 | +| test.c:573:26:573:27 | ip | 0 | +| test.c:574:31:574:32 | ip | 0 | +| test.c:574:42:574:43 | ip | 0 | +| test.c:575:33:575:34 | ip | 0 | +| test.c:576:28:576:29 | ip | 0 | +| test.c:577:21:577:22 | ip | 0 | +| test.c:577:36:577:37 | ip | 0 | +| test.c:578:17:578:18 | ip | 0 | +| test.c:579:18:579:19 | ip | 0 | +| test.c:580:18:580:19 | ip | 0 | +| test.c:581:19:581:20 | ip | 0 | | test.c:582:24:582:25 | ip | 0 | -| test.c:583:29:583:30 | ip | 0 | -| test.c:583:40:583:41 | ip | 0 | -| test.c:584:31:584:32 | ip | 0 | -| test.c:585:26:585:27 | ip | 0 | -| test.c:586:20:586:21 | ip | 0 | -| test.c:586:26:586:27 | ip | 0 | -| test.c:587:22:587:23 | ip | 0 | -| test.c:588:18:588:19 | ip | 0 | -| test.c:589:16:589:17 | ip | 0 | -| test.c:590:17:590:18 | ip | 0 | -| test.c:591:18:591:19 | ip | 0 | -| test.c:592:18:592:19 | ip | 0 | -| test.c:593:19:593:20 | ip | 0 | -| test.c:594:24:594:25 | ip | 0 | -| test.c:594:35:594:36 | ip | 0 | -| test.c:594:50:594:51 | ip | 0 | -| test.c:594:61:594:62 | ip | 0 | -| test.c:595:22:595:23 | ip | 0 | -| test.c:596:27:596:28 | ip | 0 | -| test.c:596:38:596:39 | ip | 0 | -| test.c:597:29:597:30 | ip | 0 | -| test.c:598:24:598:25 | ip | 0 | -| test.c:599:15:599:16 | ip | 0 | -| test.c:599:30:599:31 | ip | 0 | -| test.c:600:20:600:21 | ip | 0 | -| test.c:601:20:601:21 | ip | 0 | -| test.c:602:20:602:21 | ip | 0 | -| test.c:603:21:603:22 | ip | 0 | -| test.c:604:26:604:27 | ip | 0 | -| test.c:604:37:604:38 | ip | 0 | -| test.c:604:52:604:53 | ip | 0 | -| test.c:604:63:604:64 | ip | 0 | +| test.c:582:35:582:36 | ip | 0 | +| test.c:582:50:582:51 | ip | 0 | +| test.c:582:61:582:62 | ip | 0 | +| test.c:583:22:583:23 | ip | 0 | +| test.c:584:27:584:28 | ip | 0 | +| test.c:584:38:584:39 | ip | 0 | +| test.c:585:29:585:30 | ip | 0 | +| test.c:586:24:586:25 | ip | 0 | +| test.c:587:17:587:18 | ip | 0 | +| test.c:587:23:587:24 | ip | 0 | +| test.c:587:43:587:44 | ip | 0 | +| test.c:587:49:587:50 | ip | 0 | +| test.c:588:20:588:21 | ip | 0 | +| test.c:589:20:589:21 | ip | 0 | +| test.c:590:20:590:21 | ip | 0 | +| test.c:591:21:591:22 | ip | 0 | +| test.c:592:26:592:27 | ip | 0 | +| test.c:592:37:592:38 | ip | 0 | +| test.c:592:52:592:53 | ip | 0 | +| test.c:592:63:592:64 | ip | 0 | +| test.c:593:24:593:25 | ip | 0 | +| test.c:594:29:594:30 | ip | 0 | +| test.c:594:40:594:41 | ip | 0 | +| test.c:595:31:595:32 | ip | 0 | +| test.c:596:26:596:27 | ip | 0 | +| test.c:597:20:597:21 | ip | 0 | +| test.c:597:26:597:27 | ip | 0 | +| test.c:598:22:598:23 | ip | 0 | +| test.c:599:18:599:19 | ip | 0 | +| test.c:600:16:600:17 | ip | 0 | +| test.c:601:17:601:18 | ip | 0 | +| test.c:602:18:602:19 | ip | 0 | +| test.c:603:18:603:19 | ip | 0 | +| test.c:604:19:604:20 | ip | 0 | | test.c:605:24:605:25 | ip | 0 | -| test.c:606:29:606:30 | ip | 0 | -| test.c:606:40:606:41 | ip | 0 | -| test.c:607:31:607:32 | ip | 0 | -| test.c:608:26:608:27 | ip | 0 | -| test.c:609:19:609:20 | ip | 0 | -| test.c:609:34:609:35 | ip | 0 | -| test.c:610:16:610:17 | ip | 0 | +| test.c:605:35:605:36 | ip | 0 | +| test.c:605:50:605:51 | ip | 0 | +| test.c:605:61:605:62 | ip | 0 | +| test.c:606:22:606:23 | ip | 0 | +| test.c:607:27:607:28 | ip | 0 | +| test.c:607:38:607:39 | ip | 0 | +| test.c:608:29:608:30 | ip | 0 | +| test.c:609:24:609:25 | ip | 0 | +| test.c:610:15:610:16 | ip | 0 | +| test.c:610:30:610:31 | ip | 0 | | test.c:611:20:611:21 | ip | 0 | | test.c:612:20:612:21 | ip | 0 | -| test.c:613:21:613:22 | ip | 0 | -| test.c:614:26:614:27 | ip | 0 | -| test.c:614:37:614:38 | ip | 0 | -| test.c:614:52:614:53 | ip | 0 | -| test.c:614:63:614:64 | ip | 0 | -| test.c:615:24:615:25 | ip | 0 | -| test.c:616:29:616:30 | ip | 0 | -| test.c:616:40:616:41 | ip | 0 | -| test.c:617:31:617:32 | ip | 0 | -| test.c:618:26:618:27 | ip | 0 | -| test.c:619:19:619:20 | ip | 0 | -| test.c:619:25:619:26 | ip | 0 | -| test.c:619:45:619:46 | ip | 0 | -| test.c:619:51:619:52 | ip | 0 | -| test.c:620:18:620:19 | ip | 0 | -| test.c:621:18:621:19 | ip | 0 | -| test.c:622:18:622:19 | ip | 0 | -| test.c:623:19:623:20 | ip | 0 | -| test.c:624:24:624:25 | ip | 0 | -| test.c:624:35:624:36 | ip | 0 | -| test.c:624:50:624:51 | ip | 0 | -| test.c:624:61:624:62 | ip | 0 | -| test.c:625:22:625:23 | ip | 0 | -| test.c:626:27:626:28 | ip | 0 | -| test.c:626:38:626:39 | ip | 0 | +| test.c:613:20:613:21 | ip | 0 | +| test.c:614:21:614:22 | ip | 0 | +| test.c:615:26:615:27 | ip | 0 | +| test.c:615:37:615:38 | ip | 0 | +| test.c:615:52:615:53 | ip | 0 | +| test.c:615:63:615:64 | ip | 0 | +| test.c:616:24:616:25 | ip | 0 | +| test.c:617:29:617:30 | ip | 0 | +| test.c:617:40:617:41 | ip | 0 | +| test.c:618:31:618:32 | ip | 0 | +| test.c:619:26:619:27 | ip | 0 | +| test.c:620:19:620:20 | ip | 0 | +| test.c:620:34:620:35 | ip | 0 | +| test.c:621:16:621:17 | ip | 0 | +| test.c:622:20:622:21 | ip | 0 | +| test.c:623:20:623:21 | ip | 0 | +| test.c:624:21:624:22 | ip | 0 | +| test.c:625:26:625:27 | ip | 0 | +| test.c:625:37:625:38 | ip | 0 | +| test.c:625:52:625:53 | ip | 0 | +| test.c:625:63:625:64 | ip | 0 | +| test.c:626:24:626:25 | ip | 0 | | test.c:627:29:627:30 | ip | 0 | -| test.c:628:24:628:25 | ip | 0 | -| test.c:629:18:629:19 | ip | 0 | -| test.c:629:24:629:25 | ip | 0 | -| test.c:630:20:630:21 | ip | 0 | -| test.c:631:16:631:17 | ip | 0 | -| test.c:632:10:632:23 | special_number | 0 | -| test.c:640:7:640:8 | c1 | -2147483648 | -| test.c:640:13:640:13 | x | 0 | -| test.c:641:7:641:8 | c2 | -2147483648 | -| test.c:641:13:641:13 | x | 0 | -| test.c:642:7:642:8 | c3 | -2147483648 | -| test.c:642:13:642:13 | x | 0 | -| test.c:643:7:643:8 | c4 | -2147483648 | -| test.c:643:13:643:13 | x | 0 | -| test.c:644:7:644:8 | c5 | -2147483648 | -| test.c:644:13:644:13 | x | 0 | -| test.c:645:7:645:8 | c1 | -2147483648 | -| test.c:645:13:645:14 | c2 | -2147483648 | -| test.c:645:19:645:19 | x | 0 | -| test.c:646:7:646:8 | c1 | -2147483648 | -| test.c:646:13:646:14 | c3 | -2147483648 | -| test.c:646:19:646:19 | x | 0 | -| test.c:647:7:647:8 | c1 | -2147483648 | -| test.c:647:13:647:14 | c4 | -2147483648 | -| test.c:647:19:647:19 | x | 0 | -| test.c:648:7:648:8 | c1 | -2147483648 | -| test.c:648:13:648:14 | c5 | -2147483648 | -| test.c:648:19:648:19 | x | 0 | -| test.c:649:7:649:8 | c2 | -2147483648 | -| test.c:649:13:649:14 | c3 | -2147483648 | -| test.c:649:19:649:19 | x | 0 | -| test.c:651:11:651:11 | x | 0 | -| test.c:651:15:651:15 | x | 0 | -| test.c:651:19:651:19 | x | 0 | -| test.c:651:23:651:23 | x | 0 | -| test.c:651:27:651:27 | x | 0 | -| test.c:651:31:651:31 | x | 0 | -| test.c:651:35:651:35 | x | 0 | -| test.c:651:39:651:39 | x | 0 | -| test.c:651:43:651:43 | x | 0 | -| test.c:651:47:651:47 | x | 0 | -| test.c:651:51:651:51 | x | 0 | -| test.c:651:55:651:55 | x | 0 | -| test.c:652:10:652:10 | y | -2147483648 | -| test.c:657:20:657:20 | x | 0 | -| test.c:657:30:657:30 | x | 0 | -| test.c:660:3:660:4 | y1 | 0 | -| test.c:660:11:660:11 | y | 0 | -| test.c:660:14:660:14 | y | 1 | -| test.c:661:3:661:4 | y2 | 0 | -| test.c:661:9:661:9 | y | 1 | -| test.c:661:14:661:14 | y | 2 | -| test.c:661:22:661:22 | y | 5 | -| test.c:662:10:662:11 | y1 | 1 | -| test.c:662:15:662:16 | y2 | 5 | -| test.c:670:3:670:3 | i | -2147483648 | -| test.c:671:7:671:7 | i | 10 | -| test.c:673:3:673:3 | i | -2147483648 | -| test.c:674:3:674:3 | i | 10 | -| test.c:675:7:675:7 | i | 20 | -| test.c:677:3:677:3 | i | -2147483648 | -| test.c:678:3:678:3 | i | 40 | -| test.c:679:7:679:7 | i | 30 | +| test.c:627:40:627:41 | ip | 0 | +| test.c:628:31:628:32 | ip | 0 | +| test.c:629:26:629:27 | ip | 0 | +| test.c:630:19:630:20 | ip | 0 | +| test.c:630:25:630:26 | ip | 0 | +| test.c:630:45:630:46 | ip | 0 | +| test.c:630:51:630:52 | ip | 0 | +| test.c:631:18:631:19 | ip | 0 | +| test.c:632:18:632:19 | ip | 0 | +| test.c:633:18:633:19 | ip | 0 | +| test.c:634:19:634:20 | ip | 0 | +| test.c:635:24:635:25 | ip | 0 | +| test.c:635:35:635:36 | ip | 0 | +| test.c:635:50:635:51 | ip | 0 | +| test.c:635:61:635:62 | ip | 0 | +| test.c:636:22:636:23 | ip | 0 | +| test.c:637:27:637:28 | ip | 0 | +| test.c:637:38:637:39 | ip | 0 | +| test.c:638:29:638:30 | ip | 0 | +| test.c:639:24:639:25 | ip | 0 | +| test.c:640:18:640:19 | ip | 0 | +| test.c:640:24:640:25 | ip | 0 | +| test.c:641:20:641:21 | ip | 0 | +| test.c:642:16:642:17 | ip | 0 | +| test.c:643:10:643:23 | special_number | 0 | +| test.c:651:7:651:8 | c1 | -2147483648 | +| test.c:651:13:651:13 | x | 0 | +| test.c:652:7:652:8 | c2 | -2147483648 | +| test.c:652:13:652:13 | x | 0 | +| test.c:653:7:653:8 | c3 | -2147483648 | +| test.c:653:13:653:13 | x | 0 | +| test.c:654:7:654:8 | c4 | -2147483648 | +| test.c:654:13:654:13 | x | 0 | +| test.c:655:7:655:8 | c5 | -2147483648 | +| test.c:655:13:655:13 | x | 0 | +| test.c:656:7:656:8 | c1 | -2147483648 | +| test.c:656:13:656:14 | c2 | -2147483648 | +| test.c:656:19:656:19 | x | 0 | +| test.c:657:7:657:8 | c1 | -2147483648 | +| test.c:657:13:657:14 | c3 | -2147483648 | +| test.c:657:19:657:19 | x | 0 | +| test.c:658:7:658:8 | c1 | -2147483648 | +| test.c:658:13:658:14 | c4 | -2147483648 | +| test.c:658:19:658:19 | x | 0 | +| test.c:659:7:659:8 | c1 | -2147483648 | +| test.c:659:13:659:14 | c5 | -2147483648 | +| test.c:659:19:659:19 | x | 0 | +| test.c:660:7:660:8 | c2 | -2147483648 | +| test.c:660:13:660:14 | c3 | -2147483648 | +| test.c:660:19:660:19 | x | 0 | +| test.c:662:11:662:11 | x | 0 | +| test.c:662:15:662:15 | x | 0 | +| test.c:662:19:662:19 | x | 0 | +| test.c:662:23:662:23 | x | 0 | +| test.c:662:27:662:27 | x | 0 | +| test.c:662:31:662:31 | x | 0 | +| test.c:662:35:662:35 | x | 0 | +| test.c:662:39:662:39 | x | 0 | +| test.c:662:43:662:43 | x | 0 | +| test.c:662:47:662:47 | x | 0 | +| test.c:662:51:662:51 | x | 0 | +| test.c:662:55:662:55 | x | 0 | +| test.c:663:10:663:10 | y | -2147483648 | +| test.c:668:20:668:20 | x | 0 | +| test.c:668:30:668:30 | x | 0 | +| test.c:671:3:671:4 | y1 | 0 | +| test.c:671:11:671:11 | y | 0 | +| test.c:671:14:671:14 | y | 1 | +| test.c:672:3:672:4 | y2 | 0 | +| test.c:672:9:672:9 | y | 1 | +| test.c:672:14:672:14 | y | 2 | +| test.c:672:22:672:22 | y | 5 | +| test.c:673:10:673:11 | y1 | 1 | +| test.c:673:15:673:16 | y2 | 5 | | test.c:681:3:681:3 | i | -2147483648 | -| test.c:681:7:681:7 | j | -2147483648 | -| test.c:682:7:682:7 | i | 40 | +| test.c:682:7:682:7 | i | 10 | | test.c:684:3:684:3 | i | -2147483648 | -| test.c:684:8:684:8 | j | 40 | -| test.c:685:7:685:7 | i | 50 | -| test.c:687:3:687:3 | i | -2147483648 | -| test.c:687:13:687:13 | j | 50 | -| test.c:688:7:688:7 | i | 60 | -| test.c:695:12:695:12 | a | 0 | -| test.c:695:17:695:17 | a | 3 | -| test.c:695:33:695:33 | b | 0 | -| test.c:695:38:695:38 | b | 5 | -| test.c:696:13:696:13 | a | 3 | -| test.c:696:15:696:15 | b | 5 | -| test.c:697:5:697:9 | total | 0 | -| test.c:697:14:697:14 | r | 15 | -| test.c:699:12:699:12 | a | 0 | -| test.c:699:17:699:17 | a | 3 | -| test.c:699:33:699:33 | b | 0 | -| test.c:699:38:699:38 | b | 0 | -| test.c:700:13:700:13 | a | 3 | -| test.c:700:15:700:15 | b | 0 | -| test.c:701:5:701:9 | total | 0 | -| test.c:701:14:701:14 | r | 0 | -| test.c:703:12:703:12 | a | 0 | -| test.c:703:17:703:17 | a | 3 | -| test.c:703:34:703:34 | b | 0 | -| test.c:703:39:703:39 | b | 13 | -| test.c:704:13:704:13 | a | 3 | -| test.c:704:15:704:15 | b | 13 | -| test.c:705:5:705:9 | total | 0 | -| test.c:705:14:705:14 | r | 39 | -| test.c:708:10:708:14 | total | 0 | -| test.c:714:12:714:12 | b | 0 | -| test.c:714:17:714:17 | b | 5 | -| test.c:715:16:715:16 | b | 5 | +| test.c:685:3:685:3 | i | 10 | +| test.c:686:7:686:7 | i | 20 | +| test.c:688:3:688:3 | i | -2147483648 | +| test.c:689:3:689:3 | i | 40 | +| test.c:690:7:690:7 | i | 30 | +| test.c:692:3:692:3 | i | -2147483648 | +| test.c:692:7:692:7 | j | -2147483648 | +| test.c:693:7:693:7 | i | 40 | +| test.c:695:3:695:3 | i | -2147483648 | +| test.c:695:8:695:8 | j | 40 | +| test.c:696:7:696:7 | i | 50 | +| test.c:698:3:698:3 | i | -2147483648 | +| test.c:698:13:698:13 | j | 50 | +| test.c:699:7:699:7 | i | 60 | +| test.c:706:12:706:12 | a | 0 | +| test.c:706:17:706:17 | a | 3 | +| test.c:706:33:706:33 | b | 0 | +| test.c:706:38:706:38 | b | 5 | +| test.c:707:13:707:13 | a | 3 | +| test.c:707:15:707:15 | b | 5 | +| test.c:708:5:708:9 | total | 0 | +| test.c:708:14:708:14 | r | 15 | +| test.c:710:12:710:12 | a | 0 | +| test.c:710:17:710:17 | a | 3 | +| test.c:710:33:710:33 | b | 0 | +| test.c:710:38:710:38 | b | 0 | +| test.c:711:13:711:13 | a | 3 | +| test.c:711:15:711:15 | b | 0 | +| test.c:712:5:712:9 | total | 0 | +| test.c:712:14:712:14 | r | 0 | +| test.c:714:12:714:12 | a | 0 | +| test.c:714:17:714:17 | a | 3 | +| test.c:714:34:714:34 | b | 0 | +| test.c:714:39:714:39 | b | 13 | +| test.c:715:13:715:13 | a | 3 | +| test.c:715:15:715:15 | b | 13 | | test.c:716:5:716:9 | total | 0 | -| test.c:716:14:716:14 | r | 55 | -| test.c:718:12:718:12 | b | 0 | -| test.c:718:17:718:17 | b | 0 | -| test.c:719:16:719:16 | b | 0 | -| test.c:720:5:720:9 | total | 0 | -| test.c:720:14:720:14 | r | 0 | -| test.c:722:13:722:13 | b | 0 | -| test.c:722:18:722:18 | b | 13 | -| test.c:723:16:723:16 | b | 13 | -| test.c:724:5:724:9 | total | 0 | -| test.c:724:14:724:14 | r | 143 | -| test.c:727:10:727:14 | total | 0 | -| test.c:732:3:732:3 | x | 0 | -| test.c:732:7:732:7 | y | 0 | -| test.c:733:3:733:4 | xy | 0 | -| test.c:733:8:733:8 | x | 1000000003 | -| test.c:733:12:733:12 | y | 1000000003 | -| test.c:734:10:734:11 | xy | 1000000006000000000 | -| test.c:739:3:739:3 | x | 0 | -| test.c:740:3:740:3 | y | 0 | -| test.c:741:3:741:4 | xy | 0 | -| test.c:741:8:741:8 | x | 274177 | -| test.c:741:12:741:12 | y | 67280421310721 | -| test.c:742:10:742:11 | xy | 18446744073709551616 | -| test.c:746:7:746:8 | ui | 0 | -| test.c:747:43:747:44 | ui | 10 | -| test.c:747:48:747:49 | ui | 10 | -| test.c:748:12:748:17 | result | 100 | -| test.c:750:7:750:8 | ul | 0 | -| test.c:751:28:751:29 | ul | 10 | -| test.c:751:33:751:34 | ul | 10 | -| test.c:752:12:752:17 | result | 0 | -| test.c:758:7:758:8 | ui | 0 | -| test.c:758:19:758:20 | ui | 0 | -| test.c:759:5:759:6 | ui | 2 | -| test.c:759:11:759:12 | ui | 2 | -| test.c:760:12:760:13 | ui | 4 | -| test.c:764:3:764:9 | uiconst | 10 | -| test.c:767:3:767:9 | ulconst | 10 | -| test.c:768:10:768:16 | uiconst | 40 | -| test.c:768:20:768:26 | ulconst | 40 | -| test.c:772:7:772:7 | i | -2147483648 | -| test.c:772:18:772:18 | i | -1 | -| test.c:773:5:773:5 | i | -2147483648 | -| test.c:773:13:773:13 | i | -1 | -| test.c:774:9:774:9 | i | -5 | -| test.c:776:5:776:5 | i | -2147483648 | -| test.c:776:9:776:9 | i | -5 | -| test.c:777:9:777:9 | i | -30 | -| test.c:779:5:779:5 | i | -30 | -| test.c:780:9:780:9 | i | -210 | -| test.c:782:5:782:5 | i | -210 | -| test.c:783:9:783:9 | i | -1155 | -| test.c:785:7:785:7 | i | -2147483648 | -| test.c:786:5:786:5 | i | -2147483648 | -| test.c:786:9:786:9 | i | -1 | -| test.c:787:9:787:9 | i | 1 | -| test.c:789:3:789:3 | i | -2147483648 | -| test.c:789:7:789:7 | i | -2147483648 | -| test.c:790:10:790:10 | i | -2147483648 | -| test.c:793:3:793:3 | i | -2147483648 | -| test.c:793:10:793:11 | sc | 1 | -| test.c:795:7:795:7 | i | -128 | -| test.c:802:7:802:7 | n | 0 | -| test.c:804:7:804:7 | n | 0 | -| test.c:805:9:805:9 | n | 1 | -| test.c:808:7:808:7 | n | 0 | -| test.c:809:9:809:9 | n | 1 | -| test.c:811:9:811:9 | n | 0 | -| test.c:814:8:814:8 | n | 0 | -| test.c:815:9:815:9 | n | 0 | -| test.c:817:9:817:9 | n | 1 | -| test.c:820:10:820:10 | n | 0 | -| test.c:821:5:821:5 | n | 1 | -| test.c:824:7:824:7 | n | 0 | -| test.c:828:7:828:7 | n | -32768 | -| test.c:831:7:831:7 | n | 0 | -| test.c:832:9:832:9 | n | 0 | -| test.c:834:9:834:9 | n | 1 | -| test.c:837:7:837:7 | n | 0 | -| test.c:838:9:838:9 | n | 1 | -| test.c:840:9:840:9 | n | 0 | -| test.c:843:10:843:10 | n | 0 | -| test.c:844:5:844:5 | n | 1 | -| test.c:847:7:847:7 | n | 0 | -| test.c:851:7:851:7 | n | -32768 | -| test.c:852:9:852:9 | n | -32768 | -| test.c:853:11:853:11 | n | 0 | -| test.c:857:7:857:7 | n | -32768 | -| test.c:858:13:858:13 | n | 5 | -| test.c:861:9:861:9 | n | 6 | -| test.c:864:7:864:7 | n | -32768 | -| test.c:864:22:864:22 | n | -32767 | -| test.c:865:9:865:9 | n | -32766 | +| test.c:716:14:716:14 | r | 39 | +| test.c:719:10:719:14 | total | 0 | +| test.c:725:12:725:12 | b | 0 | +| test.c:725:17:725:17 | b | 5 | +| test.c:726:16:726:16 | b | 5 | +| test.c:727:5:727:9 | total | 0 | +| test.c:727:14:727:14 | r | 55 | +| test.c:729:12:729:12 | b | 0 | +| test.c:729:17:729:17 | b | 0 | +| test.c:730:16:730:16 | b | 0 | +| test.c:731:5:731:9 | total | 0 | +| test.c:731:14:731:14 | r | 0 | +| test.c:733:13:733:13 | b | 0 | +| test.c:733:18:733:18 | b | 13 | +| test.c:734:16:734:16 | b | 13 | +| test.c:735:5:735:9 | total | 0 | +| test.c:735:14:735:14 | r | 143 | +| test.c:738:10:738:14 | total | 0 | +| test.c:743:3:743:3 | x | 0 | +| test.c:743:7:743:7 | y | 0 | +| test.c:744:3:744:4 | xy | 0 | +| test.c:744:8:744:8 | x | 1000000003 | +| test.c:744:12:744:12 | y | 1000000003 | +| test.c:745:10:745:11 | xy | 1000000006000000000 | +| test.c:750:3:750:3 | x | 0 | +| test.c:751:3:751:3 | y | 0 | +| test.c:752:3:752:4 | xy | 0 | +| test.c:752:8:752:8 | x | 274177 | +| test.c:752:12:752:12 | y | 67280421310721 | +| test.c:753:10:753:11 | xy | 18446744073709551616 | +| test.c:757:7:757:8 | ui | 0 | +| test.c:758:43:758:44 | ui | 10 | +| test.c:758:48:758:49 | ui | 10 | +| test.c:759:12:759:17 | result | 100 | +| test.c:761:7:761:8 | ul | 0 | +| test.c:762:28:762:29 | ul | 10 | +| test.c:762:33:762:34 | ul | 10 | +| test.c:763:12:763:17 | result | 0 | +| test.c:769:7:769:8 | ui | 0 | +| test.c:769:19:769:20 | ui | 0 | +| test.c:770:5:770:6 | ui | 2 | +| test.c:770:11:770:12 | ui | 2 | +| test.c:771:12:771:13 | ui | 4 | +| test.c:775:3:775:9 | uiconst | 10 | +| test.c:778:3:778:9 | ulconst | 10 | +| test.c:779:10:779:16 | uiconst | 40 | +| test.c:779:20:779:26 | ulconst | 40 | +| test.c:783:7:783:7 | i | -2147483648 | +| test.c:783:18:783:18 | i | -1 | +| test.c:784:5:784:5 | i | -2147483648 | +| test.c:784:13:784:13 | i | -1 | +| test.c:785:9:785:9 | i | -5 | +| test.c:787:5:787:5 | i | -2147483648 | +| test.c:787:9:787:9 | i | -5 | +| test.c:788:9:788:9 | i | -30 | +| test.c:790:5:790:5 | i | -30 | +| test.c:791:9:791:9 | i | -210 | +| test.c:793:5:793:5 | i | -210 | +| test.c:794:9:794:9 | i | -1155 | +| test.c:796:7:796:7 | i | -2147483648 | +| test.c:797:5:797:5 | i | -2147483648 | +| test.c:797:9:797:9 | i | -1 | +| test.c:798:9:798:9 | i | 1 | +| test.c:800:3:800:3 | i | -2147483648 | +| test.c:800:7:800:7 | i | -2147483648 | +| test.c:801:10:801:10 | i | -2147483648 | +| test.c:804:3:804:3 | i | -2147483648 | +| test.c:804:10:804:11 | sc | 1 | +| test.c:806:7:806:7 | i | -128 | +| test.c:813:7:813:7 | n | 0 | +| test.c:815:7:815:7 | n | 0 | +| test.c:816:9:816:9 | n | 1 | +| test.c:819:7:819:7 | n | 0 | +| test.c:820:9:820:9 | n | 1 | +| test.c:822:9:822:9 | n | 0 | +| test.c:825:8:825:8 | n | 0 | +| test.c:826:9:826:9 | n | 0 | +| test.c:828:9:828:9 | n | 1 | +| test.c:831:10:831:10 | n | 0 | +| test.c:832:5:832:5 | n | 1 | +| test.c:835:7:835:7 | n | 0 | +| test.c:839:7:839:7 | n | -32768 | +| test.c:842:7:842:7 | n | 0 | +| test.c:843:9:843:9 | n | 0 | +| test.c:845:9:845:9 | n | 1 | +| test.c:848:7:848:7 | n | 0 | +| test.c:849:9:849:9 | n | 1 | +| test.c:851:9:851:9 | n | 0 | +| test.c:854:10:854:10 | n | 0 | +| test.c:855:5:855:5 | n | 1 | +| test.c:858:7:858:7 | n | 0 | +| test.c:862:7:862:7 | n | -32768 | +| test.c:863:9:863:9 | n | -32768 | +| test.c:864:11:864:11 | n | 0 | | test.c:868:7:868:7 | n | -32768 | -| test.c:869:5:869:5 | n | 0 | -| test.c:869:10:869:10 | n | 1 | -| test.c:869:14:869:14 | n | 0 | -| test.c:870:6:870:6 | n | 0 | -| test.c:870:10:870:10 | n | 0 | -| test.c:870:14:870:14 | n | 1 | -| test.c:881:7:881:8 | ss | -32768 | -| test.c:882:9:882:10 | ss | 0 | -| test.c:885:7:885:8 | ss | -32768 | -| test.c:886:9:886:10 | ss | -32768 | -| test.c:889:14:889:15 | us | 0 | -| test.c:890:9:890:10 | us | 0 | -| test.c:893:14:893:15 | us | 0 | -| test.c:894:9:894:10 | us | 0 | -| test.c:897:7:897:8 | ss | -32768 | -| test.c:898:9:898:10 | ss | -32768 | -| test.c:901:7:901:8 | ss | -32768 | -| test.c:902:9:902:10 | ss | -1 | -| test.c:908:8:908:8 | s | -2147483648 | -| test.c:908:15:908:15 | s | 0 | -| test.c:908:23:908:23 | s | 0 | -| test.c:909:18:909:18 | s | 0 | -| test.c:909:22:909:22 | s | 0 | -| test.c:910:9:910:14 | result | 0 | -| test.c:916:7:916:7 | i | 0 | -| test.c:917:9:917:9 | i | -2147483648 | -| test.c:921:7:921:7 | u | 0 | -| test.c:922:9:922:9 | u | 0 | -| test.c:927:12:927:12 | s | -2147483648 | -| test.c:928:7:928:8 | s2 | -4 | -| test.c:933:7:933:7 | x | -2147483648 | -| test.c:934:9:934:9 | y | -2147483648 | -| test.c:938:7:938:7 | y | -2147483648 | -| test.c:947:7:947:7 | x | -2147483648 | -| test.c:952:7:952:7 | x | -2147483648 | -| test.c:959:8:959:8 | x | 2147483647 | -| test.c:959:12:959:12 | y | 256 | -| test.c:960:9:960:9 | x | 2147483647 | -| test.c:961:9:961:9 | y | 256 | +| test.c:869:13:869:13 | n | 5 | +| test.c:872:9:872:9 | n | 6 | +| test.c:875:7:875:7 | n | -32768 | +| test.c:875:22:875:22 | n | -32767 | +| test.c:876:9:876:9 | n | -32766 | +| test.c:879:7:879:7 | n | -32768 | +| test.c:880:5:880:5 | n | 0 | +| test.c:880:10:880:10 | n | 1 | +| test.c:880:14:880:14 | n | 0 | +| test.c:881:6:881:6 | n | 0 | +| test.c:881:10:881:10 | n | 0 | +| test.c:881:14:881:14 | n | 1 | +| test.c:892:7:892:8 | ss | -32768 | +| test.c:893:9:893:10 | ss | 0 | +| test.c:896:7:896:8 | ss | -32768 | +| test.c:897:9:897:10 | ss | -32768 | +| test.c:900:14:900:15 | us | 0 | +| test.c:901:9:901:10 | us | 0 | +| test.c:904:14:904:15 | us | 0 | +| test.c:905:9:905:10 | us | 0 | +| test.c:908:7:908:8 | ss | -32768 | +| test.c:909:9:909:10 | ss | -32768 | +| test.c:912:7:912:8 | ss | -32768 | +| test.c:913:9:913:10 | ss | -1 | +| test.c:919:8:919:8 | s | -2147483648 | +| test.c:919:15:919:15 | s | 0 | +| test.c:919:23:919:23 | s | 0 | +| test.c:920:18:920:18 | s | 0 | +| test.c:920:22:920:22 | s | 0 | +| test.c:921:9:921:14 | result | 0 | +| test.c:927:7:927:7 | i | 0 | +| test.c:928:9:928:9 | i | -2147483648 | +| test.c:932:7:932:7 | u | 0 | +| test.c:933:9:933:9 | u | 0 | +| test.c:938:12:938:12 | s | -2147483648 | +| test.c:939:7:939:8 | s2 | -4 | +| test.c:944:7:944:7 | x | -2147483648 | +| test.c:945:9:945:9 | y | -2147483648 | +| test.c:949:7:949:7 | y | -2147483648 | +| test.c:958:7:958:7 | x | -2147483648 | +| test.c:963:7:963:7 | x | -2147483648 | +| test.c:970:8:970:8 | x | 2147483647 | +| test.c:970:12:970:12 | y | 256 | +| test.c:971:9:971:9 | x | 2147483647 | +| test.c:972:9:972:9 | y | 256 | | test.cpp:10:7:10:7 | b | -2147483648 | | test.cpp:11:5:11:5 | x | -2147483648 | | test.cpp:13:10:13:10 | x | -2147483648 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected index 21d139a51a5..7d583e47f5b 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected @@ -976,3490 +976,3576 @@ estimateNrOfBounds | test.c:341:32:341:39 | ... >> ... | 1.0 | | test.c:341:39:341:39 | 1 | 1.0 | | test.c:343:10:343:16 | shifted | 1.0 | -| test.c:347:13:347:14 | 0 | 1.0 | -| test.c:348:7:348:7 | x | 1.0 | -| test.c:348:7:348:11 | ... < ... | 1.0 | -| test.c:348:11:348:11 | 0 | 1.0 | -| test.c:349:12:349:13 | - ... | 1.0 | -| test.c:349:13:349:13 | 1 | 1.0 | -| test.c:352:10:352:10 | i | 13.0 | -| test.c:352:10:352:14 | ... < ... | 1.0 | -| test.c:352:14:352:14 | 3 | 1.0 | -| test.c:353:5:353:5 | i | 13.0 | -| test.c:353:5:353:7 | ... ++ | 13.0 | -| test.c:355:3:355:3 | d | 1.0 | -| test.c:355:3:355:7 | ... = ... | 13.0 | -| test.c:355:7:355:7 | i | 13.0 | -| test.c:356:7:356:7 | x | 1.0 | -| test.c:356:7:356:11 | ... < ... | 1.0 | -| test.c:356:11:356:11 | 0 | 1.0 | -| test.c:357:9:357:9 | d | 13.0 | -| test.c:357:9:357:14 | ... > ... | 1.0 | -| test.c:357:13:357:14 | - ... | 1.0 | -| test.c:357:14:357:14 | x | 1.0 | -| test.c:358:14:358:14 | 1 | 1.0 | -| test.c:361:10:361:10 | 0 | 1.0 | -| test.c:367:3:367:4 | y1 | 1.0 | -| test.c:367:3:367:23 | ... = ... | 1.0 | -| test.c:367:8:367:8 | x | 1.0 | -| test.c:367:8:367:14 | ... < ... | 1.0 | -| test.c:367:8:367:23 | ... ? ... : ... | 1.0 | -| test.c:367:12:367:14 | 100 | 1.0 | -| test.c:367:12:367:14 | (unsigned int)... | 1.0 | -| test.c:367:18:367:18 | x | 1.0 | -| test.c:367:22:367:23 | 10 | 1.0 | -| test.c:367:22:367:23 | (unsigned int)... | 1.0 | -| test.c:368:3:368:4 | y2 | 1.0 | -| test.c:368:3:368:24 | ... = ... | 2.0 | -| test.c:368:8:368:8 | x | 2.0 | -| test.c:368:8:368:15 | ... >= ... | 1.0 | -| test.c:368:8:368:24 | ... ? ... : ... | 2.0 | -| test.c:368:13:368:15 | 100 | 1.0 | -| test.c:368:13:368:15 | (unsigned int)... | 1.0 | -| test.c:368:19:368:20 | 10 | 1.0 | -| test.c:368:19:368:20 | (unsigned int)... | 1.0 | -| test.c:368:24:368:24 | x | 2.0 | -| test.c:369:3:369:4 | y3 | 1.0 | -| test.c:369:3:369:8 | ... = ... | 1.0 | -| test.c:369:8:369:8 | 0 | 1.0 | -| test.c:369:8:369:8 | (unsigned int)... | 1.0 | -| test.c:370:3:370:4 | y4 | 1.0 | -| test.c:370:3:370:8 | ... = ... | 1.0 | -| test.c:370:8:370:8 | 0 | 1.0 | -| test.c:370:8:370:8 | (unsigned int)... | 1.0 | -| test.c:371:3:371:4 | y5 | 1.0 | -| test.c:371:3:371:8 | ... = ... | 1.0 | -| test.c:371:8:371:8 | 0 | 1.0 | -| test.c:371:8:371:8 | (unsigned int)... | 1.0 | -| test.c:372:3:372:4 | y6 | 1.0 | -| test.c:372:3:372:8 | ... = ... | 1.0 | -| test.c:372:8:372:8 | 0 | 1.0 | -| test.c:372:8:372:8 | (unsigned int)... | 1.0 | -| test.c:373:3:373:4 | y7 | 1.0 | -| test.c:373:3:373:8 | ... = ... | 1.0 | -| test.c:373:8:373:8 | 0 | 1.0 | -| test.c:373:8:373:8 | (unsigned int)... | 1.0 | -| test.c:374:3:374:4 | y8 | 1.0 | -| test.c:374:3:374:8 | ... = ... | 1.0 | -| test.c:374:8:374:8 | 0 | 1.0 | -| test.c:374:8:374:8 | (unsigned int)... | 1.0 | -| test.c:375:7:375:7 | x | 4.0 | -| test.c:375:7:375:13 | ... < ... | 1.0 | -| test.c:375:11:375:13 | 300 | 1.0 | -| test.c:375:11:375:13 | (unsigned int)... | 1.0 | -| test.c:376:5:376:6 | y3 | 1.0 | -| test.c:376:5:376:15 | ... = ... | 4.0 | -| test.c:376:10:376:10 | x | 4.0 | -| test.c:376:10:376:15 | ... ? ... : ... | 4.0 | -| test.c:376:15:376:15 | 5 | 1.0 | -| test.c:376:15:376:15 | (unsigned int)... | 1.0 | -| test.c:377:5:377:6 | y4 | 1.0 | -| test.c:377:5:377:17 | ... = ... | 4.0 | -| test.c:377:10:377:10 | x | 4.0 | -| test.c:377:10:377:17 | ... ? ... : ... | 4.0 | -| test.c:377:15:377:17 | 500 | 1.0 | -| test.c:377:15:377:17 | (unsigned int)... | 1.0 | -| test.c:378:5:378:6 | y5 | 1.0 | -| test.c:378:5:378:21 | ... = ... | 4.0 | -| test.c:378:10:378:14 | (...) | 4.0 | -| test.c:378:10:378:21 | ... ? ... : ... | 4.0 | -| test.c:378:11:378:11 | x | 4.0 | -| test.c:378:11:378:13 | ... + ... | 4.0 | -| test.c:378:13:378:13 | 1 | 1.0 | -| test.c:378:13:378:13 | (unsigned int)... | 1.0 | -| test.c:378:19:378:21 | 500 | 1.0 | -| test.c:378:19:378:21 | (unsigned int)... | 1.0 | -| test.c:379:5:379:6 | y6 | 1.0 | -| test.c:379:5:379:36 | ... = ... | 4.0 | -| test.c:379:10:379:31 | (...) | 4.0 | -| test.c:379:10:379:36 | (unsigned int)... | 4.0 | -| test.c:379:10:379:36 | ... ? ... : ... | 4.0 | -| test.c:379:11:379:30 | (unsigned char)... | 4.0 | -| test.c:379:26:379:30 | (...) | 4.0 | -| test.c:379:27:379:27 | x | 4.0 | -| test.c:379:27:379:29 | ... + ... | 4.0 | -| test.c:379:29:379:29 | 1 | 1.0 | -| test.c:379:29:379:29 | (unsigned int)... | 1.0 | -| test.c:379:36:379:36 | 5 | 1.0 | -| test.c:380:5:380:6 | y7 | 1.0 | -| test.c:380:5:380:38 | ... = ... | 4.0 | -| test.c:380:10:380:31 | (...) | 4.0 | -| test.c:380:10:380:38 | (unsigned int)... | 4.0 | -| test.c:380:10:380:38 | ... ? ... : ... | 4.0 | -| test.c:380:11:380:30 | (unsigned char)... | 4.0 | -| test.c:380:26:380:30 | (...) | 4.0 | -| test.c:380:27:380:27 | x | 4.0 | -| test.c:380:27:380:29 | ... + ... | 4.0 | -| test.c:380:29:380:29 | 1 | 1.0 | -| test.c:380:29:380:29 | (unsigned int)... | 1.0 | -| test.c:380:36:380:38 | 500 | 1.0 | -| test.c:381:5:381:6 | y8 | 1.0 | -| test.c:381:5:381:39 | ... = ... | 4.0 | -| test.c:381:10:381:32 | (...) | 4.0 | -| test.c:381:10:381:39 | (unsigned int)... | 4.0 | -| test.c:381:10:381:39 | ... ? ... : ... | 4.0 | -| test.c:381:11:381:31 | (unsigned short)... | 4.0 | -| test.c:381:27:381:31 | (...) | 4.0 | -| test.c:381:28:381:28 | x | 4.0 | -| test.c:381:28:381:30 | ... + ... | 4.0 | -| test.c:381:30:381:30 | 1 | 1.0 | -| test.c:381:30:381:30 | (unsigned int)... | 1.0 | -| test.c:381:37:381:39 | 500 | 1.0 | -| test.c:383:10:383:11 | y1 | 1.0 | -| test.c:383:10:383:16 | ... + ... | 2.0 | -| test.c:383:10:383:21 | ... + ... | 10.0 | -| test.c:383:10:383:26 | ... + ... | 50.0 | -| test.c:383:10:383:31 | ... + ... | 250.0 | -| test.c:383:10:383:36 | ... + ... | 1250.0 | -| test.c:383:10:383:41 | ... + ... | 6250.0 | -| test.c:383:10:383:46 | ... + ... | 31250.0 | -| test.c:383:15:383:16 | y2 | 2.0 | -| test.c:383:20:383:21 | y3 | 5.0 | -| test.c:383:25:383:26 | y4 | 5.0 | -| test.c:383:30:383:31 | y5 | 5.0 | -| test.c:383:35:383:36 | y6 | 5.0 | -| test.c:383:40:383:41 | y7 | 5.0 | -| test.c:383:45:383:46 | y8 | 5.0 | -| test.c:389:3:389:4 | y1 | 1.0 | -| test.c:389:3:389:24 | ... = ... | 1.0 | -| test.c:389:8:389:8 | x | 1.0 | -| test.c:389:8:389:14 | ... > ... | 1.0 | -| test.c:389:8:389:24 | ... ? ... : ... | 1.0 | -| test.c:389:12:389:14 | 100 | 1.0 | -| test.c:389:12:389:14 | (unsigned int)... | 1.0 | -| test.c:389:18:389:18 | x | 1.0 | -| test.c:389:22:389:24 | 110 | 1.0 | -| test.c:389:22:389:24 | (unsigned int)... | 1.0 | -| test.c:390:3:390:4 | y2 | 1.0 | -| test.c:390:3:390:25 | ... = ... | 2.0 | -| test.c:390:8:390:8 | x | 2.0 | -| test.c:390:8:390:15 | ... <= ... | 1.0 | -| test.c:390:8:390:25 | ... ? ... : ... | 2.0 | -| test.c:390:13:390:15 | 100 | 1.0 | -| test.c:390:13:390:15 | (unsigned int)... | 1.0 | -| test.c:390:19:390:21 | 110 | 1.0 | -| test.c:390:19:390:21 | (unsigned int)... | 1.0 | -| test.c:390:25:390:25 | x | 2.0 | -| test.c:391:3:391:4 | y3 | 1.0 | -| test.c:391:3:391:11 | ... = ... | 1.0 | -| test.c:391:8:391:11 | 1000 | 1.0 | -| test.c:391:8:391:11 | (unsigned int)... | 1.0 | -| test.c:392:3:392:4 | y4 | 1.0 | -| test.c:392:3:392:11 | ... = ... | 1.0 | -| test.c:392:8:392:11 | 1000 | 1.0 | -| test.c:392:8:392:11 | (unsigned int)... | 1.0 | -| test.c:393:3:393:4 | y5 | 1.0 | -| test.c:393:3:393:11 | ... = ... | 1.0 | -| test.c:393:8:393:11 | 1000 | 1.0 | -| test.c:393:8:393:11 | (unsigned int)... | 1.0 | -| test.c:394:7:394:7 | x | 4.0 | -| test.c:394:7:394:14 | ... >= ... | 1.0 | -| test.c:394:12:394:14 | 300 | 1.0 | -| test.c:394:12:394:14 | (unsigned int)... | 1.0 | -| test.c:395:5:395:6 | y3 | 1.0 | -| test.c:395:5:395:21 | ... = ... | 4.0 | -| test.c:395:10:395:16 | (...) | 4.0 | -| test.c:395:10:395:21 | ... ? ... : ... | 4.0 | -| test.c:395:11:395:11 | x | 4.0 | -| test.c:395:11:395:15 | ... - ... | 4.0 | -| test.c:395:13:395:15 | 300 | 1.0 | -| test.c:395:13:395:15 | (unsigned int)... | 1.0 | -| test.c:395:21:395:21 | 5 | 1.0 | -| test.c:395:21:395:21 | (unsigned int)... | 1.0 | -| test.c:396:5:396:6 | y4 | 1.0 | -| test.c:396:5:396:21 | ... = ... | 4.0 | -| test.c:396:10:396:16 | (...) | 4.0 | -| test.c:396:10:396:21 | ... ? ... : ... | 4.0 | -| test.c:396:11:396:11 | x | 4.0 | -| test.c:396:11:396:15 | ... - ... | 4.0 | -| test.c:396:13:396:15 | 200 | 1.0 | -| test.c:396:13:396:15 | (unsigned int)... | 1.0 | -| test.c:396:21:396:21 | 5 | 1.0 | -| test.c:396:21:396:21 | (unsigned int)... | 1.0 | -| test.c:397:5:397:6 | y5 | 1.0 | -| test.c:397:5:397:38 | ... = ... | 4.0 | -| test.c:397:10:397:33 | (...) | 4.0 | -| test.c:397:10:397:38 | (unsigned int)... | 4.0 | -| test.c:397:10:397:38 | ... ? ... : ... | 4.0 | -| test.c:397:11:397:32 | (unsigned char)... | 4.0 | -| test.c:397:26:397:32 | (...) | 4.0 | -| test.c:397:27:397:27 | x | 4.0 | -| test.c:397:27:397:31 | ... - ... | 4.0 | -| test.c:397:29:397:31 | 200 | 1.0 | -| test.c:397:29:397:31 | (unsigned int)... | 1.0 | -| test.c:397:38:397:38 | 5 | 1.0 | -| test.c:399:10:399:11 | y1 | 1.0 | -| test.c:399:10:399:16 | ... + ... | 2.0 | -| test.c:399:10:399:21 | ... + ... | 10.0 | -| test.c:399:10:399:26 | ... + ... | 50.0 | -| test.c:399:10:399:31 | ... + ... | 250.0 | -| test.c:399:15:399:16 | y2 | 2.0 | -| test.c:399:20:399:21 | y3 | 5.0 | -| test.c:399:25:399:26 | y4 | 5.0 | -| test.c:399:30:399:31 | y5 | 5.0 | -| test.c:404:14:404:14 | m | 1.0 | -| test.c:404:14:404:108 | ... ? ... : ... | 1.0 | -| test.c:404:18:404:18 | n | 1.0 | -| test.c:404:18:404:95 | ... ? ... : ... | 1.0 | -| test.c:404:22:404:22 | o | 1.0 | -| test.c:404:22:404:82 | ... ? ... : ... | 1.0 | -| test.c:404:26:404:26 | p | 1.0 | -| test.c:404:26:404:69 | ... ? ... : ... | 1.0 | -| test.c:404:30:404:30 | q | 1.0 | -| test.c:404:30:404:56 | ... ? ... : ... | 1.0 | -| test.c:404:34:404:43 | 0.4743882700000000008 | 1.0 | -| test.c:404:47:404:56 | 0.1433388700000000071 | 1.0 | -| test.c:404:60:404:69 | 0.3527920299999999787 | 1.0 | -| test.c:404:73:404:82 | 0.3920645799999999959 | 1.0 | -| test.c:404:86:404:95 | 0.2154022499999999896 | 1.0 | -| test.c:404:99:404:108 | 0.4049680500000000238 | 1.0 | -| test.c:405:14:405:14 | m | 2.0 | -| test.c:405:14:405:108 | ... ? ... : ... | 1.0 | -| test.c:405:18:405:18 | n | 3.0 | -| test.c:405:18:405:95 | ... ? ... : ... | 1.0 | -| test.c:405:22:405:22 | o | 3.0 | -| test.c:405:22:405:82 | ... ? ... : ... | 1.0 | -| test.c:405:26:405:26 | p | 3.0 | -| test.c:405:26:405:69 | ... ? ... : ... | 1.0 | -| test.c:405:30:405:30 | q | 3.0 | -| test.c:405:30:405:56 | ... ? ... : ... | 1.0 | -| test.c:405:34:405:43 | 0.3418334800000000229 | 1.0 | -| test.c:405:47:405:56 | 0.3533464000000000049 | 1.0 | -| test.c:405:60:405:69 | 0.2224785300000000077 | 1.0 | -| test.c:405:73:405:82 | 0.326618929999999974 | 1.0 | -| test.c:405:86:405:95 | 0.5927046500000000551 | 1.0 | -| test.c:405:99:405:108 | 0.5297741000000000255 | 1.0 | -| test.c:406:14:406:14 | m | 4.0 | -| test.c:406:14:406:108 | ... ? ... : ... | 1.0 | -| test.c:406:18:406:18 | n | 9.0 | -| test.c:406:18:406:95 | ... ? ... : ... | 1.0 | -| test.c:406:22:406:22 | o | 9.0 | -| test.c:406:22:406:82 | ... ? ... : ... | 1.0 | -| test.c:406:26:406:26 | p | 9.0 | -| test.c:406:26:406:69 | ... ? ... : ... | 1.0 | -| test.c:406:30:406:30 | q | 9.0 | -| test.c:406:30:406:56 | ... ? ... : ... | 1.0 | -| test.c:406:34:406:43 | 0.774296030000000024 | 1.0 | -| test.c:406:47:406:56 | 0.3147808400000000062 | 1.0 | -| test.c:406:60:406:69 | 0.3123551399999999756 | 1.0 | -| test.c:406:73:406:82 | 0.05121255999999999725 | 1.0 | -| test.c:406:86:406:95 | 0.7931074500000000471 | 1.0 | -| test.c:406:99:406:108 | 0.6798145100000000385 | 1.0 | -| test.c:407:14:407:14 | m | 8.0 | -| test.c:407:14:407:108 | ... ? ... : ... | 1.0 | -| test.c:407:18:407:18 | n | 27.0 | -| test.c:407:18:407:95 | ... ? ... : ... | 1.0 | -| test.c:407:22:407:22 | o | 27.0 | -| test.c:407:22:407:82 | ... ? ... : ... | 1.0 | -| test.c:407:26:407:26 | p | 27.0 | -| test.c:407:26:407:69 | ... ? ... : ... | 1.0 | -| test.c:407:30:407:30 | q | 27.0 | -| test.c:407:30:407:56 | ... ? ... : ... | 1.0 | -| test.c:407:34:407:43 | 0.4472955599999999809 | 1.0 | -| test.c:407:47:407:56 | 0.8059920200000000312 | 1.0 | -| test.c:407:60:407:69 | 0.9899726199999999698 | 1.0 | -| test.c:407:73:407:82 | 0.5995273199999999747 | 1.0 | -| test.c:407:86:407:95 | 0.3697694799999999837 | 1.0 | -| test.c:407:99:407:108 | 0.8386683499999999514 | 1.0 | -| test.c:408:14:408:14 | m | 16.0 | -| test.c:408:14:408:108 | ... ? ... : ... | 1.0 | -| test.c:408:18:408:18 | n | 81.0 | -| test.c:408:18:408:95 | ... ? ... : ... | 1.0 | -| test.c:408:22:408:22 | o | 81.0 | -| test.c:408:22:408:82 | ... ? ... : ... | 1.0 | -| test.c:408:26:408:26 | p | 81.0 | -| test.c:408:26:408:69 | ... ? ... : ... | 1.0 | -| test.c:408:30:408:30 | q | 81.0 | -| test.c:408:30:408:56 | ... ? ... : ... | 1.0 | -| test.c:408:34:408:43 | 0.4931182800000000199 | 1.0 | -| test.c:408:47:408:56 | 0.9038991100000000056 | 1.0 | -| test.c:408:60:408:69 | 0.1059771199999999941 | 1.0 | -| test.c:408:73:408:82 | 0.2177842600000000073 | 1.0 | -| test.c:408:86:408:95 | 0.7248596600000000167 | 1.0 | -| test.c:408:99:408:108 | 0.6873487400000000136 | 1.0 | -| test.c:409:14:409:14 | m | 32.0 | -| test.c:409:14:409:108 | ... ? ... : ... | 1.0 | -| test.c:409:18:409:18 | n | 243.0 | -| test.c:409:18:409:95 | ... ? ... : ... | 1.0 | -| test.c:409:22:409:22 | o | 243.0 | -| test.c:409:22:409:82 | ... ? ... : ... | 1.0 | -| test.c:409:26:409:26 | p | 243.0 | -| test.c:409:26:409:69 | ... ? ... : ... | 1.0 | -| test.c:409:30:409:30 | q | 243.0 | -| test.c:409:30:409:56 | ... ? ... : ... | 1.0 | -| test.c:409:34:409:43 | 0.4745284799999999747 | 1.0 | -| test.c:409:47:409:56 | 0.107866500000000004 | 1.0 | -| test.c:409:60:409:69 | 0.1188457599999999947 | 1.0 | -| test.c:409:73:409:82 | 0.7616405200000000431 | 1.0 | -| test.c:409:86:409:95 | 0.3480889200000000239 | 1.0 | -| test.c:409:99:409:108 | 0.584408649999999974 | 1.0 | -| test.c:410:14:410:14 | m | 64.0 | -| test.c:410:14:410:108 | ... ? ... : ... | 1.0 | -| test.c:410:18:410:18 | n | 729.0 | -| test.c:410:18:410:95 | ... ? ... : ... | 1.0 | -| test.c:410:22:410:22 | o | 729.0 | -| test.c:410:22:410:82 | ... ? ... : ... | 1.0 | -| test.c:410:26:410:26 | p | 729.0 | -| test.c:410:26:410:69 | ... ? ... : ... | 1.0 | -| test.c:410:30:410:30 | q | 729.0 | -| test.c:410:30:410:56 | ... ? ... : ... | 1.0 | -| test.c:410:34:410:43 | 0.02524326 | 1.0 | -| test.c:410:47:410:56 | 0.8290504600000000446 | 1.0 | -| test.c:410:60:410:69 | 0.95823075000000002 | 1.0 | -| test.c:410:73:410:82 | 0.1251655799999999985 | 1.0 | -| test.c:410:86:410:95 | 0.8523517900000000536 | 1.0 | -| test.c:410:99:410:108 | 0.3623238400000000081 | 1.0 | -| test.c:411:14:411:14 | m | 128.0 | -| test.c:411:14:411:108 | ... ? ... : ... | 1.0 | -| test.c:411:18:411:18 | n | 2187.0 | -| test.c:411:18:411:95 | ... ? ... : ... | 1.0 | -| test.c:411:22:411:22 | o | 2187.0 | -| test.c:411:22:411:82 | ... ? ... : ... | 1.0 | -| test.c:411:26:411:26 | p | 2187.0 | -| test.c:411:26:411:69 | ... ? ... : ... | 1.0 | -| test.c:411:30:411:30 | q | 2187.0 | -| test.c:411:30:411:56 | ... ? ... : ... | 1.0 | -| test.c:411:34:411:43 | 0.3870862600000000153 | 1.0 | -| test.c:411:47:411:56 | 0.3287604399999999871 | 1.0 | -| test.c:411:60:411:69 | 0.1496348500000000137 | 1.0 | -| test.c:411:73:411:82 | 0.4504110800000000192 | 1.0 | -| test.c:411:86:411:95 | 0.4864090899999999884 | 1.0 | -| test.c:411:99:411:108 | 0.8433127200000000157 | 1.0 | -| test.c:412:14:412:14 | m | 256.0 | -| test.c:412:14:412:108 | ... ? ... : ... | 1.0 | -| test.c:412:18:412:18 | n | 6561.0 | -| test.c:412:18:412:95 | ... ? ... : ... | 1.0 | -| test.c:412:22:412:22 | o | 6561.0 | -| test.c:412:22:412:82 | ... ? ... : ... | 1.0 | -| test.c:412:26:412:26 | p | 6561.0 | -| test.c:412:26:412:69 | ... ? ... : ... | 1.0 | -| test.c:412:30:412:30 | q | 6561.0 | -| test.c:412:30:412:56 | ... ? ... : ... | 1.0 | -| test.c:412:34:412:43 | 0.1575506299999999971 | 1.0 | -| test.c:412:47:412:56 | 0.7708683299999999905 | 1.0 | -| test.c:412:60:412:69 | 0.2642848099999999811 | 1.0 | -| test.c:412:73:412:82 | 0.1480050800000000111 | 1.0 | -| test.c:412:86:412:95 | 0.374281430000000026 | 1.0 | -| test.c:412:99:412:108 | 0.05328182000000000057 | 1.0 | -| test.c:413:14:413:14 | m | 512.0 | -| test.c:413:14:413:108 | ... ? ... : ... | 1.0 | -| test.c:413:18:413:18 | n | 19683.0 | -| test.c:413:18:413:95 | ... ? ... : ... | 1.0 | -| test.c:413:22:413:22 | o | 19683.0 | -| test.c:413:22:413:82 | ... ? ... : ... | 1.0 | -| test.c:413:26:413:26 | p | 19683.0 | -| test.c:413:26:413:69 | ... ? ... : ... | 1.0 | -| test.c:413:30:413:30 | q | 19683.0 | -| test.c:413:30:413:56 | ... ? ... : ... | 1.0 | -| test.c:413:34:413:43 | 0.4173653600000000186 | 1.0 | -| test.c:413:47:413:56 | 0.7682662799999999681 | 1.0 | -| test.c:413:60:413:69 | 0.2764323799999999776 | 1.0 | -| test.c:413:73:413:82 | 0.5567927400000000082 | 1.0 | -| test.c:413:86:413:95 | 0.3946885700000000163 | 1.0 | -| test.c:413:99:413:108 | 0.6907214400000000198 | 1.0 | -| test.c:414:14:414:14 | m | 1024.0 | -| test.c:414:14:414:108 | ... ? ... : ... | 1.0 | -| test.c:414:18:414:18 | n | 59049.0 | -| test.c:414:18:414:95 | ... ? ... : ... | 1.0 | -| test.c:414:22:414:22 | o | 59049.0 | -| test.c:414:22:414:82 | ... ? ... : ... | 1.0 | -| test.c:414:26:414:26 | p | 59049.0 | -| test.c:414:26:414:69 | ... ? ... : ... | 1.0 | -| test.c:414:30:414:30 | q | 59049.0 | -| test.c:414:30:414:56 | ... ? ... : ... | 1.0 | -| test.c:414:34:414:43 | 0.8895534499999999678 | 1.0 | -| test.c:414:47:414:56 | 0.2990482400000000207 | 1.0 | -| test.c:414:60:414:69 | 0.7624258299999999711 | 1.0 | -| test.c:414:73:414:82 | 0.2051910999999999874 | 1.0 | -| test.c:414:86:414:95 | 0.8874555899999999609 | 1.0 | -| test.c:414:99:414:108 | 0.8137279800000000174 | 1.0 | -| test.c:415:14:415:14 | m | 2048.0 | +| test.c:348:22:348:32 | (...) | 1.0 | +| test.c:348:22:348:36 | ... > ... | 1.0 | +| test.c:348:22:348:44 | ... ? ... : ... | 1.0 | +| test.c:348:23:348:23 | 2 | 1.0 | +| test.c:348:23:348:23 | (unsigned int)... | 1.0 | +| test.c:348:23:348:27 | ... * ... | 1.0 | +| test.c:348:23:348:31 | ... + ... | 1.0 | +| test.c:348:27:348:27 | e | 1.0 | +| test.c:348:31:348:31 | 1 | 1.0 | +| test.c:348:31:348:31 | (unsigned int)... | 1.0 | +| test.c:348:36:348:36 | 0 | 1.0 | +| test.c:348:36:348:36 | (unsigned int)... | 1.0 | +| test.c:348:40:348:40 | e | 1.0 | +| test.c:348:44:348:44 | 2 | 1.0 | +| test.c:348:44:348:44 | (unsigned int)... | 1.0 | +| test.c:349:20:349:30 | (...) | 2.0 | +| test.c:349:20:349:35 | ... >= ... | 1.0 | +| test.c:349:20:349:43 | (signed int)... | 2.0 | +| test.c:349:20:349:43 | ... ? ... : ... | 2.0 | +| test.c:349:21:349:21 | 2 | 1.0 | +| test.c:349:21:349:21 | (unsigned int)... | 1.0 | +| test.c:349:21:349:25 | ... * ... | 2.0 | +| test.c:349:21:349:29 | ... + ... | 2.0 | +| test.c:349:25:349:25 | e | 2.0 | +| test.c:349:29:349:29 | 1 | 1.0 | +| test.c:349:29:349:29 | (unsigned int)... | 1.0 | +| test.c:349:35:349:35 | 0 | 1.0 | +| test.c:349:35:349:35 | (unsigned int)... | 1.0 | +| test.c:349:39:349:39 | e | 2.0 | +| test.c:349:43:349:43 | 2 | 1.0 | +| test.c:349:43:349:43 | (unsigned int)... | 1.0 | +| test.c:350:22:350:32 | (...) | 4.0 | +| test.c:350:22:350:36 | ... > ... | 1.0 | +| test.c:350:22:350:44 | ... ? ... : ... | 4.0 | +| test.c:350:23:350:23 | 3 | 1.0 | +| test.c:350:23:350:23 | (unsigned int)... | 1.0 | +| test.c:350:23:350:27 | ... * ... | 4.0 | +| test.c:350:23:350:31 | ... + ... | 4.0 | +| test.c:350:27:350:27 | e | 4.0 | +| test.c:350:31:350:31 | 2 | 1.0 | +| test.c:350:31:350:31 | (unsigned int)... | 1.0 | +| test.c:350:36:350:36 | 0 | 1.0 | +| test.c:350:36:350:36 | (unsigned int)... | 1.0 | +| test.c:350:40:350:40 | e | 4.0 | +| test.c:350:44:350:44 | 2 | 1.0 | +| test.c:350:44:350:44 | (unsigned int)... | 1.0 | +| test.c:351:22:351:32 | (...) | 8.0 | +| test.c:351:22:351:36 | ... > ... | 1.0 | +| test.c:351:22:351:44 | ... ? ... : ... | 8.0 | +| test.c:351:23:351:23 | 2 | 1.0 | +| test.c:351:23:351:23 | (unsigned int)... | 1.0 | +| test.c:351:23:351:27 | ... * ... | 8.0 | +| test.c:351:23:351:31 | ... + ... | 8.0 | +| test.c:351:27:351:27 | e | 8.0 | +| test.c:351:31:351:31 | 1 | 1.0 | +| test.c:351:31:351:31 | (unsigned int)... | 1.0 | +| test.c:351:36:351:36 | 0 | 1.0 | +| test.c:351:36:351:36 | (unsigned int)... | 1.0 | +| test.c:351:40:351:40 | e | 8.0 | +| test.c:351:44:351:44 | 2 | 1.0 | +| test.c:351:44:351:44 | (unsigned int)... | 1.0 | +| test.c:352:22:352:32 | (...) | 16.0 | +| test.c:352:22:352:37 | ... > ... | 1.0 | +| test.c:352:22:352:45 | ... ? ... : ... | 16.0 | +| test.c:352:23:352:23 | 2 | 1.0 | +| test.c:352:23:352:23 | (unsigned int)... | 1.0 | +| test.c:352:23:352:27 | ... * ... | 16.0 | +| test.c:352:23:352:31 | ... + ... | 16.0 | +| test.c:352:27:352:27 | e | 16.0 | +| test.c:352:31:352:31 | 1 | 1.0 | +| test.c:352:31:352:31 | (unsigned int)... | 1.0 | +| test.c:352:36:352:37 | 16 | 1.0 | +| test.c:352:36:352:37 | (unsigned int)... | 1.0 | +| test.c:352:41:352:41 | e | 16.0 | +| test.c:352:45:352:45 | 2 | 1.0 | +| test.c:352:45:352:45 | (unsigned int)... | 1.0 | +| test.c:354:10:354:12 | bi1 | 1.0 | +| test.c:354:10:354:18 | ... + ... | 2.0 | +| test.c:354:10:354:24 | ... + ... | 8.0 | +| test.c:354:10:354:30 | ... + ... | 64.0 | +| test.c:354:10:354:36 | ... + ... | 1024.0 | +| test.c:354:16:354:18 | (unsigned int)... | 2.0 | +| test.c:354:16:354:18 | bi2 | 2.0 | +| test.c:354:22:354:24 | bi3 | 4.0 | +| test.c:354:28:354:30 | bi4 | 8.0 | +| test.c:354:34:354:36 | bi5 | 16.0 | +| test.c:358:13:358:14 | 0 | 1.0 | +| test.c:359:7:359:7 | x | 1.0 | +| test.c:359:7:359:11 | ... < ... | 1.0 | +| test.c:359:11:359:11 | 0 | 1.0 | +| test.c:360:12:360:13 | - ... | 1.0 | +| test.c:360:13:360:13 | 1 | 1.0 | +| test.c:363:10:363:10 | i | 13.0 | +| test.c:363:10:363:14 | ... < ... | 1.0 | +| test.c:363:14:363:14 | 3 | 1.0 | +| test.c:364:5:364:5 | i | 13.0 | +| test.c:364:5:364:7 | ... ++ | 13.0 | +| test.c:366:3:366:3 | d | 1.0 | +| test.c:366:3:366:7 | ... = ... | 13.0 | +| test.c:366:7:366:7 | i | 13.0 | +| test.c:367:7:367:7 | x | 1.0 | +| test.c:367:7:367:11 | ... < ... | 1.0 | +| test.c:367:11:367:11 | 0 | 1.0 | +| test.c:368:9:368:9 | d | 13.0 | +| test.c:368:9:368:14 | ... > ... | 1.0 | +| test.c:368:13:368:14 | - ... | 1.0 | +| test.c:368:14:368:14 | x | 1.0 | +| test.c:369:14:369:14 | 1 | 1.0 | +| test.c:372:10:372:10 | 0 | 1.0 | +| test.c:378:3:378:4 | y1 | 1.0 | +| test.c:378:3:378:23 | ... = ... | 1.0 | +| test.c:378:8:378:8 | x | 1.0 | +| test.c:378:8:378:14 | ... < ... | 1.0 | +| test.c:378:8:378:23 | ... ? ... : ... | 1.0 | +| test.c:378:12:378:14 | 100 | 1.0 | +| test.c:378:12:378:14 | (unsigned int)... | 1.0 | +| test.c:378:18:378:18 | x | 1.0 | +| test.c:378:22:378:23 | 10 | 1.0 | +| test.c:378:22:378:23 | (unsigned int)... | 1.0 | +| test.c:379:3:379:4 | y2 | 1.0 | +| test.c:379:3:379:24 | ... = ... | 2.0 | +| test.c:379:8:379:8 | x | 2.0 | +| test.c:379:8:379:15 | ... >= ... | 1.0 | +| test.c:379:8:379:24 | ... ? ... : ... | 2.0 | +| test.c:379:13:379:15 | 100 | 1.0 | +| test.c:379:13:379:15 | (unsigned int)... | 1.0 | +| test.c:379:19:379:20 | 10 | 1.0 | +| test.c:379:19:379:20 | (unsigned int)... | 1.0 | +| test.c:379:24:379:24 | x | 2.0 | +| test.c:380:3:380:4 | y3 | 1.0 | +| test.c:380:3:380:8 | ... = ... | 1.0 | +| test.c:380:8:380:8 | 0 | 1.0 | +| test.c:380:8:380:8 | (unsigned int)... | 1.0 | +| test.c:381:3:381:4 | y4 | 1.0 | +| test.c:381:3:381:8 | ... = ... | 1.0 | +| test.c:381:8:381:8 | 0 | 1.0 | +| test.c:381:8:381:8 | (unsigned int)... | 1.0 | +| test.c:382:3:382:4 | y5 | 1.0 | +| test.c:382:3:382:8 | ... = ... | 1.0 | +| test.c:382:8:382:8 | 0 | 1.0 | +| test.c:382:8:382:8 | (unsigned int)... | 1.0 | +| test.c:383:3:383:4 | y6 | 1.0 | +| test.c:383:3:383:8 | ... = ... | 1.0 | +| test.c:383:8:383:8 | 0 | 1.0 | +| test.c:383:8:383:8 | (unsigned int)... | 1.0 | +| test.c:384:3:384:4 | y7 | 1.0 | +| test.c:384:3:384:8 | ... = ... | 1.0 | +| test.c:384:8:384:8 | 0 | 1.0 | +| test.c:384:8:384:8 | (unsigned int)... | 1.0 | +| test.c:385:3:385:4 | y8 | 1.0 | +| test.c:385:3:385:8 | ... = ... | 1.0 | +| test.c:385:8:385:8 | 0 | 1.0 | +| test.c:385:8:385:8 | (unsigned int)... | 1.0 | +| test.c:386:7:386:7 | x | 4.0 | +| test.c:386:7:386:13 | ... < ... | 1.0 | +| test.c:386:11:386:13 | 300 | 1.0 | +| test.c:386:11:386:13 | (unsigned int)... | 1.0 | +| test.c:387:5:387:6 | y3 | 1.0 | +| test.c:387:5:387:15 | ... = ... | 4.0 | +| test.c:387:10:387:10 | x | 4.0 | +| test.c:387:10:387:15 | ... ? ... : ... | 4.0 | +| test.c:387:15:387:15 | 5 | 1.0 | +| test.c:387:15:387:15 | (unsigned int)... | 1.0 | +| test.c:388:5:388:6 | y4 | 1.0 | +| test.c:388:5:388:17 | ... = ... | 4.0 | +| test.c:388:10:388:10 | x | 4.0 | +| test.c:388:10:388:17 | ... ? ... : ... | 4.0 | +| test.c:388:15:388:17 | 500 | 1.0 | +| test.c:388:15:388:17 | (unsigned int)... | 1.0 | +| test.c:389:5:389:6 | y5 | 1.0 | +| test.c:389:5:389:21 | ... = ... | 4.0 | +| test.c:389:10:389:14 | (...) | 4.0 | +| test.c:389:10:389:21 | ... ? ... : ... | 4.0 | +| test.c:389:11:389:11 | x | 4.0 | +| test.c:389:11:389:13 | ... + ... | 4.0 | +| test.c:389:13:389:13 | 1 | 1.0 | +| test.c:389:13:389:13 | (unsigned int)... | 1.0 | +| test.c:389:19:389:21 | 500 | 1.0 | +| test.c:389:19:389:21 | (unsigned int)... | 1.0 | +| test.c:390:5:390:6 | y6 | 1.0 | +| test.c:390:5:390:36 | ... = ... | 4.0 | +| test.c:390:10:390:31 | (...) | 4.0 | +| test.c:390:10:390:36 | (unsigned int)... | 4.0 | +| test.c:390:10:390:36 | ... ? ... : ... | 4.0 | +| test.c:390:11:390:30 | (unsigned char)... | 4.0 | +| test.c:390:26:390:30 | (...) | 4.0 | +| test.c:390:27:390:27 | x | 4.0 | +| test.c:390:27:390:29 | ... + ... | 4.0 | +| test.c:390:29:390:29 | 1 | 1.0 | +| test.c:390:29:390:29 | (unsigned int)... | 1.0 | +| test.c:390:36:390:36 | 5 | 1.0 | +| test.c:391:5:391:6 | y7 | 1.0 | +| test.c:391:5:391:38 | ... = ... | 4.0 | +| test.c:391:10:391:31 | (...) | 4.0 | +| test.c:391:10:391:38 | (unsigned int)... | 4.0 | +| test.c:391:10:391:38 | ... ? ... : ... | 4.0 | +| test.c:391:11:391:30 | (unsigned char)... | 4.0 | +| test.c:391:26:391:30 | (...) | 4.0 | +| test.c:391:27:391:27 | x | 4.0 | +| test.c:391:27:391:29 | ... + ... | 4.0 | +| test.c:391:29:391:29 | 1 | 1.0 | +| test.c:391:29:391:29 | (unsigned int)... | 1.0 | +| test.c:391:36:391:38 | 500 | 1.0 | +| test.c:392:5:392:6 | y8 | 1.0 | +| test.c:392:5:392:39 | ... = ... | 4.0 | +| test.c:392:10:392:32 | (...) | 4.0 | +| test.c:392:10:392:39 | (unsigned int)... | 4.0 | +| test.c:392:10:392:39 | ... ? ... : ... | 4.0 | +| test.c:392:11:392:31 | (unsigned short)... | 4.0 | +| test.c:392:27:392:31 | (...) | 4.0 | +| test.c:392:28:392:28 | x | 4.0 | +| test.c:392:28:392:30 | ... + ... | 4.0 | +| test.c:392:30:392:30 | 1 | 1.0 | +| test.c:392:30:392:30 | (unsigned int)... | 1.0 | +| test.c:392:37:392:39 | 500 | 1.0 | +| test.c:394:10:394:11 | y1 | 1.0 | +| test.c:394:10:394:16 | ... + ... | 2.0 | +| test.c:394:10:394:21 | ... + ... | 10.0 | +| test.c:394:10:394:26 | ... + ... | 50.0 | +| test.c:394:10:394:31 | ... + ... | 250.0 | +| test.c:394:10:394:36 | ... + ... | 1250.0 | +| test.c:394:10:394:41 | ... + ... | 6250.0 | +| test.c:394:10:394:46 | ... + ... | 31250.0 | +| test.c:394:15:394:16 | y2 | 2.0 | +| test.c:394:20:394:21 | y3 | 5.0 | +| test.c:394:25:394:26 | y4 | 5.0 | +| test.c:394:30:394:31 | y5 | 5.0 | +| test.c:394:35:394:36 | y6 | 5.0 | +| test.c:394:40:394:41 | y7 | 5.0 | +| test.c:394:45:394:46 | y8 | 5.0 | +| test.c:400:3:400:4 | y1 | 1.0 | +| test.c:400:3:400:24 | ... = ... | 1.0 | +| test.c:400:8:400:8 | x | 1.0 | +| test.c:400:8:400:14 | ... > ... | 1.0 | +| test.c:400:8:400:24 | ... ? ... : ... | 1.0 | +| test.c:400:12:400:14 | 100 | 1.0 | +| test.c:400:12:400:14 | (unsigned int)... | 1.0 | +| test.c:400:18:400:18 | x | 1.0 | +| test.c:400:22:400:24 | 110 | 1.0 | +| test.c:400:22:400:24 | (unsigned int)... | 1.0 | +| test.c:401:3:401:4 | y2 | 1.0 | +| test.c:401:3:401:25 | ... = ... | 2.0 | +| test.c:401:8:401:8 | x | 2.0 | +| test.c:401:8:401:15 | ... <= ... | 1.0 | +| test.c:401:8:401:25 | ... ? ... : ... | 2.0 | +| test.c:401:13:401:15 | 100 | 1.0 | +| test.c:401:13:401:15 | (unsigned int)... | 1.0 | +| test.c:401:19:401:21 | 110 | 1.0 | +| test.c:401:19:401:21 | (unsigned int)... | 1.0 | +| test.c:401:25:401:25 | x | 2.0 | +| test.c:402:3:402:4 | y3 | 1.0 | +| test.c:402:3:402:11 | ... = ... | 1.0 | +| test.c:402:8:402:11 | 1000 | 1.0 | +| test.c:402:8:402:11 | (unsigned int)... | 1.0 | +| test.c:403:3:403:4 | y4 | 1.0 | +| test.c:403:3:403:11 | ... = ... | 1.0 | +| test.c:403:8:403:11 | 1000 | 1.0 | +| test.c:403:8:403:11 | (unsigned int)... | 1.0 | +| test.c:404:3:404:4 | y5 | 1.0 | +| test.c:404:3:404:11 | ... = ... | 1.0 | +| test.c:404:8:404:11 | 1000 | 1.0 | +| test.c:404:8:404:11 | (unsigned int)... | 1.0 | +| test.c:405:7:405:7 | x | 4.0 | +| test.c:405:7:405:14 | ... >= ... | 1.0 | +| test.c:405:12:405:14 | 300 | 1.0 | +| test.c:405:12:405:14 | (unsigned int)... | 1.0 | +| test.c:406:5:406:6 | y3 | 1.0 | +| test.c:406:5:406:21 | ... = ... | 4.0 | +| test.c:406:10:406:16 | (...) | 4.0 | +| test.c:406:10:406:21 | ... ? ... : ... | 4.0 | +| test.c:406:11:406:11 | x | 4.0 | +| test.c:406:11:406:15 | ... - ... | 4.0 | +| test.c:406:13:406:15 | 300 | 1.0 | +| test.c:406:13:406:15 | (unsigned int)... | 1.0 | +| test.c:406:21:406:21 | 5 | 1.0 | +| test.c:406:21:406:21 | (unsigned int)... | 1.0 | +| test.c:407:5:407:6 | y4 | 1.0 | +| test.c:407:5:407:21 | ... = ... | 4.0 | +| test.c:407:10:407:16 | (...) | 4.0 | +| test.c:407:10:407:21 | ... ? ... : ... | 4.0 | +| test.c:407:11:407:11 | x | 4.0 | +| test.c:407:11:407:15 | ... - ... | 4.0 | +| test.c:407:13:407:15 | 200 | 1.0 | +| test.c:407:13:407:15 | (unsigned int)... | 1.0 | +| test.c:407:21:407:21 | 5 | 1.0 | +| test.c:407:21:407:21 | (unsigned int)... | 1.0 | +| test.c:408:5:408:6 | y5 | 1.0 | +| test.c:408:5:408:38 | ... = ... | 4.0 | +| test.c:408:10:408:33 | (...) | 4.0 | +| test.c:408:10:408:38 | (unsigned int)... | 4.0 | +| test.c:408:10:408:38 | ... ? ... : ... | 4.0 | +| test.c:408:11:408:32 | (unsigned char)... | 4.0 | +| test.c:408:26:408:32 | (...) | 4.0 | +| test.c:408:27:408:27 | x | 4.0 | +| test.c:408:27:408:31 | ... - ... | 4.0 | +| test.c:408:29:408:31 | 200 | 1.0 | +| test.c:408:29:408:31 | (unsigned int)... | 1.0 | +| test.c:408:38:408:38 | 5 | 1.0 | +| test.c:410:10:410:11 | y1 | 1.0 | +| test.c:410:10:410:16 | ... + ... | 2.0 | +| test.c:410:10:410:21 | ... + ... | 10.0 | +| test.c:410:10:410:26 | ... + ... | 50.0 | +| test.c:410:10:410:31 | ... + ... | 250.0 | +| test.c:410:15:410:16 | y2 | 2.0 | +| test.c:410:20:410:21 | y3 | 5.0 | +| test.c:410:25:410:26 | y4 | 5.0 | +| test.c:410:30:410:31 | y5 | 5.0 | +| test.c:415:14:415:14 | m | 1.0 | | test.c:415:14:415:108 | ... ? ... : ... | 1.0 | -| test.c:415:18:415:18 | n | 177147.0 | +| test.c:415:18:415:18 | n | 1.0 | | test.c:415:18:415:95 | ... ? ... : ... | 1.0 | -| test.c:415:22:415:22 | o | 177147.0 | +| test.c:415:22:415:22 | o | 1.0 | | test.c:415:22:415:82 | ... ? ... : ... | 1.0 | -| test.c:415:26:415:26 | p | 177147.0 | +| test.c:415:26:415:26 | p | 1.0 | | test.c:415:26:415:69 | ... ? ... : ... | 1.0 | -| test.c:415:30:415:30 | q | 177147.0 | +| test.c:415:30:415:30 | q | 1.0 | | test.c:415:30:415:56 | ... ? ... : ... | 1.0 | -| test.c:415:34:415:43 | 0.4218627600000000033 | 1.0 | -| test.c:415:47:415:56 | 0.5384335799999999672 | 1.0 | -| test.c:415:60:415:69 | 0.4499667900000000054 | 1.0 | -| test.c:415:73:415:82 | 0.1320411400000000013 | 1.0 | -| test.c:415:86:415:95 | 0.5203124099999999475 | 1.0 | -| test.c:415:99:415:108 | 0.4276264699999999808 | 1.0 | -| test.c:421:19:421:19 | a | 1.0 | -| test.c:421:19:421:23 | ... + ... | 1.0 | -| test.c:421:19:421:27 | ... + ... | 1.0 | -| test.c:421:19:421:31 | ... + ... | 1.0 | -| test.c:421:19:421:35 | ... + ... | 1.0 | -| test.c:421:19:421:39 | ... + ... | 1.0 | -| test.c:421:19:421:43 | ... + ... | 1.0 | -| test.c:421:19:421:47 | ... + ... | 1.0 | -| test.c:421:19:421:51 | ... + ... | 1.0 | -| test.c:421:19:421:55 | ... + ... | 1.0 | -| test.c:421:19:421:59 | ... + ... | 1.0 | -| test.c:421:19:421:63 | ... + ... | 1.0 | -| test.c:421:23:421:23 | b | 1.0 | -| test.c:421:27:421:27 | c | 1.0 | -| test.c:421:31:421:31 | d | 1.0 | -| test.c:421:35:421:35 | e | 1.0 | -| test.c:421:39:421:39 | f | 1.0 | -| test.c:421:43:421:43 | g | 1.0 | -| test.c:421:47:421:47 | h | 1.0 | -| test.c:421:51:421:51 | i | 1.0 | -| test.c:421:55:421:55 | j | 1.0 | -| test.c:421:59:421:59 | k | 1.0 | -| test.c:421:63:421:63 | l | 1.0 | -| test.c:423:10:423:15 | output | 1.0 | -| test.c:430:7:430:9 | rhs | 1.0 | -| test.c:430:7:430:14 | ... < ... | 1.0 | -| test.c:430:13:430:14 | 12 | 1.0 | -| test.c:430:13:430:14 | (unsigned int)... | 1.0 | -| test.c:430:19:430:21 | rhs | 1.0 | -| test.c:430:19:430:26 | ... << ... | 1.0 | -| test.c:430:26:430:26 | 1 | 1.0 | -| test.c:431:7:431:9 | rhs | 2.0 | -| test.c:431:7:431:14 | ... < ... | 1.0 | -| test.c:431:13:431:14 | 13 | 1.0 | -| test.c:431:13:431:14 | (unsigned int)... | 1.0 | -| test.c:431:19:431:21 | rhs | 2.0 | -| test.c:431:19:431:26 | ... << ... | 1.0 | -| test.c:431:26:431:26 | 1 | 1.0 | -| test.c:432:7:432:9 | rhs | 3.0 | -| test.c:432:7:432:14 | ... < ... | 1.0 | -| test.c:432:13:432:14 | 14 | 1.0 | -| test.c:432:13:432:14 | (unsigned int)... | 1.0 | -| test.c:432:19:432:21 | rhs | 3.0 | -| test.c:432:19:432:26 | ... << ... | 1.0 | -| test.c:432:26:432:26 | 1 | 1.0 | -| test.c:433:7:433:9 | rhs | 4.0 | -| test.c:433:7:433:14 | ... < ... | 1.0 | -| test.c:433:13:433:14 | 15 | 1.0 | -| test.c:433:13:433:14 | (unsigned int)... | 1.0 | -| test.c:433:19:433:21 | rhs | 4.0 | -| test.c:433:19:433:26 | ... << ... | 1.0 | -| test.c:433:26:433:26 | 1 | 1.0 | -| test.c:434:7:434:9 | rhs | 5.0 | -| test.c:434:7:434:14 | ... < ... | 1.0 | -| test.c:434:13:434:14 | 16 | 1.0 | -| test.c:434:13:434:14 | (unsigned int)... | 1.0 | -| test.c:434:19:434:21 | rhs | 5.0 | -| test.c:434:19:434:26 | ... << ... | 1.0 | -| test.c:434:26:434:26 | 1 | 1.0 | -| test.c:435:10:435:12 | (int)... | 6.0 | -| test.c:435:10:435:12 | rhs | 6.0 | -| test.c:439:7:439:7 | a | 1.0 | -| test.c:439:7:439:13 | ... == ... | 1.0 | -| test.c:439:12:439:13 | 17 | 1.0 | -| test.c:440:9:440:9 | b | 1.0 | -| test.c:440:9:440:15 | ... == ... | 1.0 | -| test.c:440:14:440:15 | 23 | 1.0 | -| test.c:441:7:441:7 | a | 1.0 | -| test.c:441:7:441:12 | ... += ... | 1.0 | -| test.c:441:12:441:12 | b | 1.0 | -| test.c:443:9:443:9 | a | 2.0 | -| test.c:443:9:443:15 | ... == ... | 1.0 | -| test.c:443:14:443:15 | 18 | 1.0 | -| test.c:444:7:444:7 | b | 1.0 | -| test.c:444:7:444:12 | ... = ... | 1.0 | -| test.c:444:11:444:12 | 10 | 1.0 | -| test.c:449:11:449:11 | a | 4.0 | -| test.c:449:11:449:15 | ... + ... | 16.0 | -| test.c:449:15:449:15 | b | 4.0 | -| test.c:450:10:450:10 | a | 4.0 | -| test.c:450:10:450:14 | ... + ... | 16.0 | -| test.c:450:14:450:14 | b | 4.0 | -| test.c:457:4:459:50 | (...) | 1.0 | -| test.c:457:4:542:26 | ... > ... | 1.0 | -| test.c:457:4:631:27 | ... ? ... : ... | 1.297918419127476E201 | -| test.c:457:5:457:6 | 14 | 1.0 | -| test.c:457:5:457:6 | (unsigned int)... | 1.0 | -| test.c:457:5:457:11 | ... * ... | 1.0 | -| test.c:457:5:457:55 | ... > ... | 1.0 | -| test.c:457:5:459:49 | ... ? ... : ... | 1.0 | -| test.c:457:10:457:11 | ip | 1.0 | -| test.c:457:15:457:26 | (...) | 1.0 | -| test.c:457:15:457:31 | ... * ... | 1.0 | -| test.c:457:15:457:55 | ... + ... | 1.0 | -| test.c:457:16:457:16 | 2 | 1.0 | -| test.c:457:16:457:16 | (unsigned int)... | 1.0 | -| test.c:457:16:457:21 | ... * ... | 1.0 | -| test.c:457:16:457:25 | ... + ... | 1.0 | -| test.c:457:20:457:21 | ip | 1.0 | -| test.c:457:25:457:25 | 1 | 1.0 | -| test.c:457:25:457:25 | (unsigned int)... | 1.0 | -| test.c:457:30:457:31 | 17 | 1.0 | -| test.c:457:30:457:31 | (unsigned int)... | 1.0 | -| test.c:457:35:457:50 | (...) | 1.0 | -| test.c:457:35:457:55 | ... * ... | 1.0 | -| test.c:457:36:457:36 | 2 | 1.0 | -| test.c:457:36:457:36 | (unsigned int)... | 1.0 | -| test.c:457:36:457:41 | ... * ... | 1.0 | -| test.c:457:36:457:45 | ... + ... | 1.0 | -| test.c:457:36:457:49 | ... + ... | 1.0 | -| test.c:457:40:457:41 | ip | 1.0 | -| test.c:457:45:457:45 | 1 | 1.0 | -| test.c:457:45:457:45 | (unsigned int)... | 1.0 | -| test.c:457:49:457:49 | 1 | 1.0 | -| test.c:457:49:457:49 | (unsigned int)... | 1.0 | -| test.c:457:54:457:55 | 17 | 1.0 | -| test.c:457:54:457:55 | (unsigned int)... | 1.0 | -| test.c:458:9:458:10 | 14 | 1.0 | -| test.c:458:9:458:10 | (unsigned int)... | 1.0 | -| test.c:458:9:458:15 | ... * ... | 1.0 | -| test.c:458:14:458:15 | ip | 1.0 | -| test.c:459:9:459:20 | (...) | 1.0 | -| test.c:459:9:459:25 | ... * ... | 1.0 | -| test.c:459:9:459:49 | ... + ... | 1.0 | -| test.c:459:10:459:10 | 2 | 1.0 | -| test.c:459:10:459:10 | (unsigned int)... | 1.0 | -| test.c:459:10:459:15 | ... * ... | 1.0 | -| test.c:459:10:459:19 | ... + ... | 1.0 | -| test.c:459:14:459:15 | ip | 1.0 | -| test.c:459:19:459:19 | 1 | 1.0 | -| test.c:459:19:459:19 | (unsigned int)... | 1.0 | -| test.c:459:24:459:25 | 14 | 1.0 | -| test.c:459:24:459:25 | (unsigned int)... | 1.0 | -| test.c:459:29:459:44 | (...) | 1.0 | -| test.c:459:29:459:49 | ... * ... | 1.0 | -| test.c:459:30:459:30 | 2 | 1.0 | -| test.c:459:30:459:30 | (unsigned int)... | 1.0 | -| test.c:459:30:459:35 | ... * ... | 1.0 | -| test.c:459:30:459:39 | ... + ... | 1.0 | -| test.c:459:30:459:43 | ... + ... | 1.0 | -| test.c:459:34:459:35 | ip | 1.0 | -| test.c:459:39:459:39 | 1 | 1.0 | -| test.c:459:39:459:39 | (unsigned int)... | 1.0 | -| test.c:459:43:459:43 | 1 | 1.0 | -| test.c:459:43:459:43 | (unsigned int)... | 1.0 | -| test.c:459:48:459:49 | 17 | 1.0 | -| test.c:459:48:459:49 | (unsigned int)... | 1.0 | -| test.c:460:5:542:26 | (...) | 9.29462083211502E84 | -| test.c:460:6:460:6 | 2 | 1.0 | -| test.c:460:6:460:6 | (unsigned int)... | 1.0 | -| test.c:460:6:460:23 | ... * ... | 2.0 | -| test.c:460:6:479:42 | ... + ... | 4.524508125E10 | -| test.c:460:6:499:24 | ... > ... | 1.0 | -| test.c:460:6:542:25 | ... ? ... : ... | 9.29462083211502E84 | -| test.c:460:10:460:23 | (...) | 2.0 | -| test.c:460:11:460:12 | ip | 2.0 | -| test.c:460:11:460:17 | ... * ... | 2.0 | -| test.c:460:11:460:22 | ... + ... | 2.0 | -| test.c:460:16:460:17 | 14 | 1.0 | -| test.c:460:16:460:17 | (unsigned int)... | 1.0 | -| test.c:460:21:460:22 | 32 | 1.0 | -| test.c:460:21:460:22 | (unsigned int)... | 1.0 | -| test.c:461:7:479:42 | (...) | 2.2622540625E10 | -| test.c:461:8:461:8 | 4 | 1.0 | -| test.c:461:8:461:8 | (unsigned int)... | 1.0 | -| test.c:461:8:461:25 | ... * ... | 2.0 | -| test.c:461:8:462:26 | ... + ... | 4.0 | -| test.c:461:8:463:26 | ... + ... | 8.0 | -| test.c:461:8:468:22 | ... + ... | 1000.0 | -| test.c:461:8:469:37 | ... > ... | 1.0 | -| test.c:461:8:479:41 | ... ? ... : ... | 2.2622540625E10 | -| test.c:461:12:461:25 | (...) | 2.0 | -| test.c:461:13:461:14 | ip | 2.0 | -| test.c:461:13:461:19 | ... * ... | 2.0 | -| test.c:461:13:461:24 | ... + ... | 2.0 | -| test.c:461:18:461:19 | 14 | 1.0 | -| test.c:461:18:461:19 | (unsigned int)... | 1.0 | -| test.c:461:23:461:24 | 32 | 1.0 | -| test.c:461:23:461:24 | (unsigned int)... | 1.0 | -| test.c:462:9:462:26 | (...) | 2.0 | -| test.c:462:10:462:10 | 2 | 1.0 | -| test.c:462:10:462:10 | (unsigned int)... | 1.0 | -| test.c:462:10:462:15 | ... * ... | 2.0 | -| test.c:462:10:462:20 | ... * ... | 2.0 | -| test.c:462:10:462:25 | ... + ... | 2.0 | -| test.c:462:14:462:15 | ip | 2.0 | -| test.c:462:19:462:20 | 14 | 1.0 | -| test.c:462:19:462:20 | (unsigned int)... | 1.0 | -| test.c:462:24:462:25 | 32 | 1.0 | -| test.c:462:24:462:25 | (unsigned int)... | 1.0 | -| test.c:463:9:463:9 | 2 | 1.0 | -| test.c:463:9:463:9 | (unsigned int)... | 1.0 | -| test.c:463:9:463:26 | ... * ... | 2.0 | -| test.c:463:13:463:26 | (...) | 2.0 | -| test.c:463:14:463:15 | ip | 2.0 | -| test.c:463:14:463:20 | ... * ... | 2.0 | -| test.c:463:14:463:25 | ... + ... | 2.0 | -| test.c:463:19:463:20 | 14 | 1.0 | -| test.c:463:19:463:20 | (unsigned int)... | 1.0 | -| test.c:463:24:463:25 | 64 | 1.0 | -| test.c:463:24:463:25 | (unsigned int)... | 1.0 | -| test.c:464:9:468:22 | (...) | 125.0 | -| test.c:464:10:464:21 | (...) | 2.0 | -| test.c:464:10:464:26 | ... * ... | 2.0 | -| test.c:464:10:464:80 | ... > ... | 1.0 | -| test.c:464:10:468:21 | ... ? ... : ... | 125.0 | -| test.c:464:11:464:11 | 2 | 1.0 | -| test.c:464:11:464:11 | (unsigned int)... | 1.0 | -| test.c:464:11:464:16 | ... * ... | 2.0 | -| test.c:464:11:464:20 | ... + ... | 2.0 | -| test.c:464:15:464:16 | ip | 2.0 | -| test.c:464:20:464:20 | 1 | 1.0 | -| test.c:464:20:464:20 | (unsigned int)... | 1.0 | -| test.c:464:25:464:26 | 14 | 1.0 | -| test.c:464:25:464:26 | (unsigned int)... | 1.0 | -| test.c:464:30:464:80 | (...) | 4.0 | -| test.c:464:31:464:32 | 17 | 1.0 | -| test.c:464:31:464:32 | (unsigned int)... | 1.0 | -| test.c:464:31:464:43 | ... * ... | 2.0 | -| test.c:464:31:464:53 | ... > ... | 1.0 | -| test.c:464:31:464:79 | ... ? ... : ... | 4.0 | -| test.c:464:36:464:43 | (...) | 2.0 | -| test.c:464:37:464:37 | 2 | 1.0 | -| test.c:464:37:464:37 | (unsigned int)... | 1.0 | -| test.c:464:37:464:42 | ... * ... | 2.0 | -| test.c:464:41:464:42 | ip | 2.0 | -| test.c:464:47:464:48 | 17 | 1.0 | -| test.c:464:47:464:48 | (unsigned int)... | 1.0 | -| test.c:464:47:464:53 | ... * ... | 2.0 | -| test.c:464:52:464:53 | ip | 2.0 | -| test.c:464:57:464:58 | 17 | 1.0 | -| test.c:464:57:464:58 | (unsigned int)... | 1.0 | -| test.c:464:57:464:69 | ... * ... | 2.0 | -| test.c:464:62:464:69 | (...) | 2.0 | -| test.c:464:63:464:63 | 2 | 1.0 | -| test.c:464:63:464:63 | (unsigned int)... | 1.0 | -| test.c:464:63:464:68 | ... * ... | 2.0 | -| test.c:464:67:464:68 | ip | 2.0 | -| test.c:464:73:464:74 | 17 | 1.0 | -| test.c:464:73:464:74 | (unsigned int)... | 1.0 | -| test.c:464:73:464:79 | ... * ... | 2.0 | -| test.c:464:78:464:79 | ip | 2.0 | -| test.c:465:13:465:24 | (...) | 5.0 | -| test.c:465:13:465:29 | ... * ... | 5.0 | -| test.c:465:14:465:14 | 2 | 1.0 | -| test.c:465:14:465:14 | (unsigned int)... | 1.0 | -| test.c:465:14:465:19 | ... * ... | 5.0 | -| test.c:465:14:465:23 | ... + ... | 5.0 | -| test.c:465:18:465:19 | ip | 5.0 | -| test.c:465:23:465:23 | 1 | 1.0 | -| test.c:465:23:465:23 | (unsigned int)... | 1.0 | -| test.c:465:28:465:29 | 14 | 1.0 | -| test.c:465:28:465:29 | (unsigned int)... | 1.0 | -| test.c:466:13:466:14 | 14 | 1.0 | -| test.c:466:13:466:14 | (unsigned int)... | 1.0 | -| test.c:466:13:466:25 | ... * ... | 5.0 | -| test.c:466:13:466:35 | ... > ... | 1.0 | -| test.c:466:13:468:21 | ... ? ... : ... | 25.0 | -| test.c:466:18:466:25 | (...) | 5.0 | -| test.c:466:19:466:19 | 2 | 1.0 | -| test.c:466:19:466:19 | (unsigned int)... | 1.0 | -| test.c:466:19:466:24 | ... * ... | 5.0 | -| test.c:466:23:466:24 | ip | 5.0 | -| test.c:466:29:466:30 | 17 | 1.0 | -| test.c:466:29:466:30 | (unsigned int)... | 1.0 | -| test.c:466:29:466:35 | ... * ... | 5.0 | -| test.c:466:34:466:35 | ip | 5.0 | -| test.c:467:15:467:16 | 14 | 1.0 | -| test.c:467:15:467:16 | (unsigned int)... | 1.0 | -| test.c:467:15:467:27 | ... * ... | 5.0 | -| test.c:467:20:467:27 | (...) | 5.0 | -| test.c:467:21:467:21 | 2 | 1.0 | -| test.c:467:21:467:21 | (unsigned int)... | 1.0 | -| test.c:467:21:467:26 | ... * ... | 5.0 | -| test.c:467:25:467:26 | ip | 5.0 | -| test.c:468:15:468:16 | 14 | 1.0 | -| test.c:468:15:468:16 | (unsigned int)... | 1.0 | -| test.c:468:15:468:21 | ... * ... | 5.0 | -| test.c:468:20:468:21 | ip | 5.0 | -| test.c:469:7:469:7 | 2 | 1.0 | -| test.c:469:7:469:7 | (unsigned int)... | 1.0 | -| test.c:469:7:469:12 | ... * ... | 15.0 | -| test.c:469:7:469:17 | ... * ... | 15.0 | -| test.c:469:7:469:37 | ... + ... | 225.0 | -| test.c:469:11:469:12 | ip | 15.0 | -| test.c:469:16:469:17 | 14 | 1.0 | -| test.c:469:16:469:17 | (unsigned int)... | 1.0 | -| test.c:469:21:469:32 | (...) | 15.0 | -| test.c:469:21:469:37 | ... * ... | 15.0 | -| test.c:469:22:469:22 | 2 | 1.0 | -| test.c:469:22:469:22 | (unsigned int)... | 1.0 | -| test.c:469:22:469:27 | ... * ... | 15.0 | -| test.c:469:22:469:31 | ... + ... | 15.0 | -| test.c:469:26:469:27 | ip | 15.0 | -| test.c:469:31:469:31 | 1 | 1.0 | -| test.c:469:31:469:31 | (unsigned int)... | 1.0 | -| test.c:469:36:469:37 | 17 | 1.0 | -| test.c:469:36:469:37 | (unsigned int)... | 1.0 | -| test.c:470:11:470:11 | 4 | 1.0 | -| test.c:470:11:470:11 | (unsigned int)... | 1.0 | -| test.c:470:11:470:28 | ... * ... | 15.0 | -| test.c:470:11:471:28 | ... + ... | 225.0 | -| test.c:470:11:472:28 | ... + ... | 3375.0 | -| test.c:470:11:478:24 | ... + ... | 1.00544625E8 | -| test.c:470:15:470:28 | (...) | 15.0 | -| test.c:470:16:470:17 | ip | 15.0 | -| test.c:470:16:470:22 | ... * ... | 15.0 | -| test.c:470:16:470:27 | ... + ... | 15.0 | -| test.c:470:21:470:22 | 14 | 1.0 | -| test.c:470:21:470:22 | (unsigned int)... | 1.0 | -| test.c:470:26:470:27 | 32 | 1.0 | -| test.c:470:26:470:27 | (unsigned int)... | 1.0 | -| test.c:471:11:471:28 | (...) | 15.0 | -| test.c:471:12:471:12 | 2 | 1.0 | -| test.c:471:12:471:12 | (unsigned int)... | 1.0 | -| test.c:471:12:471:17 | ... * ... | 15.0 | -| test.c:471:12:471:22 | ... * ... | 15.0 | -| test.c:471:12:471:27 | ... + ... | 15.0 | -| test.c:471:16:471:17 | ip | 15.0 | -| test.c:471:21:471:22 | 14 | 1.0 | +| test.c:415:34:415:43 | 0.4743882700000000008 | 1.0 | +| test.c:415:47:415:56 | 0.1433388700000000071 | 1.0 | +| test.c:415:60:415:69 | 0.3527920299999999787 | 1.0 | +| test.c:415:73:415:82 | 0.3920645799999999959 | 1.0 | +| test.c:415:86:415:95 | 0.2154022499999999896 | 1.0 | +| test.c:415:99:415:108 | 0.4049680500000000238 | 1.0 | +| test.c:416:14:416:14 | m | 2.0 | +| test.c:416:14:416:108 | ... ? ... : ... | 1.0 | +| test.c:416:18:416:18 | n | 3.0 | +| test.c:416:18:416:95 | ... ? ... : ... | 1.0 | +| test.c:416:22:416:22 | o | 3.0 | +| test.c:416:22:416:82 | ... ? ... : ... | 1.0 | +| test.c:416:26:416:26 | p | 3.0 | +| test.c:416:26:416:69 | ... ? ... : ... | 1.0 | +| test.c:416:30:416:30 | q | 3.0 | +| test.c:416:30:416:56 | ... ? ... : ... | 1.0 | +| test.c:416:34:416:43 | 0.3418334800000000229 | 1.0 | +| test.c:416:47:416:56 | 0.3533464000000000049 | 1.0 | +| test.c:416:60:416:69 | 0.2224785300000000077 | 1.0 | +| test.c:416:73:416:82 | 0.326618929999999974 | 1.0 | +| test.c:416:86:416:95 | 0.5927046500000000551 | 1.0 | +| test.c:416:99:416:108 | 0.5297741000000000255 | 1.0 | +| test.c:417:14:417:14 | m | 4.0 | +| test.c:417:14:417:108 | ... ? ... : ... | 1.0 | +| test.c:417:18:417:18 | n | 9.0 | +| test.c:417:18:417:95 | ... ? ... : ... | 1.0 | +| test.c:417:22:417:22 | o | 9.0 | +| test.c:417:22:417:82 | ... ? ... : ... | 1.0 | +| test.c:417:26:417:26 | p | 9.0 | +| test.c:417:26:417:69 | ... ? ... : ... | 1.0 | +| test.c:417:30:417:30 | q | 9.0 | +| test.c:417:30:417:56 | ... ? ... : ... | 1.0 | +| test.c:417:34:417:43 | 0.774296030000000024 | 1.0 | +| test.c:417:47:417:56 | 0.3147808400000000062 | 1.0 | +| test.c:417:60:417:69 | 0.3123551399999999756 | 1.0 | +| test.c:417:73:417:82 | 0.05121255999999999725 | 1.0 | +| test.c:417:86:417:95 | 0.7931074500000000471 | 1.0 | +| test.c:417:99:417:108 | 0.6798145100000000385 | 1.0 | +| test.c:418:14:418:14 | m | 8.0 | +| test.c:418:14:418:108 | ... ? ... : ... | 1.0 | +| test.c:418:18:418:18 | n | 27.0 | +| test.c:418:18:418:95 | ... ? ... : ... | 1.0 | +| test.c:418:22:418:22 | o | 27.0 | +| test.c:418:22:418:82 | ... ? ... : ... | 1.0 | +| test.c:418:26:418:26 | p | 27.0 | +| test.c:418:26:418:69 | ... ? ... : ... | 1.0 | +| test.c:418:30:418:30 | q | 27.0 | +| test.c:418:30:418:56 | ... ? ... : ... | 1.0 | +| test.c:418:34:418:43 | 0.4472955599999999809 | 1.0 | +| test.c:418:47:418:56 | 0.8059920200000000312 | 1.0 | +| test.c:418:60:418:69 | 0.9899726199999999698 | 1.0 | +| test.c:418:73:418:82 | 0.5995273199999999747 | 1.0 | +| test.c:418:86:418:95 | 0.3697694799999999837 | 1.0 | +| test.c:418:99:418:108 | 0.8386683499999999514 | 1.0 | +| test.c:419:14:419:14 | m | 16.0 | +| test.c:419:14:419:108 | ... ? ... : ... | 1.0 | +| test.c:419:18:419:18 | n | 81.0 | +| test.c:419:18:419:95 | ... ? ... : ... | 1.0 | +| test.c:419:22:419:22 | o | 81.0 | +| test.c:419:22:419:82 | ... ? ... : ... | 1.0 | +| test.c:419:26:419:26 | p | 81.0 | +| test.c:419:26:419:69 | ... ? ... : ... | 1.0 | +| test.c:419:30:419:30 | q | 81.0 | +| test.c:419:30:419:56 | ... ? ... : ... | 1.0 | +| test.c:419:34:419:43 | 0.4931182800000000199 | 1.0 | +| test.c:419:47:419:56 | 0.9038991100000000056 | 1.0 | +| test.c:419:60:419:69 | 0.1059771199999999941 | 1.0 | +| test.c:419:73:419:82 | 0.2177842600000000073 | 1.0 | +| test.c:419:86:419:95 | 0.7248596600000000167 | 1.0 | +| test.c:419:99:419:108 | 0.6873487400000000136 | 1.0 | +| test.c:420:14:420:14 | m | 32.0 | +| test.c:420:14:420:108 | ... ? ... : ... | 1.0 | +| test.c:420:18:420:18 | n | 243.0 | +| test.c:420:18:420:95 | ... ? ... : ... | 1.0 | +| test.c:420:22:420:22 | o | 243.0 | +| test.c:420:22:420:82 | ... ? ... : ... | 1.0 | +| test.c:420:26:420:26 | p | 243.0 | +| test.c:420:26:420:69 | ... ? ... : ... | 1.0 | +| test.c:420:30:420:30 | q | 243.0 | +| test.c:420:30:420:56 | ... ? ... : ... | 1.0 | +| test.c:420:34:420:43 | 0.4745284799999999747 | 1.0 | +| test.c:420:47:420:56 | 0.107866500000000004 | 1.0 | +| test.c:420:60:420:69 | 0.1188457599999999947 | 1.0 | +| test.c:420:73:420:82 | 0.7616405200000000431 | 1.0 | +| test.c:420:86:420:95 | 0.3480889200000000239 | 1.0 | +| test.c:420:99:420:108 | 0.584408649999999974 | 1.0 | +| test.c:421:14:421:14 | m | 64.0 | +| test.c:421:14:421:108 | ... ? ... : ... | 1.0 | +| test.c:421:18:421:18 | n | 729.0 | +| test.c:421:18:421:95 | ... ? ... : ... | 1.0 | +| test.c:421:22:421:22 | o | 729.0 | +| test.c:421:22:421:82 | ... ? ... : ... | 1.0 | +| test.c:421:26:421:26 | p | 729.0 | +| test.c:421:26:421:69 | ... ? ... : ... | 1.0 | +| test.c:421:30:421:30 | q | 729.0 | +| test.c:421:30:421:56 | ... ? ... : ... | 1.0 | +| test.c:421:34:421:43 | 0.02524326 | 1.0 | +| test.c:421:47:421:56 | 0.8290504600000000446 | 1.0 | +| test.c:421:60:421:69 | 0.95823075000000002 | 1.0 | +| test.c:421:73:421:82 | 0.1251655799999999985 | 1.0 | +| test.c:421:86:421:95 | 0.8523517900000000536 | 1.0 | +| test.c:421:99:421:108 | 0.3623238400000000081 | 1.0 | +| test.c:422:14:422:14 | m | 128.0 | +| test.c:422:14:422:108 | ... ? ... : ... | 1.0 | +| test.c:422:18:422:18 | n | 2187.0 | +| test.c:422:18:422:95 | ... ? ... : ... | 1.0 | +| test.c:422:22:422:22 | o | 2187.0 | +| test.c:422:22:422:82 | ... ? ... : ... | 1.0 | +| test.c:422:26:422:26 | p | 2187.0 | +| test.c:422:26:422:69 | ... ? ... : ... | 1.0 | +| test.c:422:30:422:30 | q | 2187.0 | +| test.c:422:30:422:56 | ... ? ... : ... | 1.0 | +| test.c:422:34:422:43 | 0.3870862600000000153 | 1.0 | +| test.c:422:47:422:56 | 0.3287604399999999871 | 1.0 | +| test.c:422:60:422:69 | 0.1496348500000000137 | 1.0 | +| test.c:422:73:422:82 | 0.4504110800000000192 | 1.0 | +| test.c:422:86:422:95 | 0.4864090899999999884 | 1.0 | +| test.c:422:99:422:108 | 0.8433127200000000157 | 1.0 | +| test.c:423:14:423:14 | m | 256.0 | +| test.c:423:14:423:108 | ... ? ... : ... | 1.0 | +| test.c:423:18:423:18 | n | 6561.0 | +| test.c:423:18:423:95 | ... ? ... : ... | 1.0 | +| test.c:423:22:423:22 | o | 6561.0 | +| test.c:423:22:423:82 | ... ? ... : ... | 1.0 | +| test.c:423:26:423:26 | p | 6561.0 | +| test.c:423:26:423:69 | ... ? ... : ... | 1.0 | +| test.c:423:30:423:30 | q | 6561.0 | +| test.c:423:30:423:56 | ... ? ... : ... | 1.0 | +| test.c:423:34:423:43 | 0.1575506299999999971 | 1.0 | +| test.c:423:47:423:56 | 0.7708683299999999905 | 1.0 | +| test.c:423:60:423:69 | 0.2642848099999999811 | 1.0 | +| test.c:423:73:423:82 | 0.1480050800000000111 | 1.0 | +| test.c:423:86:423:95 | 0.374281430000000026 | 1.0 | +| test.c:423:99:423:108 | 0.05328182000000000057 | 1.0 | +| test.c:424:14:424:14 | m | 512.0 | +| test.c:424:14:424:108 | ... ? ... : ... | 1.0 | +| test.c:424:18:424:18 | n | 19683.0 | +| test.c:424:18:424:95 | ... ? ... : ... | 1.0 | +| test.c:424:22:424:22 | o | 19683.0 | +| test.c:424:22:424:82 | ... ? ... : ... | 1.0 | +| test.c:424:26:424:26 | p | 19683.0 | +| test.c:424:26:424:69 | ... ? ... : ... | 1.0 | +| test.c:424:30:424:30 | q | 19683.0 | +| test.c:424:30:424:56 | ... ? ... : ... | 1.0 | +| test.c:424:34:424:43 | 0.4173653600000000186 | 1.0 | +| test.c:424:47:424:56 | 0.7682662799999999681 | 1.0 | +| test.c:424:60:424:69 | 0.2764323799999999776 | 1.0 | +| test.c:424:73:424:82 | 0.5567927400000000082 | 1.0 | +| test.c:424:86:424:95 | 0.3946885700000000163 | 1.0 | +| test.c:424:99:424:108 | 0.6907214400000000198 | 1.0 | +| test.c:425:14:425:14 | m | 1024.0 | +| test.c:425:14:425:108 | ... ? ... : ... | 1.0 | +| test.c:425:18:425:18 | n | 59049.0 | +| test.c:425:18:425:95 | ... ? ... : ... | 1.0 | +| test.c:425:22:425:22 | o | 59049.0 | +| test.c:425:22:425:82 | ... ? ... : ... | 1.0 | +| test.c:425:26:425:26 | p | 59049.0 | +| test.c:425:26:425:69 | ... ? ... : ... | 1.0 | +| test.c:425:30:425:30 | q | 59049.0 | +| test.c:425:30:425:56 | ... ? ... : ... | 1.0 | +| test.c:425:34:425:43 | 0.8895534499999999678 | 1.0 | +| test.c:425:47:425:56 | 0.2990482400000000207 | 1.0 | +| test.c:425:60:425:69 | 0.7624258299999999711 | 1.0 | +| test.c:425:73:425:82 | 0.2051910999999999874 | 1.0 | +| test.c:425:86:425:95 | 0.8874555899999999609 | 1.0 | +| test.c:425:99:425:108 | 0.8137279800000000174 | 1.0 | +| test.c:426:14:426:14 | m | 2048.0 | +| test.c:426:14:426:108 | ... ? ... : ... | 1.0 | +| test.c:426:18:426:18 | n | 177147.0 | +| test.c:426:18:426:95 | ... ? ... : ... | 1.0 | +| test.c:426:22:426:22 | o | 177147.0 | +| test.c:426:22:426:82 | ... ? ... : ... | 1.0 | +| test.c:426:26:426:26 | p | 177147.0 | +| test.c:426:26:426:69 | ... ? ... : ... | 1.0 | +| test.c:426:30:426:30 | q | 177147.0 | +| test.c:426:30:426:56 | ... ? ... : ... | 1.0 | +| test.c:426:34:426:43 | 0.4218627600000000033 | 1.0 | +| test.c:426:47:426:56 | 0.5384335799999999672 | 1.0 | +| test.c:426:60:426:69 | 0.4499667900000000054 | 1.0 | +| test.c:426:73:426:82 | 0.1320411400000000013 | 1.0 | +| test.c:426:86:426:95 | 0.5203124099999999475 | 1.0 | +| test.c:426:99:426:108 | 0.4276264699999999808 | 1.0 | +| test.c:432:19:432:19 | a | 1.0 | +| test.c:432:19:432:23 | ... + ... | 1.0 | +| test.c:432:19:432:27 | ... + ... | 1.0 | +| test.c:432:19:432:31 | ... + ... | 1.0 | +| test.c:432:19:432:35 | ... + ... | 1.0 | +| test.c:432:19:432:39 | ... + ... | 1.0 | +| test.c:432:19:432:43 | ... + ... | 1.0 | +| test.c:432:19:432:47 | ... + ... | 1.0 | +| test.c:432:19:432:51 | ... + ... | 1.0 | +| test.c:432:19:432:55 | ... + ... | 1.0 | +| test.c:432:19:432:59 | ... + ... | 1.0 | +| test.c:432:19:432:63 | ... + ... | 1.0 | +| test.c:432:23:432:23 | b | 1.0 | +| test.c:432:27:432:27 | c | 1.0 | +| test.c:432:31:432:31 | d | 1.0 | +| test.c:432:35:432:35 | e | 1.0 | +| test.c:432:39:432:39 | f | 1.0 | +| test.c:432:43:432:43 | g | 1.0 | +| test.c:432:47:432:47 | h | 1.0 | +| test.c:432:51:432:51 | i | 1.0 | +| test.c:432:55:432:55 | j | 1.0 | +| test.c:432:59:432:59 | k | 1.0 | +| test.c:432:63:432:63 | l | 1.0 | +| test.c:434:10:434:15 | output | 1.0 | +| test.c:441:7:441:9 | rhs | 1.0 | +| test.c:441:7:441:14 | ... < ... | 1.0 | +| test.c:441:13:441:14 | 12 | 1.0 | +| test.c:441:13:441:14 | (unsigned int)... | 1.0 | +| test.c:441:19:441:21 | rhs | 1.0 | +| test.c:441:19:441:26 | ... << ... | 1.0 | +| test.c:441:26:441:26 | 1 | 1.0 | +| test.c:442:7:442:9 | rhs | 2.0 | +| test.c:442:7:442:14 | ... < ... | 1.0 | +| test.c:442:13:442:14 | 13 | 1.0 | +| test.c:442:13:442:14 | (unsigned int)... | 1.0 | +| test.c:442:19:442:21 | rhs | 2.0 | +| test.c:442:19:442:26 | ... << ... | 1.0 | +| test.c:442:26:442:26 | 1 | 1.0 | +| test.c:443:7:443:9 | rhs | 3.0 | +| test.c:443:7:443:14 | ... < ... | 1.0 | +| test.c:443:13:443:14 | 14 | 1.0 | +| test.c:443:13:443:14 | (unsigned int)... | 1.0 | +| test.c:443:19:443:21 | rhs | 3.0 | +| test.c:443:19:443:26 | ... << ... | 1.0 | +| test.c:443:26:443:26 | 1 | 1.0 | +| test.c:444:7:444:9 | rhs | 4.0 | +| test.c:444:7:444:14 | ... < ... | 1.0 | +| test.c:444:13:444:14 | 15 | 1.0 | +| test.c:444:13:444:14 | (unsigned int)... | 1.0 | +| test.c:444:19:444:21 | rhs | 4.0 | +| test.c:444:19:444:26 | ... << ... | 1.0 | +| test.c:444:26:444:26 | 1 | 1.0 | +| test.c:445:7:445:9 | rhs | 5.0 | +| test.c:445:7:445:14 | ... < ... | 1.0 | +| test.c:445:13:445:14 | 16 | 1.0 | +| test.c:445:13:445:14 | (unsigned int)... | 1.0 | +| test.c:445:19:445:21 | rhs | 5.0 | +| test.c:445:19:445:26 | ... << ... | 1.0 | +| test.c:445:26:445:26 | 1 | 1.0 | +| test.c:446:10:446:12 | (int)... | 6.0 | +| test.c:446:10:446:12 | rhs | 6.0 | +| test.c:450:7:450:7 | a | 1.0 | +| test.c:450:7:450:13 | ... == ... | 1.0 | +| test.c:450:12:450:13 | 17 | 1.0 | +| test.c:451:9:451:9 | b | 1.0 | +| test.c:451:9:451:15 | ... == ... | 1.0 | +| test.c:451:14:451:15 | 23 | 1.0 | +| test.c:452:7:452:7 | a | 1.0 | +| test.c:452:7:452:12 | ... += ... | 1.0 | +| test.c:452:12:452:12 | b | 1.0 | +| test.c:454:9:454:9 | a | 2.0 | +| test.c:454:9:454:15 | ... == ... | 1.0 | +| test.c:454:14:454:15 | 18 | 1.0 | +| test.c:455:7:455:7 | b | 1.0 | +| test.c:455:7:455:12 | ... = ... | 1.0 | +| test.c:455:11:455:12 | 10 | 1.0 | +| test.c:460:11:460:11 | a | 4.0 | +| test.c:460:11:460:15 | ... + ... | 16.0 | +| test.c:460:15:460:15 | b | 4.0 | +| test.c:461:10:461:10 | a | 4.0 | +| test.c:461:10:461:14 | ... + ... | 16.0 | +| test.c:461:14:461:14 | b | 4.0 | +| test.c:468:4:470:50 | (...) | 1.0 | +| test.c:468:4:553:26 | ... > ... | 1.0 | +| test.c:468:4:642:27 | ... ? ... : ... | 1.297918419127476E201 | +| test.c:468:5:468:6 | 14 | 1.0 | +| test.c:468:5:468:6 | (unsigned int)... | 1.0 | +| test.c:468:5:468:11 | ... * ... | 1.0 | +| test.c:468:5:468:55 | ... > ... | 1.0 | +| test.c:468:5:470:49 | ... ? ... : ... | 1.0 | +| test.c:468:10:468:11 | ip | 1.0 | +| test.c:468:15:468:26 | (...) | 1.0 | +| test.c:468:15:468:31 | ... * ... | 1.0 | +| test.c:468:15:468:55 | ... + ... | 1.0 | +| test.c:468:16:468:16 | 2 | 1.0 | +| test.c:468:16:468:16 | (unsigned int)... | 1.0 | +| test.c:468:16:468:21 | ... * ... | 1.0 | +| test.c:468:16:468:25 | ... + ... | 1.0 | +| test.c:468:20:468:21 | ip | 1.0 | +| test.c:468:25:468:25 | 1 | 1.0 | +| test.c:468:25:468:25 | (unsigned int)... | 1.0 | +| test.c:468:30:468:31 | 17 | 1.0 | +| test.c:468:30:468:31 | (unsigned int)... | 1.0 | +| test.c:468:35:468:50 | (...) | 1.0 | +| test.c:468:35:468:55 | ... * ... | 1.0 | +| test.c:468:36:468:36 | 2 | 1.0 | +| test.c:468:36:468:36 | (unsigned int)... | 1.0 | +| test.c:468:36:468:41 | ... * ... | 1.0 | +| test.c:468:36:468:45 | ... + ... | 1.0 | +| test.c:468:36:468:49 | ... + ... | 1.0 | +| test.c:468:40:468:41 | ip | 1.0 | +| test.c:468:45:468:45 | 1 | 1.0 | +| test.c:468:45:468:45 | (unsigned int)... | 1.0 | +| test.c:468:49:468:49 | 1 | 1.0 | +| test.c:468:49:468:49 | (unsigned int)... | 1.0 | +| test.c:468:54:468:55 | 17 | 1.0 | +| test.c:468:54:468:55 | (unsigned int)... | 1.0 | +| test.c:469:9:469:10 | 14 | 1.0 | +| test.c:469:9:469:10 | (unsigned int)... | 1.0 | +| test.c:469:9:469:15 | ... * ... | 1.0 | +| test.c:469:14:469:15 | ip | 1.0 | +| test.c:470:9:470:20 | (...) | 1.0 | +| test.c:470:9:470:25 | ... * ... | 1.0 | +| test.c:470:9:470:49 | ... + ... | 1.0 | +| test.c:470:10:470:10 | 2 | 1.0 | +| test.c:470:10:470:10 | (unsigned int)... | 1.0 | +| test.c:470:10:470:15 | ... * ... | 1.0 | +| test.c:470:10:470:19 | ... + ... | 1.0 | +| test.c:470:14:470:15 | ip | 1.0 | +| test.c:470:19:470:19 | 1 | 1.0 | +| test.c:470:19:470:19 | (unsigned int)... | 1.0 | +| test.c:470:24:470:25 | 14 | 1.0 | +| test.c:470:24:470:25 | (unsigned int)... | 1.0 | +| test.c:470:29:470:44 | (...) | 1.0 | +| test.c:470:29:470:49 | ... * ... | 1.0 | +| test.c:470:30:470:30 | 2 | 1.0 | +| test.c:470:30:470:30 | (unsigned int)... | 1.0 | +| test.c:470:30:470:35 | ... * ... | 1.0 | +| test.c:470:30:470:39 | ... + ... | 1.0 | +| test.c:470:30:470:43 | ... + ... | 1.0 | +| test.c:470:34:470:35 | ip | 1.0 | +| test.c:470:39:470:39 | 1 | 1.0 | +| test.c:470:39:470:39 | (unsigned int)... | 1.0 | +| test.c:470:43:470:43 | 1 | 1.0 | +| test.c:470:43:470:43 | (unsigned int)... | 1.0 | +| test.c:470:48:470:49 | 17 | 1.0 | +| test.c:470:48:470:49 | (unsigned int)... | 1.0 | +| test.c:471:5:553:26 | (...) | 9.29462083211502E84 | +| test.c:471:6:471:6 | 2 | 1.0 | +| test.c:471:6:471:6 | (unsigned int)... | 1.0 | +| test.c:471:6:471:23 | ... * ... | 2.0 | +| test.c:471:6:490:42 | ... + ... | 4.524508125E10 | +| test.c:471:6:510:24 | ... > ... | 1.0 | +| test.c:471:6:553:25 | ... ? ... : ... | 9.29462083211502E84 | +| test.c:471:10:471:23 | (...) | 2.0 | +| test.c:471:11:471:12 | ip | 2.0 | +| test.c:471:11:471:17 | ... * ... | 2.0 | +| test.c:471:11:471:22 | ... + ... | 2.0 | +| test.c:471:16:471:17 | 14 | 1.0 | +| test.c:471:16:471:17 | (unsigned int)... | 1.0 | +| test.c:471:21:471:22 | 32 | 1.0 | | test.c:471:21:471:22 | (unsigned int)... | 1.0 | -| test.c:471:26:471:27 | 32 | 1.0 | -| test.c:471:26:471:27 | (unsigned int)... | 1.0 | -| test.c:472:11:472:11 | 2 | 1.0 | -| test.c:472:11:472:11 | (unsigned int)... | 1.0 | -| test.c:472:11:472:28 | ... * ... | 15.0 | -| test.c:472:15:472:28 | (...) | 15.0 | -| test.c:472:16:472:17 | ip | 15.0 | -| test.c:472:16:472:22 | ... * ... | 15.0 | -| test.c:472:16:472:27 | ... + ... | 15.0 | -| test.c:472:21:472:22 | 14 | 1.0 | -| test.c:472:21:472:22 | (unsigned int)... | 1.0 | -| test.c:472:26:472:27 | 64 | 1.0 | -| test.c:472:26:472:27 | (unsigned int)... | 1.0 | -| test.c:473:11:478:24 | (...) | 29791.0 | -| test.c:473:12:473:23 | (...) | 15.0 | -| test.c:473:12:473:28 | ... * ... | 15.0 | -| test.c:473:12:474:61 | ... > ... | 1.0 | -| test.c:473:12:478:23 | ... ? ... : ... | 29791.0 | -| test.c:473:13:473:13 | 2 | 1.0 | -| test.c:473:13:473:13 | (unsigned int)... | 1.0 | -| test.c:473:13:473:18 | ... * ... | 15.0 | -| test.c:473:13:473:22 | ... + ... | 15.0 | -| test.c:473:17:473:18 | ip | 15.0 | -| test.c:473:22:473:22 | 1 | 1.0 | -| test.c:473:22:473:22 | (unsigned int)... | 1.0 | -| test.c:473:27:473:28 | 14 | 1.0 | -| test.c:473:27:473:28 | (unsigned int)... | 1.0 | -| test.c:474:11:474:61 | (...) | 225.0 | -| test.c:474:12:474:13 | 14 | 1.0 | -| test.c:474:12:474:13 | (unsigned int)... | 1.0 | -| test.c:474:12:474:24 | ... * ... | 15.0 | -| test.c:474:12:474:34 | ... > ... | 1.0 | -| test.c:474:12:474:60 | ... ? ... : ... | 225.0 | -| test.c:474:17:474:24 | (...) | 15.0 | -| test.c:474:18:474:18 | 2 | 1.0 | -| test.c:474:18:474:18 | (unsigned int)... | 1.0 | -| test.c:474:18:474:23 | ... * ... | 15.0 | -| test.c:474:22:474:23 | ip | 15.0 | -| test.c:474:28:474:29 | 17 | 1.0 | -| test.c:474:28:474:29 | (unsigned int)... | 1.0 | -| test.c:474:28:474:34 | ... * ... | 15.0 | -| test.c:474:33:474:34 | ip | 15.0 | -| test.c:474:38:474:39 | 17 | 1.0 | -| test.c:474:38:474:39 | (unsigned int)... | 1.0 | -| test.c:474:38:474:50 | ... * ... | 15.0 | -| test.c:474:43:474:50 | (...) | 15.0 | -| test.c:474:44:474:44 | 2 | 1.0 | -| test.c:474:44:474:44 | (unsigned int)... | 1.0 | -| test.c:474:44:474:49 | ... * ... | 15.0 | -| test.c:474:48:474:49 | ip | 15.0 | -| test.c:474:54:474:55 | 17 | 1.0 | -| test.c:474:54:474:55 | (unsigned int)... | 1.0 | -| test.c:474:54:474:60 | ... * ... | 15.0 | -| test.c:474:59:474:60 | ip | 15.0 | -| test.c:475:15:475:26 | (...) | 31.0 | -| test.c:475:15:475:31 | ... * ... | 31.0 | -| test.c:475:16:475:16 | 2 | 1.0 | -| test.c:475:16:475:16 | (unsigned int)... | 1.0 | -| test.c:475:16:475:21 | ... * ... | 31.0 | -| test.c:475:16:475:25 | ... + ... | 31.0 | -| test.c:475:20:475:21 | ip | 31.0 | -| test.c:475:25:475:25 | 1 | 1.0 | -| test.c:475:25:475:25 | (unsigned int)... | 1.0 | -| test.c:475:30:475:31 | 14 | 1.0 | -| test.c:475:30:475:31 | (unsigned int)... | 1.0 | -| test.c:476:15:476:16 | 14 | 1.0 | -| test.c:476:15:476:16 | (unsigned int)... | 1.0 | -| test.c:476:15:476:27 | ... * ... | 31.0 | -| test.c:476:15:476:37 | ... > ... | 1.0 | -| test.c:476:15:478:23 | ... ? ... : ... | 961.0 | -| test.c:476:20:476:27 | (...) | 31.0 | -| test.c:476:21:476:21 | 2 | 1.0 | -| test.c:476:21:476:21 | (unsigned int)... | 1.0 | -| test.c:476:21:476:26 | ... * ... | 31.0 | -| test.c:476:25:476:26 | ip | 31.0 | -| test.c:476:31:476:32 | 17 | 1.0 | -| test.c:476:31:476:32 | (unsigned int)... | 1.0 | -| test.c:476:31:476:37 | ... * ... | 31.0 | -| test.c:476:36:476:37 | ip | 31.0 | -| test.c:477:17:477:18 | 14 | 1.0 | -| test.c:477:17:477:18 | (unsigned int)... | 1.0 | -| test.c:477:17:477:29 | ... * ... | 31.0 | -| test.c:477:22:477:29 | (...) | 31.0 | -| test.c:477:23:477:23 | 2 | 1.0 | -| test.c:477:23:477:23 | (unsigned int)... | 1.0 | -| test.c:477:23:477:28 | ... * ... | 31.0 | -| test.c:477:27:477:28 | ip | 31.0 | -| test.c:478:17:478:18 | 14 | 1.0 | -| test.c:478:17:478:18 | (unsigned int)... | 1.0 | -| test.c:478:17:478:23 | ... * ... | 31.0 | -| test.c:478:22:478:23 | ip | 31.0 | -| test.c:479:11:479:11 | 2 | 1.0 | -| test.c:479:11:479:11 | (unsigned int)... | 1.0 | -| test.c:479:11:479:16 | ... * ... | 15.0 | -| test.c:479:11:479:21 | ... * ... | 15.0 | -| test.c:479:11:479:41 | ... + ... | 225.0 | -| test.c:479:15:479:16 | ip | 15.0 | -| test.c:479:20:479:21 | 14 | 1.0 | -| test.c:479:20:479:21 | (unsigned int)... | 1.0 | -| test.c:479:25:479:36 | (...) | 15.0 | -| test.c:479:25:479:41 | ... * ... | 15.0 | -| test.c:479:26:479:26 | 2 | 1.0 | -| test.c:479:26:479:26 | (unsigned int)... | 1.0 | -| test.c:479:26:479:31 | ... * ... | 15.0 | -| test.c:479:26:479:35 | ... + ... | 15.0 | -| test.c:479:30:479:31 | ip | 15.0 | -| test.c:479:35:479:35 | 1 | 1.0 | -| test.c:479:35:479:35 | (unsigned int)... | 1.0 | -| test.c:479:40:479:41 | 17 | 1.0 | -| test.c:479:40:479:41 | (unsigned int)... | 1.0 | -| test.c:480:5:499:24 | (...) | 6.6142118960740864E25 | -| test.c:480:6:480:6 | 4 | 1.0 | -| test.c:480:6:480:6 | (unsigned int)... | 1.0 | -| test.c:480:6:480:23 | ... * ... | 108.0 | -| test.c:480:6:481:24 | ... + ... | 11664.0 | -| test.c:480:6:482:24 | ... + ... | 1259712.0 | -| test.c:480:6:487:20 | ... + ... | 1.2872131505856E13 | -| test.c:480:6:488:55 | ... > ... | 1.0 | -| test.c:480:6:499:23 | ... ? ... : ... | 6.6142118960740864E25 | -| test.c:480:10:480:23 | (...) | 108.0 | -| test.c:480:11:480:12 | ip | 108.0 | -| test.c:480:11:480:17 | ... * ... | 108.0 | -| test.c:480:11:480:22 | ... + ... | 108.0 | +| test.c:472:7:490:42 | (...) | 2.2622540625E10 | +| test.c:472:8:472:8 | 4 | 1.0 | +| test.c:472:8:472:8 | (unsigned int)... | 1.0 | +| test.c:472:8:472:25 | ... * ... | 2.0 | +| test.c:472:8:473:26 | ... + ... | 4.0 | +| test.c:472:8:474:26 | ... + ... | 8.0 | +| test.c:472:8:479:22 | ... + ... | 1000.0 | +| test.c:472:8:480:37 | ... > ... | 1.0 | +| test.c:472:8:490:41 | ... ? ... : ... | 2.2622540625E10 | +| test.c:472:12:472:25 | (...) | 2.0 | +| test.c:472:13:472:14 | ip | 2.0 | +| test.c:472:13:472:19 | ... * ... | 2.0 | +| test.c:472:13:472:24 | ... + ... | 2.0 | +| test.c:472:18:472:19 | 14 | 1.0 | +| test.c:472:18:472:19 | (unsigned int)... | 1.0 | +| test.c:472:23:472:24 | 32 | 1.0 | +| test.c:472:23:472:24 | (unsigned int)... | 1.0 | +| test.c:473:9:473:26 | (...) | 2.0 | +| test.c:473:10:473:10 | 2 | 1.0 | +| test.c:473:10:473:10 | (unsigned int)... | 1.0 | +| test.c:473:10:473:15 | ... * ... | 2.0 | +| test.c:473:10:473:20 | ... * ... | 2.0 | +| test.c:473:10:473:25 | ... + ... | 2.0 | +| test.c:473:14:473:15 | ip | 2.0 | +| test.c:473:19:473:20 | 14 | 1.0 | +| test.c:473:19:473:20 | (unsigned int)... | 1.0 | +| test.c:473:24:473:25 | 32 | 1.0 | +| test.c:473:24:473:25 | (unsigned int)... | 1.0 | +| test.c:474:9:474:9 | 2 | 1.0 | +| test.c:474:9:474:9 | (unsigned int)... | 1.0 | +| test.c:474:9:474:26 | ... * ... | 2.0 | +| test.c:474:13:474:26 | (...) | 2.0 | +| test.c:474:14:474:15 | ip | 2.0 | +| test.c:474:14:474:20 | ... * ... | 2.0 | +| test.c:474:14:474:25 | ... + ... | 2.0 | +| test.c:474:19:474:20 | 14 | 1.0 | +| test.c:474:19:474:20 | (unsigned int)... | 1.0 | +| test.c:474:24:474:25 | 64 | 1.0 | +| test.c:474:24:474:25 | (unsigned int)... | 1.0 | +| test.c:475:9:479:22 | (...) | 125.0 | +| test.c:475:10:475:21 | (...) | 2.0 | +| test.c:475:10:475:26 | ... * ... | 2.0 | +| test.c:475:10:475:80 | ... > ... | 1.0 | +| test.c:475:10:479:21 | ... ? ... : ... | 125.0 | +| test.c:475:11:475:11 | 2 | 1.0 | +| test.c:475:11:475:11 | (unsigned int)... | 1.0 | +| test.c:475:11:475:16 | ... * ... | 2.0 | +| test.c:475:11:475:20 | ... + ... | 2.0 | +| test.c:475:15:475:16 | ip | 2.0 | +| test.c:475:20:475:20 | 1 | 1.0 | +| test.c:475:20:475:20 | (unsigned int)... | 1.0 | +| test.c:475:25:475:26 | 14 | 1.0 | +| test.c:475:25:475:26 | (unsigned int)... | 1.0 | +| test.c:475:30:475:80 | (...) | 4.0 | +| test.c:475:31:475:32 | 17 | 1.0 | +| test.c:475:31:475:32 | (unsigned int)... | 1.0 | +| test.c:475:31:475:43 | ... * ... | 2.0 | +| test.c:475:31:475:53 | ... > ... | 1.0 | +| test.c:475:31:475:79 | ... ? ... : ... | 4.0 | +| test.c:475:36:475:43 | (...) | 2.0 | +| test.c:475:37:475:37 | 2 | 1.0 | +| test.c:475:37:475:37 | (unsigned int)... | 1.0 | +| test.c:475:37:475:42 | ... * ... | 2.0 | +| test.c:475:41:475:42 | ip | 2.0 | +| test.c:475:47:475:48 | 17 | 1.0 | +| test.c:475:47:475:48 | (unsigned int)... | 1.0 | +| test.c:475:47:475:53 | ... * ... | 2.0 | +| test.c:475:52:475:53 | ip | 2.0 | +| test.c:475:57:475:58 | 17 | 1.0 | +| test.c:475:57:475:58 | (unsigned int)... | 1.0 | +| test.c:475:57:475:69 | ... * ... | 2.0 | +| test.c:475:62:475:69 | (...) | 2.0 | +| test.c:475:63:475:63 | 2 | 1.0 | +| test.c:475:63:475:63 | (unsigned int)... | 1.0 | +| test.c:475:63:475:68 | ... * ... | 2.0 | +| test.c:475:67:475:68 | ip | 2.0 | +| test.c:475:73:475:74 | 17 | 1.0 | +| test.c:475:73:475:74 | (unsigned int)... | 1.0 | +| test.c:475:73:475:79 | ... * ... | 2.0 | +| test.c:475:78:475:79 | ip | 2.0 | +| test.c:476:13:476:24 | (...) | 5.0 | +| test.c:476:13:476:29 | ... * ... | 5.0 | +| test.c:476:14:476:14 | 2 | 1.0 | +| test.c:476:14:476:14 | (unsigned int)... | 1.0 | +| test.c:476:14:476:19 | ... * ... | 5.0 | +| test.c:476:14:476:23 | ... + ... | 5.0 | +| test.c:476:18:476:19 | ip | 5.0 | +| test.c:476:23:476:23 | 1 | 1.0 | +| test.c:476:23:476:23 | (unsigned int)... | 1.0 | +| test.c:476:28:476:29 | 14 | 1.0 | +| test.c:476:28:476:29 | (unsigned int)... | 1.0 | +| test.c:477:13:477:14 | 14 | 1.0 | +| test.c:477:13:477:14 | (unsigned int)... | 1.0 | +| test.c:477:13:477:25 | ... * ... | 5.0 | +| test.c:477:13:477:35 | ... > ... | 1.0 | +| test.c:477:13:479:21 | ... ? ... : ... | 25.0 | +| test.c:477:18:477:25 | (...) | 5.0 | +| test.c:477:19:477:19 | 2 | 1.0 | +| test.c:477:19:477:19 | (unsigned int)... | 1.0 | +| test.c:477:19:477:24 | ... * ... | 5.0 | +| test.c:477:23:477:24 | ip | 5.0 | +| test.c:477:29:477:30 | 17 | 1.0 | +| test.c:477:29:477:30 | (unsigned int)... | 1.0 | +| test.c:477:29:477:35 | ... * ... | 5.0 | +| test.c:477:34:477:35 | ip | 5.0 | +| test.c:478:15:478:16 | 14 | 1.0 | +| test.c:478:15:478:16 | (unsigned int)... | 1.0 | +| test.c:478:15:478:27 | ... * ... | 5.0 | +| test.c:478:20:478:27 | (...) | 5.0 | +| test.c:478:21:478:21 | 2 | 1.0 | +| test.c:478:21:478:21 | (unsigned int)... | 1.0 | +| test.c:478:21:478:26 | ... * ... | 5.0 | +| test.c:478:25:478:26 | ip | 5.0 | +| test.c:479:15:479:16 | 14 | 1.0 | +| test.c:479:15:479:16 | (unsigned int)... | 1.0 | +| test.c:479:15:479:21 | ... * ... | 5.0 | +| test.c:479:20:479:21 | ip | 5.0 | +| test.c:480:7:480:7 | 2 | 1.0 | +| test.c:480:7:480:7 | (unsigned int)... | 1.0 | +| test.c:480:7:480:12 | ... * ... | 15.0 | +| test.c:480:7:480:17 | ... * ... | 15.0 | +| test.c:480:7:480:37 | ... + ... | 225.0 | +| test.c:480:11:480:12 | ip | 15.0 | | test.c:480:16:480:17 | 14 | 1.0 | | test.c:480:16:480:17 | (unsigned int)... | 1.0 | -| test.c:480:21:480:22 | 32 | 1.0 | -| test.c:480:21:480:22 | (unsigned int)... | 1.0 | -| test.c:481:7:481:24 | (...) | 108.0 | -| test.c:481:8:481:8 | 2 | 1.0 | -| test.c:481:8:481:8 | (unsigned int)... | 1.0 | -| test.c:481:8:481:13 | ... * ... | 108.0 | -| test.c:481:8:481:18 | ... * ... | 108.0 | -| test.c:481:8:481:23 | ... + ... | 108.0 | -| test.c:481:12:481:13 | ip | 108.0 | -| test.c:481:17:481:18 | 14 | 1.0 | -| test.c:481:17:481:18 | (unsigned int)... | 1.0 | -| test.c:481:22:481:23 | 32 | 1.0 | -| test.c:481:22:481:23 | (unsigned int)... | 1.0 | -| test.c:482:7:482:7 | 2 | 1.0 | -| test.c:482:7:482:7 | (unsigned int)... | 1.0 | -| test.c:482:7:482:24 | ... * ... | 108.0 | -| test.c:482:11:482:24 | (...) | 108.0 | -| test.c:482:12:482:13 | ip | 108.0 | -| test.c:482:12:482:18 | ... * ... | 108.0 | -| test.c:482:12:482:23 | ... + ... | 108.0 | -| test.c:482:17:482:18 | 14 | 1.0 | -| test.c:482:17:482:18 | (unsigned int)... | 1.0 | -| test.c:482:22:482:23 | 64 | 1.0 | -| test.c:482:22:482:23 | (unsigned int)... | 1.0 | -| test.c:483:7:487:20 | (...) | 1.0218313E7 | -| test.c:483:8:483:19 | (...) | 108.0 | -| test.c:483:8:483:24 | ... * ... | 108.0 | -| test.c:483:8:483:78 | ... > ... | 1.0 | -| test.c:483:8:487:19 | ... ? ... : ... | 1.0218313E7 | -| test.c:483:9:483:9 | 2 | 1.0 | -| test.c:483:9:483:9 | (unsigned int)... | 1.0 | -| test.c:483:9:483:14 | ... * ... | 108.0 | -| test.c:483:9:483:18 | ... + ... | 108.0 | -| test.c:483:13:483:14 | ip | 108.0 | -| test.c:483:18:483:18 | 1 | 1.0 | -| test.c:483:18:483:18 | (unsigned int)... | 1.0 | -| test.c:483:23:483:24 | 14 | 1.0 | -| test.c:483:23:483:24 | (unsigned int)... | 1.0 | -| test.c:483:28:483:78 | (...) | 11664.0 | -| test.c:483:29:483:30 | 17 | 1.0 | -| test.c:483:29:483:30 | (unsigned int)... | 1.0 | -| test.c:483:29:483:41 | ... * ... | 108.0 | -| test.c:483:29:483:51 | ... > ... | 1.0 | -| test.c:483:29:483:77 | ... ? ... : ... | 11664.0 | -| test.c:483:34:483:41 | (...) | 108.0 | -| test.c:483:35:483:35 | 2 | 1.0 | -| test.c:483:35:483:35 | (unsigned int)... | 1.0 | -| test.c:483:35:483:40 | ... * ... | 108.0 | -| test.c:483:39:483:40 | ip | 108.0 | -| test.c:483:45:483:46 | 17 | 1.0 | -| test.c:483:45:483:46 | (unsigned int)... | 1.0 | -| test.c:483:45:483:51 | ... * ... | 108.0 | -| test.c:483:50:483:51 | ip | 108.0 | -| test.c:483:55:483:56 | 17 | 1.0 | -| test.c:483:55:483:56 | (unsigned int)... | 1.0 | -| test.c:483:55:483:67 | ... * ... | 108.0 | -| test.c:483:60:483:67 | (...) | 108.0 | -| test.c:483:61:483:61 | 2 | 1.0 | -| test.c:483:61:483:61 | (unsigned int)... | 1.0 | -| test.c:483:61:483:66 | ... * ... | 108.0 | -| test.c:483:65:483:66 | ip | 108.0 | -| test.c:483:71:483:72 | 17 | 1.0 | -| test.c:483:71:483:72 | (unsigned int)... | 1.0 | -| test.c:483:71:483:77 | ... * ... | 108.0 | -| test.c:483:76:483:77 | ip | 108.0 | -| test.c:484:11:484:22 | (...) | 217.0 | -| test.c:484:11:484:27 | ... * ... | 217.0 | -| test.c:484:12:484:12 | 2 | 1.0 | -| test.c:484:12:484:12 | (unsigned int)... | 1.0 | -| test.c:484:12:484:17 | ... * ... | 217.0 | -| test.c:484:12:484:21 | ... + ... | 217.0 | -| test.c:484:16:484:17 | ip | 217.0 | -| test.c:484:21:484:21 | 1 | 1.0 | -| test.c:484:21:484:21 | (unsigned int)... | 1.0 | -| test.c:484:26:484:27 | 14 | 1.0 | -| test.c:484:26:484:27 | (unsigned int)... | 1.0 | -| test.c:485:11:485:12 | 14 | 1.0 | -| test.c:485:11:485:12 | (unsigned int)... | 1.0 | -| test.c:485:11:485:23 | ... * ... | 217.0 | -| test.c:485:11:485:33 | ... > ... | 1.0 | -| test.c:485:11:487:19 | ... ? ... : ... | 47089.0 | -| test.c:485:16:485:23 | (...) | 217.0 | -| test.c:485:17:485:17 | 2 | 1.0 | -| test.c:485:17:485:17 | (unsigned int)... | 1.0 | -| test.c:485:17:485:22 | ... * ... | 217.0 | -| test.c:485:21:485:22 | ip | 217.0 | -| test.c:485:27:485:28 | 17 | 1.0 | -| test.c:485:27:485:28 | (unsigned int)... | 1.0 | -| test.c:485:27:485:33 | ... * ... | 217.0 | -| test.c:485:32:485:33 | ip | 217.0 | -| test.c:486:13:486:14 | 14 | 1.0 | -| test.c:486:13:486:14 | (unsigned int)... | 1.0 | -| test.c:486:13:486:25 | ... * ... | 217.0 | -| test.c:486:18:486:25 | (...) | 217.0 | -| test.c:486:19:486:19 | 2 | 1.0 | -| test.c:486:19:486:19 | (unsigned int)... | 1.0 | -| test.c:486:19:486:24 | ... * ... | 217.0 | -| test.c:486:23:486:24 | ip | 217.0 | -| test.c:487:13:487:14 | 14 | 1.0 | -| test.c:487:13:487:14 | (unsigned int)... | 1.0 | -| test.c:487:13:487:19 | ... * ... | 217.0 | -| test.c:487:18:487:19 | ip | 217.0 | -| test.c:488:5:488:55 | (...) | 423801.0 | -| test.c:488:6:488:7 | 14 | 1.0 | -| test.c:488:6:488:7 | (unsigned int)... | 1.0 | -| test.c:488:6:488:12 | ... * ... | 651.0 | -| test.c:488:6:488:28 | ... > ... | 1.0 | -| test.c:488:6:488:54 | ... ? ... : ... | 423801.0 | -| test.c:488:11:488:12 | ip | 651.0 | -| test.c:488:16:488:23 | (...) | 651.0 | -| test.c:488:16:488:28 | ... * ... | 651.0 | -| test.c:488:17:488:18 | ip | 651.0 | -| test.c:488:17:488:22 | ... + ... | 651.0 | -| test.c:488:22:488:22 | 1 | 1.0 | -| test.c:488:22:488:22 | (unsigned int)... | 1.0 | -| test.c:488:27:488:28 | 17 | 1.0 | -| test.c:488:27:488:28 | (unsigned int)... | 1.0 | -| test.c:488:32:488:33 | 17 | 1.0 | -| test.c:488:32:488:33 | (unsigned int)... | 1.0 | -| test.c:488:32:488:38 | ... * ... | 651.0 | -| test.c:488:37:488:38 | ip | 651.0 | -| test.c:488:42:488:49 | (...) | 651.0 | -| test.c:488:42:488:54 | ... * ... | 651.0 | -| test.c:488:43:488:44 | ip | 651.0 | -| test.c:488:43:488:48 | ... + ... | 651.0 | -| test.c:488:48:488:48 | 1 | 1.0 | -| test.c:488:48:488:48 | (unsigned int)... | 1.0 | -| test.c:488:53:488:54 | 17 | 1.0 | -| test.c:488:53:488:54 | (unsigned int)... | 1.0 | -| test.c:489:9:489:9 | 4 | 1.0 | -| test.c:489:9:489:9 | (unsigned int)... | 1.0 | -| test.c:489:9:489:26 | ... * ... | 1302.0 | -| test.c:489:9:490:26 | ... + ... | 1695204.0 | -| test.c:489:9:491:26 | ... + ... | 2.207155608E9 | -| test.c:489:9:496:22 | ... + ... | 3.9017203216097214E19 | -| test.c:489:13:489:26 | (...) | 1302.0 | -| test.c:489:14:489:15 | ip | 1302.0 | -| test.c:489:14:489:20 | ... * ... | 1302.0 | -| test.c:489:14:489:25 | ... + ... | 1302.0 | -| test.c:489:19:489:20 | 14 | 1.0 | -| test.c:489:19:489:20 | (unsigned int)... | 1.0 | -| test.c:489:24:489:25 | 32 | 1.0 | -| test.c:489:24:489:25 | (unsigned int)... | 1.0 | -| test.c:490:9:490:26 | (...) | 1302.0 | -| test.c:490:10:490:10 | 2 | 1.0 | -| test.c:490:10:490:10 | (unsigned int)... | 1.0 | -| test.c:490:10:490:15 | ... * ... | 1302.0 | -| test.c:490:10:490:20 | ... * ... | 1302.0 | -| test.c:490:10:490:25 | ... + ... | 1302.0 | -| test.c:490:14:490:15 | ip | 1302.0 | -| test.c:490:19:490:20 | 14 | 1.0 | -| test.c:490:19:490:20 | (unsigned int)... | 1.0 | -| test.c:490:24:490:25 | 32 | 1.0 | -| test.c:490:24:490:25 | (unsigned int)... | 1.0 | -| test.c:491:9:491:9 | 2 | 1.0 | -| test.c:491:9:491:9 | (unsigned int)... | 1.0 | -| test.c:491:9:491:26 | ... * ... | 1302.0 | -| test.c:491:13:491:26 | (...) | 1302.0 | -| test.c:491:14:491:15 | ip | 1302.0 | -| test.c:491:14:491:20 | ... * ... | 1302.0 | -| test.c:491:14:491:25 | ... + ... | 1302.0 | -| test.c:491:19:491:20 | 14 | 1.0 | -| test.c:491:19:491:20 | (unsigned int)... | 1.0 | -| test.c:491:24:491:25 | 64 | 1.0 | -| test.c:491:24:491:25 | (unsigned int)... | 1.0 | -| test.c:492:9:496:22 | (...) | 1.7677595125E10 | -| test.c:492:10:492:21 | (...) | 1302.0 | -| test.c:492:10:492:26 | ... * ... | 1302.0 | -| test.c:492:10:492:80 | ... > ... | 1.0 | -| test.c:492:10:496:21 | ... ? ... : ... | 1.7677595125E10 | -| test.c:492:11:492:11 | 2 | 1.0 | -| test.c:492:11:492:11 | (unsigned int)... | 1.0 | -| test.c:492:11:492:16 | ... * ... | 1302.0 | -| test.c:492:11:492:20 | ... + ... | 1302.0 | -| test.c:492:15:492:16 | ip | 1302.0 | -| test.c:492:20:492:20 | 1 | 1.0 | -| test.c:492:20:492:20 | (unsigned int)... | 1.0 | -| test.c:492:25:492:26 | 14 | 1.0 | -| test.c:492:25:492:26 | (unsigned int)... | 1.0 | -| test.c:492:30:492:80 | (...) | 1695204.0 | -| test.c:492:31:492:32 | 17 | 1.0 | -| test.c:492:31:492:32 | (unsigned int)... | 1.0 | -| test.c:492:31:492:43 | ... * ... | 1302.0 | -| test.c:492:31:492:53 | ... > ... | 1.0 | -| test.c:492:31:492:79 | ... ? ... : ... | 1695204.0 | -| test.c:492:36:492:43 | (...) | 1302.0 | -| test.c:492:37:492:37 | 2 | 1.0 | -| test.c:492:37:492:37 | (unsigned int)... | 1.0 | -| test.c:492:37:492:42 | ... * ... | 1302.0 | -| test.c:492:41:492:42 | ip | 1302.0 | -| test.c:492:47:492:48 | 17 | 1.0 | -| test.c:492:47:492:48 | (unsigned int)... | 1.0 | -| test.c:492:47:492:53 | ... * ... | 1302.0 | -| test.c:492:52:492:53 | ip | 1302.0 | -| test.c:492:57:492:58 | 17 | 1.0 | -| test.c:492:57:492:58 | (unsigned int)... | 1.0 | -| test.c:492:57:492:69 | ... * ... | 1302.0 | -| test.c:492:62:492:69 | (...) | 1302.0 | -| test.c:492:63:492:63 | 2 | 1.0 | -| test.c:492:63:492:63 | (unsigned int)... | 1.0 | -| test.c:492:63:492:68 | ... * ... | 1302.0 | -| test.c:492:67:492:68 | ip | 1302.0 | -| test.c:492:73:492:74 | 17 | 1.0 | -| test.c:492:73:492:74 | (unsigned int)... | 1.0 | -| test.c:492:73:492:79 | ... * ... | 1302.0 | -| test.c:492:78:492:79 | ip | 1302.0 | -| test.c:493:13:493:24 | (...) | 2605.0 | -| test.c:493:13:493:29 | ... * ... | 2605.0 | -| test.c:493:14:493:14 | 2 | 1.0 | -| test.c:493:14:493:14 | (unsigned int)... | 1.0 | -| test.c:493:14:493:19 | ... * ... | 2605.0 | -| test.c:493:14:493:23 | ... + ... | 2605.0 | -| test.c:493:18:493:19 | ip | 2605.0 | -| test.c:493:23:493:23 | 1 | 1.0 | -| test.c:493:23:493:23 | (unsigned int)... | 1.0 | -| test.c:493:28:493:29 | 14 | 1.0 | -| test.c:493:28:493:29 | (unsigned int)... | 1.0 | -| test.c:494:13:494:14 | 14 | 1.0 | -| test.c:494:13:494:14 | (unsigned int)... | 1.0 | -| test.c:494:13:494:25 | ... * ... | 2605.0 | -| test.c:494:13:494:35 | ... > ... | 1.0 | -| test.c:494:13:496:21 | ... ? ... : ... | 6786025.0 | -| test.c:494:18:494:25 | (...) | 2605.0 | -| test.c:494:19:494:19 | 2 | 1.0 | -| test.c:494:19:494:19 | (unsigned int)... | 1.0 | -| test.c:494:19:494:24 | ... * ... | 2605.0 | -| test.c:494:23:494:24 | ip | 2605.0 | +| test.c:480:21:480:32 | (...) | 15.0 | +| test.c:480:21:480:37 | ... * ... | 15.0 | +| test.c:480:22:480:22 | 2 | 1.0 | +| test.c:480:22:480:22 | (unsigned int)... | 1.0 | +| test.c:480:22:480:27 | ... * ... | 15.0 | +| test.c:480:22:480:31 | ... + ... | 15.0 | +| test.c:480:26:480:27 | ip | 15.0 | +| test.c:480:31:480:31 | 1 | 1.0 | +| test.c:480:31:480:31 | (unsigned int)... | 1.0 | +| test.c:480:36:480:37 | 17 | 1.0 | +| test.c:480:36:480:37 | (unsigned int)... | 1.0 | +| test.c:481:11:481:11 | 4 | 1.0 | +| test.c:481:11:481:11 | (unsigned int)... | 1.0 | +| test.c:481:11:481:28 | ... * ... | 15.0 | +| test.c:481:11:482:28 | ... + ... | 225.0 | +| test.c:481:11:483:28 | ... + ... | 3375.0 | +| test.c:481:11:489:24 | ... + ... | 1.00544625E8 | +| test.c:481:15:481:28 | (...) | 15.0 | +| test.c:481:16:481:17 | ip | 15.0 | +| test.c:481:16:481:22 | ... * ... | 15.0 | +| test.c:481:16:481:27 | ... + ... | 15.0 | +| test.c:481:21:481:22 | 14 | 1.0 | +| test.c:481:21:481:22 | (unsigned int)... | 1.0 | +| test.c:481:26:481:27 | 32 | 1.0 | +| test.c:481:26:481:27 | (unsigned int)... | 1.0 | +| test.c:482:11:482:28 | (...) | 15.0 | +| test.c:482:12:482:12 | 2 | 1.0 | +| test.c:482:12:482:12 | (unsigned int)... | 1.0 | +| test.c:482:12:482:17 | ... * ... | 15.0 | +| test.c:482:12:482:22 | ... * ... | 15.0 | +| test.c:482:12:482:27 | ... + ... | 15.0 | +| test.c:482:16:482:17 | ip | 15.0 | +| test.c:482:21:482:22 | 14 | 1.0 | +| test.c:482:21:482:22 | (unsigned int)... | 1.0 | +| test.c:482:26:482:27 | 32 | 1.0 | +| test.c:482:26:482:27 | (unsigned int)... | 1.0 | +| test.c:483:11:483:11 | 2 | 1.0 | +| test.c:483:11:483:11 | (unsigned int)... | 1.0 | +| test.c:483:11:483:28 | ... * ... | 15.0 | +| test.c:483:15:483:28 | (...) | 15.0 | +| test.c:483:16:483:17 | ip | 15.0 | +| test.c:483:16:483:22 | ... * ... | 15.0 | +| test.c:483:16:483:27 | ... + ... | 15.0 | +| test.c:483:21:483:22 | 14 | 1.0 | +| test.c:483:21:483:22 | (unsigned int)... | 1.0 | +| test.c:483:26:483:27 | 64 | 1.0 | +| test.c:483:26:483:27 | (unsigned int)... | 1.0 | +| test.c:484:11:489:24 | (...) | 29791.0 | +| test.c:484:12:484:23 | (...) | 15.0 | +| test.c:484:12:484:28 | ... * ... | 15.0 | +| test.c:484:12:485:61 | ... > ... | 1.0 | +| test.c:484:12:489:23 | ... ? ... : ... | 29791.0 | +| test.c:484:13:484:13 | 2 | 1.0 | +| test.c:484:13:484:13 | (unsigned int)... | 1.0 | +| test.c:484:13:484:18 | ... * ... | 15.0 | +| test.c:484:13:484:22 | ... + ... | 15.0 | +| test.c:484:17:484:18 | ip | 15.0 | +| test.c:484:22:484:22 | 1 | 1.0 | +| test.c:484:22:484:22 | (unsigned int)... | 1.0 | +| test.c:484:27:484:28 | 14 | 1.0 | +| test.c:484:27:484:28 | (unsigned int)... | 1.0 | +| test.c:485:11:485:61 | (...) | 225.0 | +| test.c:485:12:485:13 | 14 | 1.0 | +| test.c:485:12:485:13 | (unsigned int)... | 1.0 | +| test.c:485:12:485:24 | ... * ... | 15.0 | +| test.c:485:12:485:34 | ... > ... | 1.0 | +| test.c:485:12:485:60 | ... ? ... : ... | 225.0 | +| test.c:485:17:485:24 | (...) | 15.0 | +| test.c:485:18:485:18 | 2 | 1.0 | +| test.c:485:18:485:18 | (unsigned int)... | 1.0 | +| test.c:485:18:485:23 | ... * ... | 15.0 | +| test.c:485:22:485:23 | ip | 15.0 | +| test.c:485:28:485:29 | 17 | 1.0 | +| test.c:485:28:485:29 | (unsigned int)... | 1.0 | +| test.c:485:28:485:34 | ... * ... | 15.0 | +| test.c:485:33:485:34 | ip | 15.0 | +| test.c:485:38:485:39 | 17 | 1.0 | +| test.c:485:38:485:39 | (unsigned int)... | 1.0 | +| test.c:485:38:485:50 | ... * ... | 15.0 | +| test.c:485:43:485:50 | (...) | 15.0 | +| test.c:485:44:485:44 | 2 | 1.0 | +| test.c:485:44:485:44 | (unsigned int)... | 1.0 | +| test.c:485:44:485:49 | ... * ... | 15.0 | +| test.c:485:48:485:49 | ip | 15.0 | +| test.c:485:54:485:55 | 17 | 1.0 | +| test.c:485:54:485:55 | (unsigned int)... | 1.0 | +| test.c:485:54:485:60 | ... * ... | 15.0 | +| test.c:485:59:485:60 | ip | 15.0 | +| test.c:486:15:486:26 | (...) | 31.0 | +| test.c:486:15:486:31 | ... * ... | 31.0 | +| test.c:486:16:486:16 | 2 | 1.0 | +| test.c:486:16:486:16 | (unsigned int)... | 1.0 | +| test.c:486:16:486:21 | ... * ... | 31.0 | +| test.c:486:16:486:25 | ... + ... | 31.0 | +| test.c:486:20:486:21 | ip | 31.0 | +| test.c:486:25:486:25 | 1 | 1.0 | +| test.c:486:25:486:25 | (unsigned int)... | 1.0 | +| test.c:486:30:486:31 | 14 | 1.0 | +| test.c:486:30:486:31 | (unsigned int)... | 1.0 | +| test.c:487:15:487:16 | 14 | 1.0 | +| test.c:487:15:487:16 | (unsigned int)... | 1.0 | +| test.c:487:15:487:27 | ... * ... | 31.0 | +| test.c:487:15:487:37 | ... > ... | 1.0 | +| test.c:487:15:489:23 | ... ? ... : ... | 961.0 | +| test.c:487:20:487:27 | (...) | 31.0 | +| test.c:487:21:487:21 | 2 | 1.0 | +| test.c:487:21:487:21 | (unsigned int)... | 1.0 | +| test.c:487:21:487:26 | ... * ... | 31.0 | +| test.c:487:25:487:26 | ip | 31.0 | +| test.c:487:31:487:32 | 17 | 1.0 | +| test.c:487:31:487:32 | (unsigned int)... | 1.0 | +| test.c:487:31:487:37 | ... * ... | 31.0 | +| test.c:487:36:487:37 | ip | 31.0 | +| test.c:488:17:488:18 | 14 | 1.0 | +| test.c:488:17:488:18 | (unsigned int)... | 1.0 | +| test.c:488:17:488:29 | ... * ... | 31.0 | +| test.c:488:22:488:29 | (...) | 31.0 | +| test.c:488:23:488:23 | 2 | 1.0 | +| test.c:488:23:488:23 | (unsigned int)... | 1.0 | +| test.c:488:23:488:28 | ... * ... | 31.0 | +| test.c:488:27:488:28 | ip | 31.0 | +| test.c:489:17:489:18 | 14 | 1.0 | +| test.c:489:17:489:18 | (unsigned int)... | 1.0 | +| test.c:489:17:489:23 | ... * ... | 31.0 | +| test.c:489:22:489:23 | ip | 31.0 | +| test.c:490:11:490:11 | 2 | 1.0 | +| test.c:490:11:490:11 | (unsigned int)... | 1.0 | +| test.c:490:11:490:16 | ... * ... | 15.0 | +| test.c:490:11:490:21 | ... * ... | 15.0 | +| test.c:490:11:490:41 | ... + ... | 225.0 | +| test.c:490:15:490:16 | ip | 15.0 | +| test.c:490:20:490:21 | 14 | 1.0 | +| test.c:490:20:490:21 | (unsigned int)... | 1.0 | +| test.c:490:25:490:36 | (...) | 15.0 | +| test.c:490:25:490:41 | ... * ... | 15.0 | +| test.c:490:26:490:26 | 2 | 1.0 | +| test.c:490:26:490:26 | (unsigned int)... | 1.0 | +| test.c:490:26:490:31 | ... * ... | 15.0 | +| test.c:490:26:490:35 | ... + ... | 15.0 | +| test.c:490:30:490:31 | ip | 15.0 | +| test.c:490:35:490:35 | 1 | 1.0 | +| test.c:490:35:490:35 | (unsigned int)... | 1.0 | +| test.c:490:40:490:41 | 17 | 1.0 | +| test.c:490:40:490:41 | (unsigned int)... | 1.0 | +| test.c:491:5:510:24 | (...) | 6.6142118960740864E25 | +| test.c:491:6:491:6 | 4 | 1.0 | +| test.c:491:6:491:6 | (unsigned int)... | 1.0 | +| test.c:491:6:491:23 | ... * ... | 108.0 | +| test.c:491:6:492:24 | ... + ... | 11664.0 | +| test.c:491:6:493:24 | ... + ... | 1259712.0 | +| test.c:491:6:498:20 | ... + ... | 1.2872131505856E13 | +| test.c:491:6:499:55 | ... > ... | 1.0 | +| test.c:491:6:510:23 | ... ? ... : ... | 6.6142118960740864E25 | +| test.c:491:10:491:23 | (...) | 108.0 | +| test.c:491:11:491:12 | ip | 108.0 | +| test.c:491:11:491:17 | ... * ... | 108.0 | +| test.c:491:11:491:22 | ... + ... | 108.0 | +| test.c:491:16:491:17 | 14 | 1.0 | +| test.c:491:16:491:17 | (unsigned int)... | 1.0 | +| test.c:491:21:491:22 | 32 | 1.0 | +| test.c:491:21:491:22 | (unsigned int)... | 1.0 | +| test.c:492:7:492:24 | (...) | 108.0 | +| test.c:492:8:492:8 | 2 | 1.0 | +| test.c:492:8:492:8 | (unsigned int)... | 1.0 | +| test.c:492:8:492:13 | ... * ... | 108.0 | +| test.c:492:8:492:18 | ... * ... | 108.0 | +| test.c:492:8:492:23 | ... + ... | 108.0 | +| test.c:492:12:492:13 | ip | 108.0 | +| test.c:492:17:492:18 | 14 | 1.0 | +| test.c:492:17:492:18 | (unsigned int)... | 1.0 | +| test.c:492:22:492:23 | 32 | 1.0 | +| test.c:492:22:492:23 | (unsigned int)... | 1.0 | +| test.c:493:7:493:7 | 2 | 1.0 | +| test.c:493:7:493:7 | (unsigned int)... | 1.0 | +| test.c:493:7:493:24 | ... * ... | 108.0 | +| test.c:493:11:493:24 | (...) | 108.0 | +| test.c:493:12:493:13 | ip | 108.0 | +| test.c:493:12:493:18 | ... * ... | 108.0 | +| test.c:493:12:493:23 | ... + ... | 108.0 | +| test.c:493:17:493:18 | 14 | 1.0 | +| test.c:493:17:493:18 | (unsigned int)... | 1.0 | +| test.c:493:22:493:23 | 64 | 1.0 | +| test.c:493:22:493:23 | (unsigned int)... | 1.0 | +| test.c:494:7:498:20 | (...) | 1.0218313E7 | +| test.c:494:8:494:19 | (...) | 108.0 | +| test.c:494:8:494:24 | ... * ... | 108.0 | +| test.c:494:8:494:78 | ... > ... | 1.0 | +| test.c:494:8:498:19 | ... ? ... : ... | 1.0218313E7 | +| test.c:494:9:494:9 | 2 | 1.0 | +| test.c:494:9:494:9 | (unsigned int)... | 1.0 | +| test.c:494:9:494:14 | ... * ... | 108.0 | +| test.c:494:9:494:18 | ... + ... | 108.0 | +| test.c:494:13:494:14 | ip | 108.0 | +| test.c:494:18:494:18 | 1 | 1.0 | +| test.c:494:18:494:18 | (unsigned int)... | 1.0 | +| test.c:494:23:494:24 | 14 | 1.0 | +| test.c:494:23:494:24 | (unsigned int)... | 1.0 | +| test.c:494:28:494:78 | (...) | 11664.0 | | test.c:494:29:494:30 | 17 | 1.0 | | test.c:494:29:494:30 | (unsigned int)... | 1.0 | -| test.c:494:29:494:35 | ... * ... | 2605.0 | -| test.c:494:34:494:35 | ip | 2605.0 | -| test.c:495:15:495:16 | 14 | 1.0 | -| test.c:495:15:495:16 | (unsigned int)... | 1.0 | -| test.c:495:15:495:27 | ... * ... | 2605.0 | -| test.c:495:20:495:27 | (...) | 2605.0 | -| test.c:495:21:495:21 | 2 | 1.0 | +| test.c:494:29:494:41 | ... * ... | 108.0 | +| test.c:494:29:494:51 | ... > ... | 1.0 | +| test.c:494:29:494:77 | ... ? ... : ... | 11664.0 | +| test.c:494:34:494:41 | (...) | 108.0 | +| test.c:494:35:494:35 | 2 | 1.0 | +| test.c:494:35:494:35 | (unsigned int)... | 1.0 | +| test.c:494:35:494:40 | ... * ... | 108.0 | +| test.c:494:39:494:40 | ip | 108.0 | +| test.c:494:45:494:46 | 17 | 1.0 | +| test.c:494:45:494:46 | (unsigned int)... | 1.0 | +| test.c:494:45:494:51 | ... * ... | 108.0 | +| test.c:494:50:494:51 | ip | 108.0 | +| test.c:494:55:494:56 | 17 | 1.0 | +| test.c:494:55:494:56 | (unsigned int)... | 1.0 | +| test.c:494:55:494:67 | ... * ... | 108.0 | +| test.c:494:60:494:67 | (...) | 108.0 | +| test.c:494:61:494:61 | 2 | 1.0 | +| test.c:494:61:494:61 | (unsigned int)... | 1.0 | +| test.c:494:61:494:66 | ... * ... | 108.0 | +| test.c:494:65:494:66 | ip | 108.0 | +| test.c:494:71:494:72 | 17 | 1.0 | +| test.c:494:71:494:72 | (unsigned int)... | 1.0 | +| test.c:494:71:494:77 | ... * ... | 108.0 | +| test.c:494:76:494:77 | ip | 108.0 | +| test.c:495:11:495:22 | (...) | 217.0 | +| test.c:495:11:495:27 | ... * ... | 217.0 | +| test.c:495:12:495:12 | 2 | 1.0 | +| test.c:495:12:495:12 | (unsigned int)... | 1.0 | +| test.c:495:12:495:17 | ... * ... | 217.0 | +| test.c:495:12:495:21 | ... + ... | 217.0 | +| test.c:495:16:495:17 | ip | 217.0 | +| test.c:495:21:495:21 | 1 | 1.0 | | test.c:495:21:495:21 | (unsigned int)... | 1.0 | -| test.c:495:21:495:26 | ... * ... | 2605.0 | -| test.c:495:25:495:26 | ip | 2605.0 | -| test.c:496:15:496:16 | 14 | 1.0 | -| test.c:496:15:496:16 | (unsigned int)... | 1.0 | -| test.c:496:15:496:21 | ... * ... | 2605.0 | -| test.c:496:20:496:21 | ip | 2605.0 | -| test.c:497:9:497:10 | 14 | 1.0 | -| test.c:497:9:497:10 | (unsigned int)... | 1.0 | -| test.c:497:9:497:15 | ... * ... | 1302.0 | -| test.c:497:9:497:31 | ... > ... | 1.0 | -| test.c:497:9:499:23 | ... ? ... : ... | 1695204.0 | -| test.c:497:14:497:15 | ip | 1302.0 | -| test.c:497:19:497:26 | (...) | 1302.0 | -| test.c:497:19:497:31 | ... * ... | 1302.0 | -| test.c:497:20:497:21 | ip | 1302.0 | -| test.c:497:20:497:25 | ... + ... | 1302.0 | -| test.c:497:25:497:25 | 1 | 1.0 | -| test.c:497:25:497:25 | (unsigned int)... | 1.0 | -| test.c:497:30:497:31 | 17 | 1.0 | -| test.c:497:30:497:31 | (unsigned int)... | 1.0 | -| test.c:498:11:498:12 | 14 | 1.0 | -| test.c:498:11:498:12 | (unsigned int)... | 1.0 | -| test.c:498:11:498:17 | ... * ... | 1302.0 | -| test.c:498:16:498:17 | ip | 1302.0 | -| test.c:499:11:499:18 | (...) | 1302.0 | -| test.c:499:11:499:23 | ... * ... | 1302.0 | -| test.c:499:12:499:13 | ip | 1302.0 | -| test.c:499:12:499:17 | ... + ... | 1302.0 | -| test.c:499:17:499:17 | 1 | 1.0 | -| test.c:499:17:499:17 | (unsigned int)... | 1.0 | -| test.c:499:22:499:23 | 14 | 1.0 | -| test.c:499:22:499:23 | (unsigned int)... | 1.0 | -| test.c:500:9:500:9 | 2 | 1.0 | +| test.c:495:26:495:27 | 14 | 1.0 | +| test.c:495:26:495:27 | (unsigned int)... | 1.0 | +| test.c:496:11:496:12 | 14 | 1.0 | +| test.c:496:11:496:12 | (unsigned int)... | 1.0 | +| test.c:496:11:496:23 | ... * ... | 217.0 | +| test.c:496:11:496:33 | ... > ... | 1.0 | +| test.c:496:11:498:19 | ... ? ... : ... | 47089.0 | +| test.c:496:16:496:23 | (...) | 217.0 | +| test.c:496:17:496:17 | 2 | 1.0 | +| test.c:496:17:496:17 | (unsigned int)... | 1.0 | +| test.c:496:17:496:22 | ... * ... | 217.0 | +| test.c:496:21:496:22 | ip | 217.0 | +| test.c:496:27:496:28 | 17 | 1.0 | +| test.c:496:27:496:28 | (unsigned int)... | 1.0 | +| test.c:496:27:496:33 | ... * ... | 217.0 | +| test.c:496:32:496:33 | ip | 217.0 | +| test.c:497:13:497:14 | 14 | 1.0 | +| test.c:497:13:497:14 | (unsigned int)... | 1.0 | +| test.c:497:13:497:25 | ... * ... | 217.0 | +| test.c:497:18:497:25 | (...) | 217.0 | +| test.c:497:19:497:19 | 2 | 1.0 | +| test.c:497:19:497:19 | (unsigned int)... | 1.0 | +| test.c:497:19:497:24 | ... * ... | 217.0 | +| test.c:497:23:497:24 | ip | 217.0 | +| test.c:498:13:498:14 | 14 | 1.0 | +| test.c:498:13:498:14 | (unsigned int)... | 1.0 | +| test.c:498:13:498:19 | ... * ... | 217.0 | +| test.c:498:18:498:19 | ip | 217.0 | +| test.c:499:5:499:55 | (...) | 423801.0 | +| test.c:499:6:499:7 | 14 | 1.0 | +| test.c:499:6:499:7 | (unsigned int)... | 1.0 | +| test.c:499:6:499:12 | ... * ... | 651.0 | +| test.c:499:6:499:28 | ... > ... | 1.0 | +| test.c:499:6:499:54 | ... ? ... : ... | 423801.0 | +| test.c:499:11:499:12 | ip | 651.0 | +| test.c:499:16:499:23 | (...) | 651.0 | +| test.c:499:16:499:28 | ... * ... | 651.0 | +| test.c:499:17:499:18 | ip | 651.0 | +| test.c:499:17:499:22 | ... + ... | 651.0 | +| test.c:499:22:499:22 | 1 | 1.0 | +| test.c:499:22:499:22 | (unsigned int)... | 1.0 | +| test.c:499:27:499:28 | 17 | 1.0 | +| test.c:499:27:499:28 | (unsigned int)... | 1.0 | +| test.c:499:32:499:33 | 17 | 1.0 | +| test.c:499:32:499:33 | (unsigned int)... | 1.0 | +| test.c:499:32:499:38 | ... * ... | 651.0 | +| test.c:499:37:499:38 | ip | 651.0 | +| test.c:499:42:499:49 | (...) | 651.0 | +| test.c:499:42:499:54 | ... * ... | 651.0 | +| test.c:499:43:499:44 | ip | 651.0 | +| test.c:499:43:499:48 | ... + ... | 651.0 | +| test.c:499:48:499:48 | 1 | 1.0 | +| test.c:499:48:499:48 | (unsigned int)... | 1.0 | +| test.c:499:53:499:54 | 17 | 1.0 | +| test.c:499:53:499:54 | (unsigned int)... | 1.0 | +| test.c:500:9:500:9 | 4 | 1.0 | | test.c:500:9:500:9 | (unsigned int)... | 1.0 | -| test.c:500:9:500:26 | ... * ... | 10419.0 | -| test.c:500:9:520:44 | ... + ... | 1.9449636104972528E43 | -| test.c:500:13:500:26 | (...) | 10419.0 | -| test.c:500:14:500:15 | ip | 10419.0 | -| test.c:500:14:500:20 | ... * ... | 10419.0 | -| test.c:500:14:500:25 | ... + ... | 10419.0 | +| test.c:500:9:500:26 | ... * ... | 1302.0 | +| test.c:500:9:501:26 | ... + ... | 1695204.0 | +| test.c:500:9:502:26 | ... + ... | 2.207155608E9 | +| test.c:500:9:507:22 | ... + ... | 3.9017203216097214E19 | +| test.c:500:13:500:26 | (...) | 1302.0 | +| test.c:500:14:500:15 | ip | 1302.0 | +| test.c:500:14:500:20 | ... * ... | 1302.0 | +| test.c:500:14:500:25 | ... + ... | 1302.0 | | test.c:500:19:500:20 | 14 | 1.0 | | test.c:500:19:500:20 | (unsigned int)... | 1.0 | | test.c:500:24:500:25 | 32 | 1.0 | | test.c:500:24:500:25 | (unsigned int)... | 1.0 | -| test.c:501:9:520:44 | (...) | 1.8667469147684545E39 | -| test.c:501:10:501:10 | 4 | 1.0 | +| test.c:501:9:501:26 | (...) | 1302.0 | +| test.c:501:10:501:10 | 2 | 1.0 | | test.c:501:10:501:10 | (unsigned int)... | 1.0 | -| test.c:501:10:501:27 | ... * ... | 10419.0 | -| test.c:501:10:502:28 | ... + ... | 1.08555561E8 | -| test.c:501:10:503:28 | ... + ... | 1.131040390059E12 | -| test.c:501:10:509:24 | ... + ... | 1.0235492350954187E25 | -| test.c:501:10:510:39 | ... > ... | 1.0 | -| test.c:501:10:520:43 | ... ? ... : ... | 1.8667469147684545E39 | -| test.c:501:14:501:27 | (...) | 10419.0 | -| test.c:501:15:501:16 | ip | 10419.0 | -| test.c:501:15:501:21 | ... * ... | 10419.0 | -| test.c:501:15:501:26 | ... + ... | 10419.0 | -| test.c:501:20:501:21 | 14 | 1.0 | -| test.c:501:20:501:21 | (unsigned int)... | 1.0 | -| test.c:501:25:501:26 | 32 | 1.0 | -| test.c:501:25:501:26 | (unsigned int)... | 1.0 | -| test.c:502:11:502:28 | (...) | 10419.0 | -| test.c:502:12:502:12 | 2 | 1.0 | -| test.c:502:12:502:12 | (unsigned int)... | 1.0 | -| test.c:502:12:502:17 | ... * ... | 10419.0 | -| test.c:502:12:502:22 | ... * ... | 10419.0 | -| test.c:502:12:502:27 | ... + ... | 10419.0 | -| test.c:502:16:502:17 | ip | 10419.0 | -| test.c:502:21:502:22 | 14 | 1.0 | -| test.c:502:21:502:22 | (unsigned int)... | 1.0 | -| test.c:502:26:502:27 | 32 | 1.0 | -| test.c:502:26:502:27 | (unsigned int)... | 1.0 | +| test.c:501:10:501:15 | ... * ... | 1302.0 | +| test.c:501:10:501:20 | ... * ... | 1302.0 | +| test.c:501:10:501:25 | ... + ... | 1302.0 | +| test.c:501:14:501:15 | ip | 1302.0 | +| test.c:501:19:501:20 | 14 | 1.0 | +| test.c:501:19:501:20 | (unsigned int)... | 1.0 | +| test.c:501:24:501:25 | 32 | 1.0 | +| test.c:501:24:501:25 | (unsigned int)... | 1.0 | +| test.c:502:9:502:9 | 2 | 1.0 | +| test.c:502:9:502:9 | (unsigned int)... | 1.0 | +| test.c:502:9:502:26 | ... * ... | 1302.0 | +| test.c:502:13:502:26 | (...) | 1302.0 | +| test.c:502:14:502:15 | ip | 1302.0 | +| test.c:502:14:502:20 | ... * ... | 1302.0 | +| test.c:502:14:502:25 | ... + ... | 1302.0 | +| test.c:502:19:502:20 | 14 | 1.0 | +| test.c:502:19:502:20 | (unsigned int)... | 1.0 | +| test.c:502:24:502:25 | 64 | 1.0 | +| test.c:502:24:502:25 | (unsigned int)... | 1.0 | +| test.c:503:9:507:22 | (...) | 1.7677595125E10 | +| test.c:503:10:503:21 | (...) | 1302.0 | +| test.c:503:10:503:26 | ... * ... | 1302.0 | +| test.c:503:10:503:80 | ... > ... | 1.0 | +| test.c:503:10:507:21 | ... ? ... : ... | 1.7677595125E10 | | test.c:503:11:503:11 | 2 | 1.0 | | test.c:503:11:503:11 | (unsigned int)... | 1.0 | -| test.c:503:11:503:28 | ... * ... | 10419.0 | -| test.c:503:15:503:28 | (...) | 10419.0 | -| test.c:503:16:503:17 | ip | 10419.0 | -| test.c:503:16:503:22 | ... * ... | 10419.0 | -| test.c:503:16:503:27 | ... + ... | 10419.0 | -| test.c:503:21:503:22 | 14 | 1.0 | -| test.c:503:21:503:22 | (unsigned int)... | 1.0 | -| test.c:503:26:503:27 | 64 | 1.0 | -| test.c:503:26:503:27 | (unsigned int)... | 1.0 | -| test.c:504:11:509:24 | (...) | 9.049625849719E12 | -| test.c:504:12:504:23 | (...) | 10419.0 | -| test.c:504:12:504:28 | ... * ... | 10419.0 | -| test.c:504:12:505:61 | ... > ... | 1.0 | -| test.c:504:12:509:23 | ... ? ... : ... | 9.049625849719E12 | -| test.c:504:13:504:13 | 2 | 1.0 | -| test.c:504:13:504:13 | (unsigned int)... | 1.0 | -| test.c:504:13:504:18 | ... * ... | 10419.0 | -| test.c:504:13:504:22 | ... + ... | 10419.0 | -| test.c:504:17:504:18 | ip | 10419.0 | -| test.c:504:22:504:22 | 1 | 1.0 | -| test.c:504:22:504:22 | (unsigned int)... | 1.0 | -| test.c:504:27:504:28 | 14 | 1.0 | -| test.c:504:27:504:28 | (unsigned int)... | 1.0 | -| test.c:505:11:505:61 | (...) | 1.08555561E8 | -| test.c:505:12:505:13 | 14 | 1.0 | -| test.c:505:12:505:13 | (unsigned int)... | 1.0 | -| test.c:505:12:505:24 | ... * ... | 10419.0 | -| test.c:505:12:505:34 | ... > ... | 1.0 | -| test.c:505:12:505:60 | ... ? ... : ... | 1.08555561E8 | -| test.c:505:17:505:24 | (...) | 10419.0 | -| test.c:505:18:505:18 | 2 | 1.0 | -| test.c:505:18:505:18 | (unsigned int)... | 1.0 | -| test.c:505:18:505:23 | ... * ... | 10419.0 | -| test.c:505:22:505:23 | ip | 10419.0 | -| test.c:505:28:505:29 | 17 | 1.0 | -| test.c:505:28:505:29 | (unsigned int)... | 1.0 | -| test.c:505:28:505:34 | ... * ... | 10419.0 | -| test.c:505:33:505:34 | ip | 10419.0 | -| test.c:505:38:505:39 | 17 | 1.0 | -| test.c:505:38:505:39 | (unsigned int)... | 1.0 | -| test.c:505:38:505:50 | ... * ... | 10419.0 | -| test.c:505:43:505:50 | (...) | 10419.0 | -| test.c:505:44:505:44 | 2 | 1.0 | -| test.c:505:44:505:44 | (unsigned int)... | 1.0 | -| test.c:505:44:505:49 | ... * ... | 10419.0 | -| test.c:505:48:505:49 | ip | 10419.0 | -| test.c:505:54:505:55 | 17 | 1.0 | -| test.c:505:54:505:55 | (unsigned int)... | 1.0 | -| test.c:505:54:505:60 | ... * ... | 10419.0 | -| test.c:505:59:505:60 | ip | 10419.0 | -| test.c:506:15:506:26 | (...) | 20839.0 | -| test.c:506:15:506:31 | ... * ... | 20839.0 | -| test.c:506:16:506:16 | 2 | 1.0 | -| test.c:506:16:506:16 | (unsigned int)... | 1.0 | -| test.c:506:16:506:21 | ... * ... | 20839.0 | -| test.c:506:16:506:25 | ... + ... | 20839.0 | -| test.c:506:20:506:21 | ip | 20839.0 | -| test.c:506:25:506:25 | 1 | 1.0 | -| test.c:506:25:506:25 | (unsigned int)... | 1.0 | -| test.c:506:30:506:31 | 14 | 1.0 | -| test.c:506:30:506:31 | (unsigned int)... | 1.0 | +| test.c:503:11:503:16 | ... * ... | 1302.0 | +| test.c:503:11:503:20 | ... + ... | 1302.0 | +| test.c:503:15:503:16 | ip | 1302.0 | +| test.c:503:20:503:20 | 1 | 1.0 | +| test.c:503:20:503:20 | (unsigned int)... | 1.0 | +| test.c:503:25:503:26 | 14 | 1.0 | +| test.c:503:25:503:26 | (unsigned int)... | 1.0 | +| test.c:503:30:503:80 | (...) | 1695204.0 | +| test.c:503:31:503:32 | 17 | 1.0 | +| test.c:503:31:503:32 | (unsigned int)... | 1.0 | +| test.c:503:31:503:43 | ... * ... | 1302.0 | +| test.c:503:31:503:53 | ... > ... | 1.0 | +| test.c:503:31:503:79 | ... ? ... : ... | 1695204.0 | +| test.c:503:36:503:43 | (...) | 1302.0 | +| test.c:503:37:503:37 | 2 | 1.0 | +| test.c:503:37:503:37 | (unsigned int)... | 1.0 | +| test.c:503:37:503:42 | ... * ... | 1302.0 | +| test.c:503:41:503:42 | ip | 1302.0 | +| test.c:503:47:503:48 | 17 | 1.0 | +| test.c:503:47:503:48 | (unsigned int)... | 1.0 | +| test.c:503:47:503:53 | ... * ... | 1302.0 | +| test.c:503:52:503:53 | ip | 1302.0 | +| test.c:503:57:503:58 | 17 | 1.0 | +| test.c:503:57:503:58 | (unsigned int)... | 1.0 | +| test.c:503:57:503:69 | ... * ... | 1302.0 | +| test.c:503:62:503:69 | (...) | 1302.0 | +| test.c:503:63:503:63 | 2 | 1.0 | +| test.c:503:63:503:63 | (unsigned int)... | 1.0 | +| test.c:503:63:503:68 | ... * ... | 1302.0 | +| test.c:503:67:503:68 | ip | 1302.0 | +| test.c:503:73:503:74 | 17 | 1.0 | +| test.c:503:73:503:74 | (unsigned int)... | 1.0 | +| test.c:503:73:503:79 | ... * ... | 1302.0 | +| test.c:503:78:503:79 | ip | 1302.0 | +| test.c:504:13:504:24 | (...) | 2605.0 | +| test.c:504:13:504:29 | ... * ... | 2605.0 | +| test.c:504:14:504:14 | 2 | 1.0 | +| test.c:504:14:504:14 | (unsigned int)... | 1.0 | +| test.c:504:14:504:19 | ... * ... | 2605.0 | +| test.c:504:14:504:23 | ... + ... | 2605.0 | +| test.c:504:18:504:19 | ip | 2605.0 | +| test.c:504:23:504:23 | 1 | 1.0 | +| test.c:504:23:504:23 | (unsigned int)... | 1.0 | +| test.c:504:28:504:29 | 14 | 1.0 | +| test.c:504:28:504:29 | (unsigned int)... | 1.0 | +| test.c:505:13:505:14 | 14 | 1.0 | +| test.c:505:13:505:14 | (unsigned int)... | 1.0 | +| test.c:505:13:505:25 | ... * ... | 2605.0 | +| test.c:505:13:505:35 | ... > ... | 1.0 | +| test.c:505:13:507:21 | ... ? ... : ... | 6786025.0 | +| test.c:505:18:505:25 | (...) | 2605.0 | +| test.c:505:19:505:19 | 2 | 1.0 | +| test.c:505:19:505:19 | (unsigned int)... | 1.0 | +| test.c:505:19:505:24 | ... * ... | 2605.0 | +| test.c:505:23:505:24 | ip | 2605.0 | +| test.c:505:29:505:30 | 17 | 1.0 | +| test.c:505:29:505:30 | (unsigned int)... | 1.0 | +| test.c:505:29:505:35 | ... * ... | 2605.0 | +| test.c:505:34:505:35 | ip | 2605.0 | +| test.c:506:15:506:16 | 14 | 1.0 | +| test.c:506:15:506:16 | (unsigned int)... | 1.0 | +| test.c:506:15:506:27 | ... * ... | 2605.0 | +| test.c:506:20:506:27 | (...) | 2605.0 | +| test.c:506:21:506:21 | 2 | 1.0 | +| test.c:506:21:506:21 | (unsigned int)... | 1.0 | +| test.c:506:21:506:26 | ... * ... | 2605.0 | +| test.c:506:25:506:26 | ip | 2605.0 | | test.c:507:15:507:16 | 14 | 1.0 | | test.c:507:15:507:16 | (unsigned int)... | 1.0 | -| test.c:507:15:507:27 | ... * ... | 20839.0 | -| test.c:507:15:507:37 | ... > ... | 1.0 | -| test.c:507:15:509:23 | ... ? ... : ... | 4.34263921E8 | -| test.c:507:20:507:27 | (...) | 20839.0 | -| test.c:507:21:507:21 | 2 | 1.0 | -| test.c:507:21:507:21 | (unsigned int)... | 1.0 | -| test.c:507:21:507:26 | ... * ... | 20839.0 | -| test.c:507:25:507:26 | ip | 20839.0 | -| test.c:507:31:507:32 | 17 | 1.0 | -| test.c:507:31:507:32 | (unsigned int)... | 1.0 | -| test.c:507:31:507:37 | ... * ... | 20839.0 | -| test.c:507:36:507:37 | ip | 20839.0 | -| test.c:508:17:508:18 | 14 | 1.0 | -| test.c:508:17:508:18 | (unsigned int)... | 1.0 | -| test.c:508:17:508:29 | ... * ... | 20839.0 | -| test.c:508:22:508:29 | (...) | 20839.0 | -| test.c:508:23:508:23 | 2 | 1.0 | -| test.c:508:23:508:23 | (unsigned int)... | 1.0 | -| test.c:508:23:508:28 | ... * ... | 20839.0 | -| test.c:508:27:508:28 | ip | 20839.0 | -| test.c:509:17:509:18 | 14 | 1.0 | -| test.c:509:17:509:18 | (unsigned int)... | 1.0 | -| test.c:509:17:509:23 | ... * ... | 20839.0 | -| test.c:509:22:509:23 | ip | 20839.0 | -| test.c:510:9:510:9 | 2 | 1.0 | -| test.c:510:9:510:9 | (unsigned int)... | 1.0 | -| test.c:510:9:510:14 | ... * ... | 62517.0 | -| test.c:510:9:510:19 | ... * ... | 62517.0 | -| test.c:510:9:510:39 | ... + ... | 3.908375289E9 | -| test.c:510:13:510:14 | ip | 62517.0 | -| test.c:510:18:510:19 | 14 | 1.0 | -| test.c:510:18:510:19 | (unsigned int)... | 1.0 | -| test.c:510:23:510:34 | (...) | 62517.0 | -| test.c:510:23:510:39 | ... * ... | 62517.0 | -| test.c:510:24:510:24 | 2 | 1.0 | -| test.c:510:24:510:24 | (unsigned int)... | 1.0 | -| test.c:510:24:510:29 | ... * ... | 62517.0 | -| test.c:510:24:510:33 | ... + ... | 62517.0 | -| test.c:510:28:510:29 | ip | 62517.0 | -| test.c:510:33:510:33 | 1 | 1.0 | -| test.c:510:33:510:33 | (unsigned int)... | 1.0 | -| test.c:510:38:510:39 | 17 | 1.0 | -| test.c:510:38:510:39 | (unsigned int)... | 1.0 | -| test.c:511:13:511:13 | 4 | 1.0 | -| test.c:511:13:511:13 | (unsigned int)... | 1.0 | -| test.c:511:13:511:30 | ... * ... | 62517.0 | -| test.c:511:13:512:30 | ... + ... | 3.908375289E9 | -| test.c:511:13:513:30 | ... + ... | 2.44339897942413E14 | -| test.c:511:13:519:26 | ... + ... | 4.7762734556795386E29 | -| test.c:511:17:511:30 | (...) | 62517.0 | -| test.c:511:18:511:19 | ip | 62517.0 | -| test.c:511:18:511:24 | ... * ... | 62517.0 | -| test.c:511:18:511:29 | ... + ... | 62517.0 | -| test.c:511:23:511:24 | 14 | 1.0 | -| test.c:511:23:511:24 | (unsigned int)... | 1.0 | -| test.c:511:28:511:29 | 32 | 1.0 | -| test.c:511:28:511:29 | (unsigned int)... | 1.0 | -| test.c:512:13:512:30 | (...) | 62517.0 | -| test.c:512:14:512:14 | 2 | 1.0 | -| test.c:512:14:512:14 | (unsigned int)... | 1.0 | -| test.c:512:14:512:19 | ... * ... | 62517.0 | -| test.c:512:14:512:24 | ... * ... | 62517.0 | -| test.c:512:14:512:29 | ... + ... | 62517.0 | -| test.c:512:18:512:19 | ip | 62517.0 | -| test.c:512:23:512:24 | 14 | 1.0 | -| test.c:512:23:512:24 | (unsigned int)... | 1.0 | -| test.c:512:28:512:29 | 32 | 1.0 | -| test.c:512:28:512:29 | (unsigned int)... | 1.0 | -| test.c:513:13:513:13 | 2 | 1.0 | -| test.c:513:13:513:13 | (unsigned int)... | 1.0 | -| test.c:513:13:513:30 | ... * ... | 62517.0 | -| test.c:513:17:513:30 | (...) | 62517.0 | -| test.c:513:18:513:19 | ip | 62517.0 | -| test.c:513:18:513:24 | ... * ... | 62517.0 | -| test.c:513:18:513:29 | ... + ... | 62517.0 | -| test.c:513:23:513:24 | 14 | 1.0 | -| test.c:513:23:513:24 | (unsigned int)... | 1.0 | -| test.c:513:28:513:29 | 64 | 1.0 | -| test.c:513:28:513:29 | (unsigned int)... | 1.0 | -| test.c:514:13:519:26 | (...) | 1.954766084417875E15 | -| test.c:514:14:514:25 | (...) | 62517.0 | -| test.c:514:14:514:30 | ... * ... | 62517.0 | -| test.c:514:14:515:63 | ... > ... | 1.0 | -| test.c:514:14:519:25 | ... ? ... : ... | 1.954766084417875E15 | -| test.c:514:15:514:15 | 2 | 1.0 | -| test.c:514:15:514:15 | (unsigned int)... | 1.0 | -| test.c:514:15:514:20 | ... * ... | 62517.0 | -| test.c:514:15:514:24 | ... + ... | 62517.0 | -| test.c:514:19:514:20 | ip | 62517.0 | -| test.c:514:24:514:24 | 1 | 1.0 | -| test.c:514:24:514:24 | (unsigned int)... | 1.0 | -| test.c:514:29:514:30 | 14 | 1.0 | -| test.c:514:29:514:30 | (unsigned int)... | 1.0 | -| test.c:515:13:515:63 | (...) | 3.908375289E9 | -| test.c:515:14:515:15 | 14 | 1.0 | -| test.c:515:14:515:15 | (unsigned int)... | 1.0 | -| test.c:515:14:515:26 | ... * ... | 62517.0 | -| test.c:515:14:515:36 | ... > ... | 1.0 | -| test.c:515:14:515:62 | ... ? ... : ... | 3.908375289E9 | -| test.c:515:19:515:26 | (...) | 62517.0 | -| test.c:515:20:515:20 | 2 | 1.0 | -| test.c:515:20:515:20 | (unsigned int)... | 1.0 | -| test.c:515:20:515:25 | ... * ... | 62517.0 | -| test.c:515:24:515:25 | ip | 62517.0 | -| test.c:515:30:515:31 | 17 | 1.0 | -| test.c:515:30:515:31 | (unsigned int)... | 1.0 | -| test.c:515:30:515:36 | ... * ... | 62517.0 | -| test.c:515:35:515:36 | ip | 62517.0 | -| test.c:515:40:515:41 | 17 | 1.0 | -| test.c:515:40:515:41 | (unsigned int)... | 1.0 | -| test.c:515:40:515:52 | ... * ... | 62517.0 | -| test.c:515:45:515:52 | (...) | 62517.0 | -| test.c:515:46:515:46 | 2 | 1.0 | -| test.c:515:46:515:46 | (unsigned int)... | 1.0 | -| test.c:515:46:515:51 | ... * ... | 62517.0 | -| test.c:515:50:515:51 | ip | 62517.0 | -| test.c:515:56:515:57 | 17 | 1.0 | -| test.c:515:56:515:57 | (unsigned int)... | 1.0 | -| test.c:515:56:515:62 | ... * ... | 62517.0 | -| test.c:515:61:515:62 | ip | 62517.0 | -| test.c:516:17:516:28 | (...) | 125035.0 | -| test.c:516:17:516:33 | ... * ... | 125035.0 | +| test.c:507:15:507:21 | ... * ... | 2605.0 | +| test.c:507:20:507:21 | ip | 2605.0 | +| test.c:508:9:508:10 | 14 | 1.0 | +| test.c:508:9:508:10 | (unsigned int)... | 1.0 | +| test.c:508:9:508:15 | ... * ... | 1302.0 | +| test.c:508:9:508:31 | ... > ... | 1.0 | +| test.c:508:9:510:23 | ... ? ... : ... | 1695204.0 | +| test.c:508:14:508:15 | ip | 1302.0 | +| test.c:508:19:508:26 | (...) | 1302.0 | +| test.c:508:19:508:31 | ... * ... | 1302.0 | +| test.c:508:20:508:21 | ip | 1302.0 | +| test.c:508:20:508:25 | ... + ... | 1302.0 | +| test.c:508:25:508:25 | 1 | 1.0 | +| test.c:508:25:508:25 | (unsigned int)... | 1.0 | +| test.c:508:30:508:31 | 17 | 1.0 | +| test.c:508:30:508:31 | (unsigned int)... | 1.0 | +| test.c:509:11:509:12 | 14 | 1.0 | +| test.c:509:11:509:12 | (unsigned int)... | 1.0 | +| test.c:509:11:509:17 | ... * ... | 1302.0 | +| test.c:509:16:509:17 | ip | 1302.0 | +| test.c:510:11:510:18 | (...) | 1302.0 | +| test.c:510:11:510:23 | ... * ... | 1302.0 | +| test.c:510:12:510:13 | ip | 1302.0 | +| test.c:510:12:510:17 | ... + ... | 1302.0 | +| test.c:510:17:510:17 | 1 | 1.0 | +| test.c:510:17:510:17 | (unsigned int)... | 1.0 | +| test.c:510:22:510:23 | 14 | 1.0 | +| test.c:510:22:510:23 | (unsigned int)... | 1.0 | +| test.c:511:9:511:9 | 2 | 1.0 | +| test.c:511:9:511:9 | (unsigned int)... | 1.0 | +| test.c:511:9:511:26 | ... * ... | 10419.0 | +| test.c:511:9:531:44 | ... + ... | 1.9449636104972528E43 | +| test.c:511:13:511:26 | (...) | 10419.0 | +| test.c:511:14:511:15 | ip | 10419.0 | +| test.c:511:14:511:20 | ... * ... | 10419.0 | +| test.c:511:14:511:25 | ... + ... | 10419.0 | +| test.c:511:19:511:20 | 14 | 1.0 | +| test.c:511:19:511:20 | (unsigned int)... | 1.0 | +| test.c:511:24:511:25 | 32 | 1.0 | +| test.c:511:24:511:25 | (unsigned int)... | 1.0 | +| test.c:512:9:531:44 | (...) | 1.8667469147684545E39 | +| test.c:512:10:512:10 | 4 | 1.0 | +| test.c:512:10:512:10 | (unsigned int)... | 1.0 | +| test.c:512:10:512:27 | ... * ... | 10419.0 | +| test.c:512:10:513:28 | ... + ... | 1.08555561E8 | +| test.c:512:10:514:28 | ... + ... | 1.131040390059E12 | +| test.c:512:10:520:24 | ... + ... | 1.0235492350954187E25 | +| test.c:512:10:521:39 | ... > ... | 1.0 | +| test.c:512:10:531:43 | ... ? ... : ... | 1.8667469147684545E39 | +| test.c:512:14:512:27 | (...) | 10419.0 | +| test.c:512:15:512:16 | ip | 10419.0 | +| test.c:512:15:512:21 | ... * ... | 10419.0 | +| test.c:512:15:512:26 | ... + ... | 10419.0 | +| test.c:512:20:512:21 | 14 | 1.0 | +| test.c:512:20:512:21 | (unsigned int)... | 1.0 | +| test.c:512:25:512:26 | 32 | 1.0 | +| test.c:512:25:512:26 | (unsigned int)... | 1.0 | +| test.c:513:11:513:28 | (...) | 10419.0 | +| test.c:513:12:513:12 | 2 | 1.0 | +| test.c:513:12:513:12 | (unsigned int)... | 1.0 | +| test.c:513:12:513:17 | ... * ... | 10419.0 | +| test.c:513:12:513:22 | ... * ... | 10419.0 | +| test.c:513:12:513:27 | ... + ... | 10419.0 | +| test.c:513:16:513:17 | ip | 10419.0 | +| test.c:513:21:513:22 | 14 | 1.0 | +| test.c:513:21:513:22 | (unsigned int)... | 1.0 | +| test.c:513:26:513:27 | 32 | 1.0 | +| test.c:513:26:513:27 | (unsigned int)... | 1.0 | +| test.c:514:11:514:11 | 2 | 1.0 | +| test.c:514:11:514:11 | (unsigned int)... | 1.0 | +| test.c:514:11:514:28 | ... * ... | 10419.0 | +| test.c:514:15:514:28 | (...) | 10419.0 | +| test.c:514:16:514:17 | ip | 10419.0 | +| test.c:514:16:514:22 | ... * ... | 10419.0 | +| test.c:514:16:514:27 | ... + ... | 10419.0 | +| test.c:514:21:514:22 | 14 | 1.0 | +| test.c:514:21:514:22 | (unsigned int)... | 1.0 | +| test.c:514:26:514:27 | 64 | 1.0 | +| test.c:514:26:514:27 | (unsigned int)... | 1.0 | +| test.c:515:11:520:24 | (...) | 9.049625849719E12 | +| test.c:515:12:515:23 | (...) | 10419.0 | +| test.c:515:12:515:28 | ... * ... | 10419.0 | +| test.c:515:12:516:61 | ... > ... | 1.0 | +| test.c:515:12:520:23 | ... ? ... : ... | 9.049625849719E12 | +| test.c:515:13:515:13 | 2 | 1.0 | +| test.c:515:13:515:13 | (unsigned int)... | 1.0 | +| test.c:515:13:515:18 | ... * ... | 10419.0 | +| test.c:515:13:515:22 | ... + ... | 10419.0 | +| test.c:515:17:515:18 | ip | 10419.0 | +| test.c:515:22:515:22 | 1 | 1.0 | +| test.c:515:22:515:22 | (unsigned int)... | 1.0 | +| test.c:515:27:515:28 | 14 | 1.0 | +| test.c:515:27:515:28 | (unsigned int)... | 1.0 | +| test.c:516:11:516:61 | (...) | 1.08555561E8 | +| test.c:516:12:516:13 | 14 | 1.0 | +| test.c:516:12:516:13 | (unsigned int)... | 1.0 | +| test.c:516:12:516:24 | ... * ... | 10419.0 | +| test.c:516:12:516:34 | ... > ... | 1.0 | +| test.c:516:12:516:60 | ... ? ... : ... | 1.08555561E8 | +| test.c:516:17:516:24 | (...) | 10419.0 | | test.c:516:18:516:18 | 2 | 1.0 | | test.c:516:18:516:18 | (unsigned int)... | 1.0 | -| test.c:516:18:516:23 | ... * ... | 125035.0 | -| test.c:516:18:516:27 | ... + ... | 125035.0 | -| test.c:516:22:516:23 | ip | 125035.0 | -| test.c:516:27:516:27 | 1 | 1.0 | -| test.c:516:27:516:27 | (unsigned int)... | 1.0 | -| test.c:516:32:516:33 | 14 | 1.0 | -| test.c:516:32:516:33 | (unsigned int)... | 1.0 | -| test.c:517:17:517:18 | 14 | 1.0 | -| test.c:517:17:517:18 | (unsigned int)... | 1.0 | -| test.c:517:17:517:29 | ... * ... | 125035.0 | -| test.c:517:17:517:39 | ... > ... | 1.0 | -| test.c:517:17:519:25 | ... ? ... : ... | 1.5633751225E10 | -| test.c:517:22:517:29 | (...) | 125035.0 | -| test.c:517:23:517:23 | 2 | 1.0 | -| test.c:517:23:517:23 | (unsigned int)... | 1.0 | -| test.c:517:23:517:28 | ... * ... | 125035.0 | -| test.c:517:27:517:28 | ip | 125035.0 | -| test.c:517:33:517:34 | 17 | 1.0 | -| test.c:517:33:517:34 | (unsigned int)... | 1.0 | -| test.c:517:33:517:39 | ... * ... | 125035.0 | -| test.c:517:38:517:39 | ip | 125035.0 | -| test.c:518:19:518:20 | 14 | 1.0 | -| test.c:518:19:518:20 | (unsigned int)... | 1.0 | -| test.c:518:19:518:31 | ... * ... | 125035.0 | -| test.c:518:24:518:31 | (...) | 125035.0 | -| test.c:518:25:518:25 | 2 | 1.0 | -| test.c:518:25:518:25 | (unsigned int)... | 1.0 | -| test.c:518:25:518:30 | ... * ... | 125035.0 | -| test.c:518:29:518:30 | ip | 125035.0 | -| test.c:519:19:519:20 | 14 | 1.0 | -| test.c:519:19:519:20 | (unsigned int)... | 1.0 | -| test.c:519:19:519:25 | ... * ... | 125035.0 | -| test.c:519:24:519:25 | ip | 125035.0 | -| test.c:520:13:520:13 | 2 | 1.0 | -| test.c:520:13:520:13 | (unsigned int)... | 1.0 | -| test.c:520:13:520:18 | ... * ... | 62517.0 | -| test.c:520:13:520:23 | ... * ... | 62517.0 | -| test.c:520:13:520:43 | ... + ... | 3.908375289E9 | -| test.c:520:17:520:18 | ip | 62517.0 | -| test.c:520:22:520:23 | 14 | 1.0 | -| test.c:520:22:520:23 | (unsigned int)... | 1.0 | -| test.c:520:27:520:38 | (...) | 62517.0 | -| test.c:520:27:520:43 | ... * ... | 62517.0 | -| test.c:520:28:520:28 | 2 | 1.0 | -| test.c:520:28:520:28 | (unsigned int)... | 1.0 | -| test.c:520:28:520:33 | ... * ... | 62517.0 | -| test.c:520:28:520:37 | ... + ... | 62517.0 | -| test.c:520:32:520:33 | ip | 62517.0 | -| test.c:520:37:520:37 | 1 | 1.0 | -| test.c:520:37:520:37 | (unsigned int)... | 1.0 | -| test.c:520:42:520:43 | 17 | 1.0 | -| test.c:520:42:520:43 | (unsigned int)... | 1.0 | -| test.c:521:9:521:9 | 4 | 1.0 | +| test.c:516:18:516:23 | ... * ... | 10419.0 | +| test.c:516:22:516:23 | ip | 10419.0 | +| test.c:516:28:516:29 | 17 | 1.0 | +| test.c:516:28:516:29 | (unsigned int)... | 1.0 | +| test.c:516:28:516:34 | ... * ... | 10419.0 | +| test.c:516:33:516:34 | ip | 10419.0 | +| test.c:516:38:516:39 | 17 | 1.0 | +| test.c:516:38:516:39 | (unsigned int)... | 1.0 | +| test.c:516:38:516:50 | ... * ... | 10419.0 | +| test.c:516:43:516:50 | (...) | 10419.0 | +| test.c:516:44:516:44 | 2 | 1.0 | +| test.c:516:44:516:44 | (unsigned int)... | 1.0 | +| test.c:516:44:516:49 | ... * ... | 10419.0 | +| test.c:516:48:516:49 | ip | 10419.0 | +| test.c:516:54:516:55 | 17 | 1.0 | +| test.c:516:54:516:55 | (unsigned int)... | 1.0 | +| test.c:516:54:516:60 | ... * ... | 10419.0 | +| test.c:516:59:516:60 | ip | 10419.0 | +| test.c:517:15:517:26 | (...) | 20839.0 | +| test.c:517:15:517:31 | ... * ... | 20839.0 | +| test.c:517:16:517:16 | 2 | 1.0 | +| test.c:517:16:517:16 | (unsigned int)... | 1.0 | +| test.c:517:16:517:21 | ... * ... | 20839.0 | +| test.c:517:16:517:25 | ... + ... | 20839.0 | +| test.c:517:20:517:21 | ip | 20839.0 | +| test.c:517:25:517:25 | 1 | 1.0 | +| test.c:517:25:517:25 | (unsigned int)... | 1.0 | +| test.c:517:30:517:31 | 14 | 1.0 | +| test.c:517:30:517:31 | (unsigned int)... | 1.0 | +| test.c:518:15:518:16 | 14 | 1.0 | +| test.c:518:15:518:16 | (unsigned int)... | 1.0 | +| test.c:518:15:518:27 | ... * ... | 20839.0 | +| test.c:518:15:518:37 | ... > ... | 1.0 | +| test.c:518:15:520:23 | ... ? ... : ... | 4.34263921E8 | +| test.c:518:20:518:27 | (...) | 20839.0 | +| test.c:518:21:518:21 | 2 | 1.0 | +| test.c:518:21:518:21 | (unsigned int)... | 1.0 | +| test.c:518:21:518:26 | ... * ... | 20839.0 | +| test.c:518:25:518:26 | ip | 20839.0 | +| test.c:518:31:518:32 | 17 | 1.0 | +| test.c:518:31:518:32 | (unsigned int)... | 1.0 | +| test.c:518:31:518:37 | ... * ... | 20839.0 | +| test.c:518:36:518:37 | ip | 20839.0 | +| test.c:519:17:519:18 | 14 | 1.0 | +| test.c:519:17:519:18 | (unsigned int)... | 1.0 | +| test.c:519:17:519:29 | ... * ... | 20839.0 | +| test.c:519:22:519:29 | (...) | 20839.0 | +| test.c:519:23:519:23 | 2 | 1.0 | +| test.c:519:23:519:23 | (unsigned int)... | 1.0 | +| test.c:519:23:519:28 | ... * ... | 20839.0 | +| test.c:519:27:519:28 | ip | 20839.0 | +| test.c:520:17:520:18 | 14 | 1.0 | +| test.c:520:17:520:18 | (unsigned int)... | 1.0 | +| test.c:520:17:520:23 | ... * ... | 20839.0 | +| test.c:520:22:520:23 | ip | 20839.0 | +| test.c:521:9:521:9 | 2 | 1.0 | | test.c:521:9:521:9 | (unsigned int)... | 1.0 | -| test.c:521:9:521:26 | ... * ... | 10419.0 | -| test.c:521:9:522:30 | ... + ... | 1.08555561E8 | -| test.c:521:9:523:30 | ... + ... | 1.131040390059E12 | -| test.c:521:9:529:26 | ... + ... | 1.0235492350954187E25 | -| test.c:521:9:530:61 | ... > ... | 1.0 | -| test.c:521:9:542:25 | ... ? ... : ... | 4.778814771623795E41 | -| test.c:521:13:521:26 | (...) | 10419.0 | -| test.c:521:14:521:15 | ip | 10419.0 | -| test.c:521:14:521:20 | ... * ... | 10419.0 | -| test.c:521:14:521:25 | ... + ... | 10419.0 | -| test.c:521:19:521:20 | 14 | 1.0 | -| test.c:521:19:521:20 | (unsigned int)... | 1.0 | -| test.c:521:24:521:25 | 32 | 1.0 | -| test.c:521:24:521:25 | (unsigned int)... | 1.0 | -| test.c:522:13:522:30 | (...) | 10419.0 | -| test.c:522:14:522:14 | 2 | 1.0 | -| test.c:522:14:522:14 | (unsigned int)... | 1.0 | -| test.c:522:14:522:19 | ... * ... | 10419.0 | -| test.c:522:14:522:24 | ... * ... | 10419.0 | -| test.c:522:14:522:29 | ... + ... | 10419.0 | -| test.c:522:18:522:19 | ip | 10419.0 | +| test.c:521:9:521:14 | ... * ... | 62517.0 | +| test.c:521:9:521:19 | ... * ... | 62517.0 | +| test.c:521:9:521:39 | ... + ... | 3.908375289E9 | +| test.c:521:13:521:14 | ip | 62517.0 | +| test.c:521:18:521:19 | 14 | 1.0 | +| test.c:521:18:521:19 | (unsigned int)... | 1.0 | +| test.c:521:23:521:34 | (...) | 62517.0 | +| test.c:521:23:521:39 | ... * ... | 62517.0 | +| test.c:521:24:521:24 | 2 | 1.0 | +| test.c:521:24:521:24 | (unsigned int)... | 1.0 | +| test.c:521:24:521:29 | ... * ... | 62517.0 | +| test.c:521:24:521:33 | ... + ... | 62517.0 | +| test.c:521:28:521:29 | ip | 62517.0 | +| test.c:521:33:521:33 | 1 | 1.0 | +| test.c:521:33:521:33 | (unsigned int)... | 1.0 | +| test.c:521:38:521:39 | 17 | 1.0 | +| test.c:521:38:521:39 | (unsigned int)... | 1.0 | +| test.c:522:13:522:13 | 4 | 1.0 | +| test.c:522:13:522:13 | (unsigned int)... | 1.0 | +| test.c:522:13:522:30 | ... * ... | 62517.0 | +| test.c:522:13:523:30 | ... + ... | 3.908375289E9 | +| test.c:522:13:524:30 | ... + ... | 2.44339897942413E14 | +| test.c:522:13:530:26 | ... + ... | 4.7762734556795386E29 | +| test.c:522:17:522:30 | (...) | 62517.0 | +| test.c:522:18:522:19 | ip | 62517.0 | +| test.c:522:18:522:24 | ... * ... | 62517.0 | +| test.c:522:18:522:29 | ... + ... | 62517.0 | | test.c:522:23:522:24 | 14 | 1.0 | | test.c:522:23:522:24 | (unsigned int)... | 1.0 | | test.c:522:28:522:29 | 32 | 1.0 | | test.c:522:28:522:29 | (unsigned int)... | 1.0 | -| test.c:523:13:523:13 | 2 | 1.0 | -| test.c:523:13:523:13 | (unsigned int)... | 1.0 | -| test.c:523:13:523:30 | ... * ... | 10419.0 | -| test.c:523:17:523:30 | (...) | 10419.0 | -| test.c:523:18:523:19 | ip | 10419.0 | -| test.c:523:18:523:24 | ... * ... | 10419.0 | -| test.c:523:18:523:29 | ... + ... | 10419.0 | +| test.c:523:13:523:30 | (...) | 62517.0 | +| test.c:523:14:523:14 | 2 | 1.0 | +| test.c:523:14:523:14 | (unsigned int)... | 1.0 | +| test.c:523:14:523:19 | ... * ... | 62517.0 | +| test.c:523:14:523:24 | ... * ... | 62517.0 | +| test.c:523:14:523:29 | ... + ... | 62517.0 | +| test.c:523:18:523:19 | ip | 62517.0 | | test.c:523:23:523:24 | 14 | 1.0 | | test.c:523:23:523:24 | (unsigned int)... | 1.0 | -| test.c:523:28:523:29 | 64 | 1.0 | +| test.c:523:28:523:29 | 32 | 1.0 | | test.c:523:28:523:29 | (unsigned int)... | 1.0 | -| test.c:524:13:529:26 | (...) | 9.049625849719E12 | -| test.c:524:14:524:25 | (...) | 10419.0 | -| test.c:524:14:524:30 | ... * ... | 10419.0 | -| test.c:524:14:525:63 | ... > ... | 1.0 | -| test.c:524:14:529:25 | ... ? ... : ... | 9.049625849719E12 | -| test.c:524:15:524:15 | 2 | 1.0 | -| test.c:524:15:524:15 | (unsigned int)... | 1.0 | -| test.c:524:15:524:20 | ... * ... | 10419.0 | -| test.c:524:15:524:24 | ... + ... | 10419.0 | -| test.c:524:19:524:20 | ip | 10419.0 | -| test.c:524:24:524:24 | 1 | 1.0 | -| test.c:524:24:524:24 | (unsigned int)... | 1.0 | -| test.c:524:29:524:30 | 14 | 1.0 | -| test.c:524:29:524:30 | (unsigned int)... | 1.0 | -| test.c:525:13:525:63 | (...) | 1.08555561E8 | -| test.c:525:14:525:15 | 14 | 1.0 | -| test.c:525:14:525:15 | (unsigned int)... | 1.0 | -| test.c:525:14:525:26 | ... * ... | 10419.0 | -| test.c:525:14:525:36 | ... > ... | 1.0 | -| test.c:525:14:525:62 | ... ? ... : ... | 1.08555561E8 | -| test.c:525:19:525:26 | (...) | 10419.0 | -| test.c:525:20:525:20 | 2 | 1.0 | -| test.c:525:20:525:20 | (unsigned int)... | 1.0 | -| test.c:525:20:525:25 | ... * ... | 10419.0 | -| test.c:525:24:525:25 | ip | 10419.0 | -| test.c:525:30:525:31 | 17 | 1.0 | -| test.c:525:30:525:31 | (unsigned int)... | 1.0 | -| test.c:525:30:525:36 | ... * ... | 10419.0 | -| test.c:525:35:525:36 | ip | 10419.0 | -| test.c:525:40:525:41 | 17 | 1.0 | -| test.c:525:40:525:41 | (unsigned int)... | 1.0 | -| test.c:525:40:525:52 | ... * ... | 10419.0 | -| test.c:525:45:525:52 | (...) | 10419.0 | -| test.c:525:46:525:46 | 2 | 1.0 | -| test.c:525:46:525:46 | (unsigned int)... | 1.0 | -| test.c:525:46:525:51 | ... * ... | 10419.0 | -| test.c:525:50:525:51 | ip | 10419.0 | -| test.c:525:56:525:57 | 17 | 1.0 | -| test.c:525:56:525:57 | (unsigned int)... | 1.0 | -| test.c:525:56:525:62 | ... * ... | 10419.0 | -| test.c:525:61:525:62 | ip | 10419.0 | -| test.c:526:17:526:28 | (...) | 20839.0 | -| test.c:526:17:526:33 | ... * ... | 20839.0 | -| test.c:526:18:526:18 | 2 | 1.0 | -| test.c:526:18:526:18 | (unsigned int)... | 1.0 | -| test.c:526:18:526:23 | ... * ... | 20839.0 | -| test.c:526:18:526:27 | ... + ... | 20839.0 | -| test.c:526:22:526:23 | ip | 20839.0 | -| test.c:526:27:526:27 | 1 | 1.0 | -| test.c:526:27:526:27 | (unsigned int)... | 1.0 | -| test.c:526:32:526:33 | 14 | 1.0 | -| test.c:526:32:526:33 | (unsigned int)... | 1.0 | -| test.c:527:17:527:18 | 14 | 1.0 | -| test.c:527:17:527:18 | (unsigned int)... | 1.0 | -| test.c:527:17:527:29 | ... * ... | 20839.0 | -| test.c:527:17:527:39 | ... > ... | 1.0 | -| test.c:527:17:529:25 | ... ? ... : ... | 4.34263921E8 | -| test.c:527:22:527:29 | (...) | 20839.0 | -| test.c:527:23:527:23 | 2 | 1.0 | -| test.c:527:23:527:23 | (unsigned int)... | 1.0 | -| test.c:527:23:527:28 | ... * ... | 20839.0 | -| test.c:527:27:527:28 | ip | 20839.0 | -| test.c:527:33:527:34 | 17 | 1.0 | -| test.c:527:33:527:34 | (unsigned int)... | 1.0 | -| test.c:527:33:527:39 | ... * ... | 20839.0 | -| test.c:527:38:527:39 | ip | 20839.0 | -| test.c:528:19:528:20 | 14 | 1.0 | -| test.c:528:19:528:20 | (unsigned int)... | 1.0 | -| test.c:528:19:528:31 | ... * ... | 20839.0 | -| test.c:528:24:528:31 | (...) | 20839.0 | -| test.c:528:25:528:25 | 2 | 1.0 | -| test.c:528:25:528:25 | (unsigned int)... | 1.0 | -| test.c:528:25:528:30 | ... * ... | 20839.0 | -| test.c:528:29:528:30 | ip | 20839.0 | +| test.c:524:13:524:13 | 2 | 1.0 | +| test.c:524:13:524:13 | (unsigned int)... | 1.0 | +| test.c:524:13:524:30 | ... * ... | 62517.0 | +| test.c:524:17:524:30 | (...) | 62517.0 | +| test.c:524:18:524:19 | ip | 62517.0 | +| test.c:524:18:524:24 | ... * ... | 62517.0 | +| test.c:524:18:524:29 | ... + ... | 62517.0 | +| test.c:524:23:524:24 | 14 | 1.0 | +| test.c:524:23:524:24 | (unsigned int)... | 1.0 | +| test.c:524:28:524:29 | 64 | 1.0 | +| test.c:524:28:524:29 | (unsigned int)... | 1.0 | +| test.c:525:13:530:26 | (...) | 1.954766084417875E15 | +| test.c:525:14:525:25 | (...) | 62517.0 | +| test.c:525:14:525:30 | ... * ... | 62517.0 | +| test.c:525:14:526:63 | ... > ... | 1.0 | +| test.c:525:14:530:25 | ... ? ... : ... | 1.954766084417875E15 | +| test.c:525:15:525:15 | 2 | 1.0 | +| test.c:525:15:525:15 | (unsigned int)... | 1.0 | +| test.c:525:15:525:20 | ... * ... | 62517.0 | +| test.c:525:15:525:24 | ... + ... | 62517.0 | +| test.c:525:19:525:20 | ip | 62517.0 | +| test.c:525:24:525:24 | 1 | 1.0 | +| test.c:525:24:525:24 | (unsigned int)... | 1.0 | +| test.c:525:29:525:30 | 14 | 1.0 | +| test.c:525:29:525:30 | (unsigned int)... | 1.0 | +| test.c:526:13:526:63 | (...) | 3.908375289E9 | +| test.c:526:14:526:15 | 14 | 1.0 | +| test.c:526:14:526:15 | (unsigned int)... | 1.0 | +| test.c:526:14:526:26 | ... * ... | 62517.0 | +| test.c:526:14:526:36 | ... > ... | 1.0 | +| test.c:526:14:526:62 | ... ? ... : ... | 3.908375289E9 | +| test.c:526:19:526:26 | (...) | 62517.0 | +| test.c:526:20:526:20 | 2 | 1.0 | +| test.c:526:20:526:20 | (unsigned int)... | 1.0 | +| test.c:526:20:526:25 | ... * ... | 62517.0 | +| test.c:526:24:526:25 | ip | 62517.0 | +| test.c:526:30:526:31 | 17 | 1.0 | +| test.c:526:30:526:31 | (unsigned int)... | 1.0 | +| test.c:526:30:526:36 | ... * ... | 62517.0 | +| test.c:526:35:526:36 | ip | 62517.0 | +| test.c:526:40:526:41 | 17 | 1.0 | +| test.c:526:40:526:41 | (unsigned int)... | 1.0 | +| test.c:526:40:526:52 | ... * ... | 62517.0 | +| test.c:526:45:526:52 | (...) | 62517.0 | +| test.c:526:46:526:46 | 2 | 1.0 | +| test.c:526:46:526:46 | (unsigned int)... | 1.0 | +| test.c:526:46:526:51 | ... * ... | 62517.0 | +| test.c:526:50:526:51 | ip | 62517.0 | +| test.c:526:56:526:57 | 17 | 1.0 | +| test.c:526:56:526:57 | (unsigned int)... | 1.0 | +| test.c:526:56:526:62 | ... * ... | 62517.0 | +| test.c:526:61:526:62 | ip | 62517.0 | +| test.c:527:17:527:28 | (...) | 125035.0 | +| test.c:527:17:527:33 | ... * ... | 125035.0 | +| test.c:527:18:527:18 | 2 | 1.0 | +| test.c:527:18:527:18 | (unsigned int)... | 1.0 | +| test.c:527:18:527:23 | ... * ... | 125035.0 | +| test.c:527:18:527:27 | ... + ... | 125035.0 | +| test.c:527:22:527:23 | ip | 125035.0 | +| test.c:527:27:527:27 | 1 | 1.0 | +| test.c:527:27:527:27 | (unsigned int)... | 1.0 | +| test.c:527:32:527:33 | 14 | 1.0 | +| test.c:527:32:527:33 | (unsigned int)... | 1.0 | +| test.c:528:17:528:18 | 14 | 1.0 | +| test.c:528:17:528:18 | (unsigned int)... | 1.0 | +| test.c:528:17:528:29 | ... * ... | 125035.0 | +| test.c:528:17:528:39 | ... > ... | 1.0 | +| test.c:528:17:530:25 | ... ? ... : ... | 1.5633751225E10 | +| test.c:528:22:528:29 | (...) | 125035.0 | +| test.c:528:23:528:23 | 2 | 1.0 | +| test.c:528:23:528:23 | (unsigned int)... | 1.0 | +| test.c:528:23:528:28 | ... * ... | 125035.0 | +| test.c:528:27:528:28 | ip | 125035.0 | +| test.c:528:33:528:34 | 17 | 1.0 | +| test.c:528:33:528:34 | (unsigned int)... | 1.0 | +| test.c:528:33:528:39 | ... * ... | 125035.0 | +| test.c:528:38:528:39 | ip | 125035.0 | | test.c:529:19:529:20 | 14 | 1.0 | | test.c:529:19:529:20 | (unsigned int)... | 1.0 | -| test.c:529:19:529:25 | ... * ... | 20839.0 | -| test.c:529:24:529:25 | ip | 20839.0 | -| test.c:530:11:530:61 | (...) | 3.908375289E9 | -| test.c:530:12:530:13 | 14 | 1.0 | -| test.c:530:12:530:13 | (unsigned int)... | 1.0 | -| test.c:530:12:530:18 | ... * ... | 62517.0 | -| test.c:530:12:530:34 | ... > ... | 1.0 | -| test.c:530:12:530:60 | ... ? ... : ... | 3.908375289E9 | -| test.c:530:17:530:18 | ip | 62517.0 | -| test.c:530:22:530:29 | (...) | 62517.0 | -| test.c:530:22:530:34 | ... * ... | 62517.0 | -| test.c:530:23:530:24 | ip | 62517.0 | -| test.c:530:23:530:28 | ... + ... | 62517.0 | -| test.c:530:28:530:28 | 1 | 1.0 | -| test.c:530:28:530:28 | (unsigned int)... | 1.0 | -| test.c:530:33:530:34 | 17 | 1.0 | -| test.c:530:33:530:34 | (unsigned int)... | 1.0 | -| test.c:530:38:530:39 | 17 | 1.0 | -| test.c:530:38:530:39 | (unsigned int)... | 1.0 | -| test.c:530:38:530:44 | ... * ... | 62517.0 | -| test.c:530:43:530:44 | ip | 62517.0 | -| test.c:530:48:530:55 | (...) | 62517.0 | -| test.c:530:48:530:60 | ... * ... | 62517.0 | -| test.c:530:49:530:50 | ip | 62517.0 | -| test.c:530:49:530:54 | ... + ... | 62517.0 | -| test.c:530:54:530:54 | 1 | 1.0 | -| test.c:530:54:530:54 | (unsigned int)... | 1.0 | -| test.c:530:59:530:60 | 17 | 1.0 | -| test.c:530:59:530:60 | (unsigned int)... | 1.0 | -| test.c:531:11:531:11 | 4 | 1.0 | -| test.c:531:11:531:11 | (unsigned int)... | 1.0 | -| test.c:531:11:531:28 | ... * ... | 125034.0 | -| test.c:531:11:532:28 | ... + ... | 1.5633501156E10 | -| test.c:531:11:533:28 | ... + ... | 1.954719183539304E15 | -| test.c:531:11:539:24 | ... + ... | 3.056778340269433E31 | -| test.c:531:15:531:28 | (...) | 125034.0 | -| test.c:531:16:531:17 | ip | 125034.0 | -| test.c:531:16:531:22 | ... * ... | 125034.0 | -| test.c:531:16:531:27 | ... + ... | 125034.0 | -| test.c:531:21:531:22 | 14 | 1.0 | -| test.c:531:21:531:22 | (unsigned int)... | 1.0 | -| test.c:531:26:531:27 | 32 | 1.0 | -| test.c:531:26:531:27 | (unsigned int)... | 1.0 | -| test.c:532:11:532:28 | (...) | 125034.0 | -| test.c:532:12:532:12 | 2 | 1.0 | -| test.c:532:12:532:12 | (unsigned int)... | 1.0 | -| test.c:532:12:532:17 | ... * ... | 125034.0 | -| test.c:532:12:532:22 | ... * ... | 125034.0 | -| test.c:532:12:532:27 | ... + ... | 125034.0 | -| test.c:532:16:532:17 | ip | 125034.0 | -| test.c:532:21:532:22 | 14 | 1.0 | -| test.c:532:21:532:22 | (unsigned int)... | 1.0 | -| test.c:532:26:532:27 | 32 | 1.0 | -| test.c:532:26:532:27 | (unsigned int)... | 1.0 | -| test.c:533:11:533:11 | 2 | 1.0 | -| test.c:533:11:533:11 | (unsigned int)... | 1.0 | -| test.c:533:11:533:28 | ... * ... | 125034.0 | -| test.c:533:15:533:28 | (...) | 125034.0 | -| test.c:533:16:533:17 | ip | 125034.0 | -| test.c:533:16:533:22 | ... * ... | 125034.0 | -| test.c:533:16:533:27 | ... + ... | 125034.0 | -| test.c:533:21:533:22 | 14 | 1.0 | -| test.c:533:21:533:22 | (unsigned int)... | 1.0 | -| test.c:533:26:533:27 | 64 | 1.0 | -| test.c:533:26:533:27 | (unsigned int)... | 1.0 | -| test.c:534:11:539:24 | (...) | 1.5637941071078508E16 | -| test.c:534:12:534:23 | (...) | 125034.0 | -| test.c:534:12:534:28 | ... * ... | 125034.0 | -| test.c:534:12:535:61 | ... > ... | 1.0 | -| test.c:534:12:539:23 | ... ? ... : ... | 1.5637941071078508E16 | +| test.c:529:19:529:31 | ... * ... | 125035.0 | +| test.c:529:24:529:31 | (...) | 125035.0 | +| test.c:529:25:529:25 | 2 | 1.0 | +| test.c:529:25:529:25 | (unsigned int)... | 1.0 | +| test.c:529:25:529:30 | ... * ... | 125035.0 | +| test.c:529:29:529:30 | ip | 125035.0 | +| test.c:530:19:530:20 | 14 | 1.0 | +| test.c:530:19:530:20 | (unsigned int)... | 1.0 | +| test.c:530:19:530:25 | ... * ... | 125035.0 | +| test.c:530:24:530:25 | ip | 125035.0 | +| test.c:531:13:531:13 | 2 | 1.0 | +| test.c:531:13:531:13 | (unsigned int)... | 1.0 | +| test.c:531:13:531:18 | ... * ... | 62517.0 | +| test.c:531:13:531:23 | ... * ... | 62517.0 | +| test.c:531:13:531:43 | ... + ... | 3.908375289E9 | +| test.c:531:17:531:18 | ip | 62517.0 | +| test.c:531:22:531:23 | 14 | 1.0 | +| test.c:531:22:531:23 | (unsigned int)... | 1.0 | +| test.c:531:27:531:38 | (...) | 62517.0 | +| test.c:531:27:531:43 | ... * ... | 62517.0 | +| test.c:531:28:531:28 | 2 | 1.0 | +| test.c:531:28:531:28 | (unsigned int)... | 1.0 | +| test.c:531:28:531:33 | ... * ... | 62517.0 | +| test.c:531:28:531:37 | ... + ... | 62517.0 | +| test.c:531:32:531:33 | ip | 62517.0 | +| test.c:531:37:531:37 | 1 | 1.0 | +| test.c:531:37:531:37 | (unsigned int)... | 1.0 | +| test.c:531:42:531:43 | 17 | 1.0 | +| test.c:531:42:531:43 | (unsigned int)... | 1.0 | +| test.c:532:9:532:9 | 4 | 1.0 | +| test.c:532:9:532:9 | (unsigned int)... | 1.0 | +| test.c:532:9:532:26 | ... * ... | 10419.0 | +| test.c:532:9:533:30 | ... + ... | 1.08555561E8 | +| test.c:532:9:534:30 | ... + ... | 1.131040390059E12 | +| test.c:532:9:540:26 | ... + ... | 1.0235492350954187E25 | +| test.c:532:9:541:61 | ... > ... | 1.0 | +| test.c:532:9:553:25 | ... ? ... : ... | 4.778814771623795E41 | +| test.c:532:13:532:26 | (...) | 10419.0 | +| test.c:532:14:532:15 | ip | 10419.0 | +| test.c:532:14:532:20 | ... * ... | 10419.0 | +| test.c:532:14:532:25 | ... + ... | 10419.0 | +| test.c:532:19:532:20 | 14 | 1.0 | +| test.c:532:19:532:20 | (unsigned int)... | 1.0 | +| test.c:532:24:532:25 | 32 | 1.0 | +| test.c:532:24:532:25 | (unsigned int)... | 1.0 | +| test.c:533:13:533:30 | (...) | 10419.0 | +| test.c:533:14:533:14 | 2 | 1.0 | +| test.c:533:14:533:14 | (unsigned int)... | 1.0 | +| test.c:533:14:533:19 | ... * ... | 10419.0 | +| test.c:533:14:533:24 | ... * ... | 10419.0 | +| test.c:533:14:533:29 | ... + ... | 10419.0 | +| test.c:533:18:533:19 | ip | 10419.0 | +| test.c:533:23:533:24 | 14 | 1.0 | +| test.c:533:23:533:24 | (unsigned int)... | 1.0 | +| test.c:533:28:533:29 | 32 | 1.0 | +| test.c:533:28:533:29 | (unsigned int)... | 1.0 | | test.c:534:13:534:13 | 2 | 1.0 | | test.c:534:13:534:13 | (unsigned int)... | 1.0 | -| test.c:534:13:534:18 | ... * ... | 125034.0 | -| test.c:534:13:534:22 | ... + ... | 125034.0 | -| test.c:534:17:534:18 | ip | 125034.0 | -| test.c:534:22:534:22 | 1 | 1.0 | -| test.c:534:22:534:22 | (unsigned int)... | 1.0 | -| test.c:534:27:534:28 | 14 | 1.0 | -| test.c:534:27:534:28 | (unsigned int)... | 1.0 | -| test.c:535:11:535:61 | (...) | 1.5633501156E10 | -| test.c:535:12:535:13 | 14 | 1.0 | -| test.c:535:12:535:13 | (unsigned int)... | 1.0 | -| test.c:535:12:535:24 | ... * ... | 125034.0 | -| test.c:535:12:535:34 | ... > ... | 1.0 | -| test.c:535:12:535:60 | ... ? ... : ... | 1.5633501156E10 | -| test.c:535:17:535:24 | (...) | 125034.0 | -| test.c:535:18:535:18 | 2 | 1.0 | -| test.c:535:18:535:18 | (unsigned int)... | 1.0 | -| test.c:535:18:535:23 | ... * ... | 125034.0 | -| test.c:535:22:535:23 | ip | 125034.0 | -| test.c:535:28:535:29 | 17 | 1.0 | -| test.c:535:28:535:29 | (unsigned int)... | 1.0 | -| test.c:535:28:535:34 | ... * ... | 125034.0 | -| test.c:535:33:535:34 | ip | 125034.0 | -| test.c:535:38:535:39 | 17 | 1.0 | -| test.c:535:38:535:39 | (unsigned int)... | 1.0 | -| test.c:535:38:535:50 | ... * ... | 125034.0 | -| test.c:535:43:535:50 | (...) | 125034.0 | -| test.c:535:44:535:44 | 2 | 1.0 | -| test.c:535:44:535:44 | (unsigned int)... | 1.0 | -| test.c:535:44:535:49 | ... * ... | 125034.0 | -| test.c:535:48:535:49 | ip | 125034.0 | -| test.c:535:54:535:55 | 17 | 1.0 | -| test.c:535:54:535:55 | (unsigned int)... | 1.0 | -| test.c:535:54:535:60 | ... * ... | 125034.0 | -| test.c:535:59:535:60 | ip | 125034.0 | -| test.c:536:15:536:26 | (...) | 250069.0 | -| test.c:536:15:536:31 | ... * ... | 250069.0 | -| test.c:536:16:536:16 | 2 | 1.0 | -| test.c:536:16:536:16 | (unsigned int)... | 1.0 | -| test.c:536:16:536:21 | ... * ... | 250069.0 | -| test.c:536:16:536:25 | ... + ... | 250069.0 | -| test.c:536:20:536:21 | ip | 250069.0 | -| test.c:536:25:536:25 | 1 | 1.0 | -| test.c:536:25:536:25 | (unsigned int)... | 1.0 | -| test.c:536:30:536:31 | 14 | 1.0 | +| test.c:534:13:534:30 | ... * ... | 10419.0 | +| test.c:534:17:534:30 | (...) | 10419.0 | +| test.c:534:18:534:19 | ip | 10419.0 | +| test.c:534:18:534:24 | ... * ... | 10419.0 | +| test.c:534:18:534:29 | ... + ... | 10419.0 | +| test.c:534:23:534:24 | 14 | 1.0 | +| test.c:534:23:534:24 | (unsigned int)... | 1.0 | +| test.c:534:28:534:29 | 64 | 1.0 | +| test.c:534:28:534:29 | (unsigned int)... | 1.0 | +| test.c:535:13:540:26 | (...) | 9.049625849719E12 | +| test.c:535:14:535:25 | (...) | 10419.0 | +| test.c:535:14:535:30 | ... * ... | 10419.0 | +| test.c:535:14:536:63 | ... > ... | 1.0 | +| test.c:535:14:540:25 | ... ? ... : ... | 9.049625849719E12 | +| test.c:535:15:535:15 | 2 | 1.0 | +| test.c:535:15:535:15 | (unsigned int)... | 1.0 | +| test.c:535:15:535:20 | ... * ... | 10419.0 | +| test.c:535:15:535:24 | ... + ... | 10419.0 | +| test.c:535:19:535:20 | ip | 10419.0 | +| test.c:535:24:535:24 | 1 | 1.0 | +| test.c:535:24:535:24 | (unsigned int)... | 1.0 | +| test.c:535:29:535:30 | 14 | 1.0 | +| test.c:535:29:535:30 | (unsigned int)... | 1.0 | +| test.c:536:13:536:63 | (...) | 1.08555561E8 | +| test.c:536:14:536:15 | 14 | 1.0 | +| test.c:536:14:536:15 | (unsigned int)... | 1.0 | +| test.c:536:14:536:26 | ... * ... | 10419.0 | +| test.c:536:14:536:36 | ... > ... | 1.0 | +| test.c:536:14:536:62 | ... ? ... : ... | 1.08555561E8 | +| test.c:536:19:536:26 | (...) | 10419.0 | +| test.c:536:20:536:20 | 2 | 1.0 | +| test.c:536:20:536:20 | (unsigned int)... | 1.0 | +| test.c:536:20:536:25 | ... * ... | 10419.0 | +| test.c:536:24:536:25 | ip | 10419.0 | +| test.c:536:30:536:31 | 17 | 1.0 | | test.c:536:30:536:31 | (unsigned int)... | 1.0 | -| test.c:537:15:537:16 | 14 | 1.0 | -| test.c:537:15:537:16 | (unsigned int)... | 1.0 | -| test.c:537:15:537:27 | ... * ... | 250069.0 | -| test.c:537:15:537:37 | ... > ... | 1.0 | -| test.c:537:15:539:23 | ... ? ... : ... | 6.2534504761E10 | -| test.c:537:20:537:27 | (...) | 250069.0 | -| test.c:537:21:537:21 | 2 | 1.0 | -| test.c:537:21:537:21 | (unsigned int)... | 1.0 | -| test.c:537:21:537:26 | ... * ... | 250069.0 | -| test.c:537:25:537:26 | ip | 250069.0 | -| test.c:537:31:537:32 | 17 | 1.0 | -| test.c:537:31:537:32 | (unsigned int)... | 1.0 | -| test.c:537:31:537:37 | ... * ... | 250069.0 | -| test.c:537:36:537:37 | ip | 250069.0 | +| test.c:536:30:536:36 | ... * ... | 10419.0 | +| test.c:536:35:536:36 | ip | 10419.0 | +| test.c:536:40:536:41 | 17 | 1.0 | +| test.c:536:40:536:41 | (unsigned int)... | 1.0 | +| test.c:536:40:536:52 | ... * ... | 10419.0 | +| test.c:536:45:536:52 | (...) | 10419.0 | +| test.c:536:46:536:46 | 2 | 1.0 | +| test.c:536:46:536:46 | (unsigned int)... | 1.0 | +| test.c:536:46:536:51 | ... * ... | 10419.0 | +| test.c:536:50:536:51 | ip | 10419.0 | +| test.c:536:56:536:57 | 17 | 1.0 | +| test.c:536:56:536:57 | (unsigned int)... | 1.0 | +| test.c:536:56:536:62 | ... * ... | 10419.0 | +| test.c:536:61:536:62 | ip | 10419.0 | +| test.c:537:17:537:28 | (...) | 20839.0 | +| test.c:537:17:537:33 | ... * ... | 20839.0 | +| test.c:537:18:537:18 | 2 | 1.0 | +| test.c:537:18:537:18 | (unsigned int)... | 1.0 | +| test.c:537:18:537:23 | ... * ... | 20839.0 | +| test.c:537:18:537:27 | ... + ... | 20839.0 | +| test.c:537:22:537:23 | ip | 20839.0 | +| test.c:537:27:537:27 | 1 | 1.0 | +| test.c:537:27:537:27 | (unsigned int)... | 1.0 | +| test.c:537:32:537:33 | 14 | 1.0 | +| test.c:537:32:537:33 | (unsigned int)... | 1.0 | | test.c:538:17:538:18 | 14 | 1.0 | | test.c:538:17:538:18 | (unsigned int)... | 1.0 | -| test.c:538:17:538:29 | ... * ... | 250069.0 | -| test.c:538:22:538:29 | (...) | 250069.0 | +| test.c:538:17:538:29 | ... * ... | 20839.0 | +| test.c:538:17:538:39 | ... > ... | 1.0 | +| test.c:538:17:540:25 | ... ? ... : ... | 4.34263921E8 | +| test.c:538:22:538:29 | (...) | 20839.0 | | test.c:538:23:538:23 | 2 | 1.0 | | test.c:538:23:538:23 | (unsigned int)... | 1.0 | -| test.c:538:23:538:28 | ... * ... | 250069.0 | -| test.c:538:27:538:28 | ip | 250069.0 | -| test.c:539:17:539:18 | 14 | 1.0 | -| test.c:539:17:539:18 | (unsigned int)... | 1.0 | -| test.c:539:17:539:23 | ... * ... | 250069.0 | -| test.c:539:22:539:23 | ip | 250069.0 | -| test.c:540:11:540:12 | 14 | 1.0 | -| test.c:540:11:540:12 | (unsigned int)... | 1.0 | -| test.c:540:11:540:17 | ... * ... | 125034.0 | -| test.c:540:11:540:33 | ... > ... | 1.0 | -| test.c:540:11:542:25 | ... ? ... : ... | 1.5633501156E10 | -| test.c:540:16:540:17 | ip | 125034.0 | -| test.c:540:21:540:28 | (...) | 125034.0 | -| test.c:540:21:540:33 | ... * ... | 125034.0 | -| test.c:540:22:540:23 | ip | 125034.0 | -| test.c:540:22:540:27 | ... + ... | 125034.0 | -| test.c:540:27:540:27 | 1 | 1.0 | -| test.c:540:27:540:27 | (unsigned int)... | 1.0 | -| test.c:540:32:540:33 | 17 | 1.0 | -| test.c:540:32:540:33 | (unsigned int)... | 1.0 | -| test.c:541:13:541:14 | 14 | 1.0 | -| test.c:541:13:541:14 | (unsigned int)... | 1.0 | -| test.c:541:13:541:19 | ... * ... | 125034.0 | -| test.c:541:18:541:19 | ip | 125034.0 | -| test.c:542:13:542:20 | (...) | 125034.0 | -| test.c:542:13:542:25 | ... * ... | 125034.0 | -| test.c:542:14:542:15 | ip | 125034.0 | -| test.c:542:14:542:19 | ... + ... | 125034.0 | -| test.c:542:19:542:19 | 1 | 1.0 | -| test.c:542:19:542:19 | (unsigned int)... | 1.0 | -| test.c:542:24:542:25 | 14 | 1.0 | -| test.c:542:24:542:25 | (unsigned int)... | 1.0 | -| test.c:543:9:543:10 | 14 | 1.0 | -| test.c:543:9:543:10 | (unsigned int)... | 1.0 | -| test.c:543:9:543:15 | ... * ... | 1437897.0 | -| test.c:543:9:543:59 | ... > ... | 1.0 | -| test.c:543:9:545:51 | ... ? ... : ... | 2.9729207539701335E18 | -| test.c:543:14:543:15 | ip | 1437897.0 | -| test.c:543:19:543:30 | (...) | 1437897.0 | -| test.c:543:19:543:35 | ... * ... | 1437897.0 | -| test.c:543:19:543:59 | ... + ... | 2.067547782609E12 | -| test.c:543:20:543:20 | 2 | 1.0 | -| test.c:543:20:543:20 | (unsigned int)... | 1.0 | -| test.c:543:20:543:25 | ... * ... | 1437897.0 | -| test.c:543:20:543:29 | ... + ... | 1437897.0 | -| test.c:543:24:543:25 | ip | 1437897.0 | -| test.c:543:29:543:29 | 1 | 1.0 | -| test.c:543:29:543:29 | (unsigned int)... | 1.0 | -| test.c:543:34:543:35 | 17 | 1.0 | -| test.c:543:34:543:35 | (unsigned int)... | 1.0 | -| test.c:543:39:543:54 | (...) | 1437897.0 | -| test.c:543:39:543:59 | ... * ... | 1437897.0 | -| test.c:543:40:543:40 | 2 | 1.0 | -| test.c:543:40:543:40 | (unsigned int)... | 1.0 | -| test.c:543:40:543:45 | ... * ... | 1437897.0 | -| test.c:543:40:543:49 | ... + ... | 1437897.0 | -| test.c:543:40:543:53 | ... + ... | 1437897.0 | -| test.c:543:44:543:45 | ip | 1437897.0 | -| test.c:543:49:543:49 | 1 | 1.0 | -| test.c:543:49:543:49 | (unsigned int)... | 1.0 | -| test.c:543:53:543:53 | 1 | 1.0 | -| test.c:543:53:543:53 | (unsigned int)... | 1.0 | -| test.c:543:58:543:59 | 17 | 1.0 | -| test.c:543:58:543:59 | (unsigned int)... | 1.0 | -| test.c:544:11:544:12 | 14 | 1.0 | -| test.c:544:11:544:12 | (unsigned int)... | 1.0 | -| test.c:544:11:544:17 | ... * ... | 1437897.0 | -| test.c:544:16:544:17 | ip | 1437897.0 | -| test.c:545:11:545:22 | (...) | 1437897.0 | -| test.c:545:11:545:27 | ... * ... | 1437897.0 | -| test.c:545:11:545:51 | ... + ... | 2.067547782609E12 | -| test.c:545:12:545:12 | 2 | 1.0 | -| test.c:545:12:545:12 | (unsigned int)... | 1.0 | -| test.c:545:12:545:17 | ... * ... | 1437897.0 | -| test.c:545:12:545:21 | ... + ... | 1437897.0 | -| test.c:545:16:545:17 | ip | 1437897.0 | -| test.c:545:21:545:21 | 1 | 1.0 | -| test.c:545:21:545:21 | (unsigned int)... | 1.0 | -| test.c:545:26:545:27 | 14 | 1.0 | -| test.c:545:26:545:27 | (unsigned int)... | 1.0 | -| test.c:545:31:545:46 | (...) | 1437897.0 | -| test.c:545:31:545:51 | ... * ... | 1437897.0 | -| test.c:545:32:545:32 | 2 | 1.0 | -| test.c:545:32:545:32 | (unsigned int)... | 1.0 | -| test.c:545:32:545:37 | ... * ... | 1437897.0 | -| test.c:545:32:545:41 | ... + ... | 1437897.0 | -| test.c:545:32:545:45 | ... + ... | 1437897.0 | -| test.c:545:36:545:37 | ip | 1437897.0 | -| test.c:545:41:545:41 | 1 | 1.0 | -| test.c:545:41:545:41 | (unsigned int)... | 1.0 | -| test.c:545:45:545:45 | 1 | 1.0 | -| test.c:545:45:545:45 | (unsigned int)... | 1.0 | -| test.c:545:50:545:51 | 17 | 1.0 | -| test.c:545:50:545:51 | (unsigned int)... | 1.0 | -| test.c:546:9:546:9 | 2 | 1.0 | -| test.c:546:9:546:9 | (unsigned int)... | 1.0 | -| test.c:546:9:546:26 | ... * ... | 1437897.0 | -| test.c:546:9:566:48 | ... + ... | 3.5306223994138077E62 | -| test.c:546:9:588:30 | ... > ... | 1.0 | -| test.c:546:9:631:27 | ... ? ... : ... | 4.3658022750663434E182 | -| test.c:546:13:546:26 | (...) | 1437897.0 | -| test.c:546:14:546:15 | ip | 1437897.0 | -| test.c:546:14:546:20 | ... * ... | 1437897.0 | -| test.c:546:14:546:25 | ... + ... | 1437897.0 | -| test.c:546:19:546:20 | 14 | 1.0 | -| test.c:546:19:546:20 | (unsigned int)... | 1.0 | -| test.c:546:24:546:25 | 32 | 1.0 | -| test.c:546:24:546:25 | (unsigned int)... | 1.0 | -| test.c:547:13:566:48 | (...) | 2.4554070280512497E56 | -| test.c:547:14:547:14 | 4 | 1.0 | -| test.c:547:14:547:14 | (unsigned int)... | 1.0 | -| test.c:547:14:547:31 | ... * ... | 1437897.0 | -| test.c:547:14:548:32 | ... + ... | 2.067547782609E12 | -| test.c:547:14:549:32 | ... + ... | 2.9729207539701335E18 | -| test.c:547:14:555:28 | ... + ... | 7.070613623498497E37 | -| test.c:547:14:556:43 | ... > ... | 1.0 | -| test.c:547:14:566:47 | ... ? ... : ... | 2.4554070280512497E56 | -| test.c:547:18:547:31 | (...) | 1437897.0 | -| test.c:547:19:547:20 | ip | 1437897.0 | -| test.c:547:19:547:25 | ... * ... | 1437897.0 | -| test.c:547:19:547:30 | ... + ... | 1437897.0 | -| test.c:547:24:547:25 | 14 | 1.0 | -| test.c:547:24:547:25 | (unsigned int)... | 1.0 | -| test.c:547:29:547:30 | 32 | 1.0 | -| test.c:547:29:547:30 | (unsigned int)... | 1.0 | -| test.c:548:15:548:32 | (...) | 1437897.0 | -| test.c:548:16:548:16 | 2 | 1.0 | -| test.c:548:16:548:16 | (unsigned int)... | 1.0 | -| test.c:548:16:548:21 | ... * ... | 1437897.0 | -| test.c:548:16:548:26 | ... * ... | 1437897.0 | -| test.c:548:16:548:31 | ... + ... | 1437897.0 | -| test.c:548:20:548:21 | ip | 1437897.0 | -| test.c:548:25:548:26 | 14 | 1.0 | -| test.c:548:25:548:26 | (unsigned int)... | 1.0 | -| test.c:548:30:548:31 | 32 | 1.0 | -| test.c:548:30:548:31 | (unsigned int)... | 1.0 | -| test.c:549:15:549:15 | 2 | 1.0 | -| test.c:549:15:549:15 | (unsigned int)... | 1.0 | -| test.c:549:15:549:32 | ... * ... | 1437897.0 | -| test.c:549:19:549:32 | (...) | 1437897.0 | -| test.c:549:20:549:21 | ip | 1437897.0 | -| test.c:549:20:549:26 | ... * ... | 1437897.0 | -| test.c:549:20:549:31 | ... + ... | 1437897.0 | -| test.c:549:25:549:26 | 14 | 1.0 | -| test.c:549:25:549:26 | (unsigned int)... | 1.0 | -| test.c:549:30:549:31 | 64 | 1.0 | -| test.c:549:30:549:31 | (unsigned int)... | 1.0 | -| test.c:550:15:555:28 | (...) | 2.3783390842343084E19 | -| test.c:550:16:550:27 | (...) | 1437897.0 | -| test.c:550:16:550:32 | ... * ... | 1437897.0 | -| test.c:550:16:551:65 | ... > ... | 1.0 | -| test.c:550:16:555:27 | ... ? ... : ... | 2.3783390842343084E19 | -| test.c:550:17:550:17 | 2 | 1.0 | -| test.c:550:17:550:17 | (unsigned int)... | 1.0 | -| test.c:550:17:550:22 | ... * ... | 1437897.0 | -| test.c:550:17:550:26 | ... + ... | 1437897.0 | -| test.c:550:21:550:22 | ip | 1437897.0 | -| test.c:550:26:550:26 | 1 | 1.0 | -| test.c:550:26:550:26 | (unsigned int)... | 1.0 | -| test.c:550:31:550:32 | 14 | 1.0 | -| test.c:550:31:550:32 | (unsigned int)... | 1.0 | -| test.c:551:15:551:65 | (...) | 2.067547782609E12 | -| test.c:551:16:551:17 | 14 | 1.0 | -| test.c:551:16:551:17 | (unsigned int)... | 1.0 | -| test.c:551:16:551:28 | ... * ... | 1437897.0 | -| test.c:551:16:551:38 | ... > ... | 1.0 | -| test.c:551:16:551:64 | ... ? ... : ... | 2.067547782609E12 | -| test.c:551:21:551:28 | (...) | 1437897.0 | -| test.c:551:22:551:22 | 2 | 1.0 | -| test.c:551:22:551:22 | (unsigned int)... | 1.0 | -| test.c:551:22:551:27 | ... * ... | 1437897.0 | -| test.c:551:26:551:27 | ip | 1437897.0 | +| test.c:538:23:538:28 | ... * ... | 20839.0 | +| test.c:538:27:538:28 | ip | 20839.0 | +| test.c:538:33:538:34 | 17 | 1.0 | +| test.c:538:33:538:34 | (unsigned int)... | 1.0 | +| test.c:538:33:538:39 | ... * ... | 20839.0 | +| test.c:538:38:538:39 | ip | 20839.0 | +| test.c:539:19:539:20 | 14 | 1.0 | +| test.c:539:19:539:20 | (unsigned int)... | 1.0 | +| test.c:539:19:539:31 | ... * ... | 20839.0 | +| test.c:539:24:539:31 | (...) | 20839.0 | +| test.c:539:25:539:25 | 2 | 1.0 | +| test.c:539:25:539:25 | (unsigned int)... | 1.0 | +| test.c:539:25:539:30 | ... * ... | 20839.0 | +| test.c:539:29:539:30 | ip | 20839.0 | +| test.c:540:19:540:20 | 14 | 1.0 | +| test.c:540:19:540:20 | (unsigned int)... | 1.0 | +| test.c:540:19:540:25 | ... * ... | 20839.0 | +| test.c:540:24:540:25 | ip | 20839.0 | +| test.c:541:11:541:61 | (...) | 3.908375289E9 | +| test.c:541:12:541:13 | 14 | 1.0 | +| test.c:541:12:541:13 | (unsigned int)... | 1.0 | +| test.c:541:12:541:18 | ... * ... | 62517.0 | +| test.c:541:12:541:34 | ... > ... | 1.0 | +| test.c:541:12:541:60 | ... ? ... : ... | 3.908375289E9 | +| test.c:541:17:541:18 | ip | 62517.0 | +| test.c:541:22:541:29 | (...) | 62517.0 | +| test.c:541:22:541:34 | ... * ... | 62517.0 | +| test.c:541:23:541:24 | ip | 62517.0 | +| test.c:541:23:541:28 | ... + ... | 62517.0 | +| test.c:541:28:541:28 | 1 | 1.0 | +| test.c:541:28:541:28 | (unsigned int)... | 1.0 | +| test.c:541:33:541:34 | 17 | 1.0 | +| test.c:541:33:541:34 | (unsigned int)... | 1.0 | +| test.c:541:38:541:39 | 17 | 1.0 | +| test.c:541:38:541:39 | (unsigned int)... | 1.0 | +| test.c:541:38:541:44 | ... * ... | 62517.0 | +| test.c:541:43:541:44 | ip | 62517.0 | +| test.c:541:48:541:55 | (...) | 62517.0 | +| test.c:541:48:541:60 | ... * ... | 62517.0 | +| test.c:541:49:541:50 | ip | 62517.0 | +| test.c:541:49:541:54 | ... + ... | 62517.0 | +| test.c:541:54:541:54 | 1 | 1.0 | +| test.c:541:54:541:54 | (unsigned int)... | 1.0 | +| test.c:541:59:541:60 | 17 | 1.0 | +| test.c:541:59:541:60 | (unsigned int)... | 1.0 | +| test.c:542:11:542:11 | 4 | 1.0 | +| test.c:542:11:542:11 | (unsigned int)... | 1.0 | +| test.c:542:11:542:28 | ... * ... | 125034.0 | +| test.c:542:11:543:28 | ... + ... | 1.5633501156E10 | +| test.c:542:11:544:28 | ... + ... | 1.954719183539304E15 | +| test.c:542:11:550:24 | ... + ... | 3.056778340269433E31 | +| test.c:542:15:542:28 | (...) | 125034.0 | +| test.c:542:16:542:17 | ip | 125034.0 | +| test.c:542:16:542:22 | ... * ... | 125034.0 | +| test.c:542:16:542:27 | ... + ... | 125034.0 | +| test.c:542:21:542:22 | 14 | 1.0 | +| test.c:542:21:542:22 | (unsigned int)... | 1.0 | +| test.c:542:26:542:27 | 32 | 1.0 | +| test.c:542:26:542:27 | (unsigned int)... | 1.0 | +| test.c:543:11:543:28 | (...) | 125034.0 | +| test.c:543:12:543:12 | 2 | 1.0 | +| test.c:543:12:543:12 | (unsigned int)... | 1.0 | +| test.c:543:12:543:17 | ... * ... | 125034.0 | +| test.c:543:12:543:22 | ... * ... | 125034.0 | +| test.c:543:12:543:27 | ... + ... | 125034.0 | +| test.c:543:16:543:17 | ip | 125034.0 | +| test.c:543:21:543:22 | 14 | 1.0 | +| test.c:543:21:543:22 | (unsigned int)... | 1.0 | +| test.c:543:26:543:27 | 32 | 1.0 | +| test.c:543:26:543:27 | (unsigned int)... | 1.0 | +| test.c:544:11:544:11 | 2 | 1.0 | +| test.c:544:11:544:11 | (unsigned int)... | 1.0 | +| test.c:544:11:544:28 | ... * ... | 125034.0 | +| test.c:544:15:544:28 | (...) | 125034.0 | +| test.c:544:16:544:17 | ip | 125034.0 | +| test.c:544:16:544:22 | ... * ... | 125034.0 | +| test.c:544:16:544:27 | ... + ... | 125034.0 | +| test.c:544:21:544:22 | 14 | 1.0 | +| test.c:544:21:544:22 | (unsigned int)... | 1.0 | +| test.c:544:26:544:27 | 64 | 1.0 | +| test.c:544:26:544:27 | (unsigned int)... | 1.0 | +| test.c:545:11:550:24 | (...) | 1.5637941071078508E16 | +| test.c:545:12:545:23 | (...) | 125034.0 | +| test.c:545:12:545:28 | ... * ... | 125034.0 | +| test.c:545:12:546:61 | ... > ... | 1.0 | +| test.c:545:12:550:23 | ... ? ... : ... | 1.5637941071078508E16 | +| test.c:545:13:545:13 | 2 | 1.0 | +| test.c:545:13:545:13 | (unsigned int)... | 1.0 | +| test.c:545:13:545:18 | ... * ... | 125034.0 | +| test.c:545:13:545:22 | ... + ... | 125034.0 | +| test.c:545:17:545:18 | ip | 125034.0 | +| test.c:545:22:545:22 | 1 | 1.0 | +| test.c:545:22:545:22 | (unsigned int)... | 1.0 | +| test.c:545:27:545:28 | 14 | 1.0 | +| test.c:545:27:545:28 | (unsigned int)... | 1.0 | +| test.c:546:11:546:61 | (...) | 1.5633501156E10 | +| test.c:546:12:546:13 | 14 | 1.0 | +| test.c:546:12:546:13 | (unsigned int)... | 1.0 | +| test.c:546:12:546:24 | ... * ... | 125034.0 | +| test.c:546:12:546:34 | ... > ... | 1.0 | +| test.c:546:12:546:60 | ... ? ... : ... | 1.5633501156E10 | +| test.c:546:17:546:24 | (...) | 125034.0 | +| test.c:546:18:546:18 | 2 | 1.0 | +| test.c:546:18:546:18 | (unsigned int)... | 1.0 | +| test.c:546:18:546:23 | ... * ... | 125034.0 | +| test.c:546:22:546:23 | ip | 125034.0 | +| test.c:546:28:546:29 | 17 | 1.0 | +| test.c:546:28:546:29 | (unsigned int)... | 1.0 | +| test.c:546:28:546:34 | ... * ... | 125034.0 | +| test.c:546:33:546:34 | ip | 125034.0 | +| test.c:546:38:546:39 | 17 | 1.0 | +| test.c:546:38:546:39 | (unsigned int)... | 1.0 | +| test.c:546:38:546:50 | ... * ... | 125034.0 | +| test.c:546:43:546:50 | (...) | 125034.0 | +| test.c:546:44:546:44 | 2 | 1.0 | +| test.c:546:44:546:44 | (unsigned int)... | 1.0 | +| test.c:546:44:546:49 | ... * ... | 125034.0 | +| test.c:546:48:546:49 | ip | 125034.0 | +| test.c:546:54:546:55 | 17 | 1.0 | +| test.c:546:54:546:55 | (unsigned int)... | 1.0 | +| test.c:546:54:546:60 | ... * ... | 125034.0 | +| test.c:546:59:546:60 | ip | 125034.0 | +| test.c:547:15:547:26 | (...) | 250069.0 | +| test.c:547:15:547:31 | ... * ... | 250069.0 | +| test.c:547:16:547:16 | 2 | 1.0 | +| test.c:547:16:547:16 | (unsigned int)... | 1.0 | +| test.c:547:16:547:21 | ... * ... | 250069.0 | +| test.c:547:16:547:25 | ... + ... | 250069.0 | +| test.c:547:20:547:21 | ip | 250069.0 | +| test.c:547:25:547:25 | 1 | 1.0 | +| test.c:547:25:547:25 | (unsigned int)... | 1.0 | +| test.c:547:30:547:31 | 14 | 1.0 | +| test.c:547:30:547:31 | (unsigned int)... | 1.0 | +| test.c:548:15:548:16 | 14 | 1.0 | +| test.c:548:15:548:16 | (unsigned int)... | 1.0 | +| test.c:548:15:548:27 | ... * ... | 250069.0 | +| test.c:548:15:548:37 | ... > ... | 1.0 | +| test.c:548:15:550:23 | ... ? ... : ... | 6.2534504761E10 | +| test.c:548:20:548:27 | (...) | 250069.0 | +| test.c:548:21:548:21 | 2 | 1.0 | +| test.c:548:21:548:21 | (unsigned int)... | 1.0 | +| test.c:548:21:548:26 | ... * ... | 250069.0 | +| test.c:548:25:548:26 | ip | 250069.0 | +| test.c:548:31:548:32 | 17 | 1.0 | +| test.c:548:31:548:32 | (unsigned int)... | 1.0 | +| test.c:548:31:548:37 | ... * ... | 250069.0 | +| test.c:548:36:548:37 | ip | 250069.0 | +| test.c:549:17:549:18 | 14 | 1.0 | +| test.c:549:17:549:18 | (unsigned int)... | 1.0 | +| test.c:549:17:549:29 | ... * ... | 250069.0 | +| test.c:549:22:549:29 | (...) | 250069.0 | +| test.c:549:23:549:23 | 2 | 1.0 | +| test.c:549:23:549:23 | (unsigned int)... | 1.0 | +| test.c:549:23:549:28 | ... * ... | 250069.0 | +| test.c:549:27:549:28 | ip | 250069.0 | +| test.c:550:17:550:18 | 14 | 1.0 | +| test.c:550:17:550:18 | (unsigned int)... | 1.0 | +| test.c:550:17:550:23 | ... * ... | 250069.0 | +| test.c:550:22:550:23 | ip | 250069.0 | +| test.c:551:11:551:12 | 14 | 1.0 | +| test.c:551:11:551:12 | (unsigned int)... | 1.0 | +| test.c:551:11:551:17 | ... * ... | 125034.0 | +| test.c:551:11:551:33 | ... > ... | 1.0 | +| test.c:551:11:553:25 | ... ? ... : ... | 1.5633501156E10 | +| test.c:551:16:551:17 | ip | 125034.0 | +| test.c:551:21:551:28 | (...) | 125034.0 | +| test.c:551:21:551:33 | ... * ... | 125034.0 | +| test.c:551:22:551:23 | ip | 125034.0 | +| test.c:551:22:551:27 | ... + ... | 125034.0 | +| test.c:551:27:551:27 | 1 | 1.0 | +| test.c:551:27:551:27 | (unsigned int)... | 1.0 | | test.c:551:32:551:33 | 17 | 1.0 | | test.c:551:32:551:33 | (unsigned int)... | 1.0 | -| test.c:551:32:551:38 | ... * ... | 1437897.0 | -| test.c:551:37:551:38 | ip | 1437897.0 | -| test.c:551:42:551:43 | 17 | 1.0 | -| test.c:551:42:551:43 | (unsigned int)... | 1.0 | -| test.c:551:42:551:54 | ... * ... | 1437897.0 | -| test.c:551:47:551:54 | (...) | 1437897.0 | -| test.c:551:48:551:48 | 2 | 1.0 | -| test.c:551:48:551:48 | (unsigned int)... | 1.0 | -| test.c:551:48:551:53 | ... * ... | 1437897.0 | -| test.c:551:52:551:53 | ip | 1437897.0 | -| test.c:551:58:551:59 | 17 | 1.0 | -| test.c:551:58:551:59 | (unsigned int)... | 1.0 | -| test.c:551:58:551:64 | ... * ... | 1437897.0 | -| test.c:551:63:551:64 | ip | 1437897.0 | -| test.c:552:19:552:30 | (...) | 2875795.0 | -| test.c:552:19:552:35 | ... * ... | 2875795.0 | -| test.c:552:20:552:20 | 2 | 1.0 | -| test.c:552:20:552:20 | (unsigned int)... | 1.0 | -| test.c:552:20:552:25 | ... * ... | 2875795.0 | -| test.c:552:20:552:29 | ... + ... | 2875795.0 | -| test.c:552:24:552:25 | ip | 2875795.0 | -| test.c:552:29:552:29 | 1 | 1.0 | -| test.c:552:29:552:29 | (unsigned int)... | 1.0 | -| test.c:552:34:552:35 | 14 | 1.0 | -| test.c:552:34:552:35 | (unsigned int)... | 1.0 | -| test.c:553:19:553:20 | 14 | 1.0 | -| test.c:553:19:553:20 | (unsigned int)... | 1.0 | -| test.c:553:19:553:31 | ... * ... | 2875795.0 | -| test.c:553:19:553:41 | ... > ... | 1.0 | -| test.c:553:19:555:27 | ... ? ... : ... | 8.270196882025E12 | -| test.c:553:24:553:31 | (...) | 2875795.0 | -| test.c:553:25:553:25 | 2 | 1.0 | -| test.c:553:25:553:25 | (unsigned int)... | 1.0 | -| test.c:553:25:553:30 | ... * ... | 2875795.0 | -| test.c:553:29:553:30 | ip | 2875795.0 | -| test.c:553:35:553:36 | 17 | 1.0 | -| test.c:553:35:553:36 | (unsigned int)... | 1.0 | -| test.c:553:35:553:41 | ... * ... | 2875795.0 | -| test.c:553:40:553:41 | ip | 2875795.0 | -| test.c:554:21:554:22 | 14 | 1.0 | -| test.c:554:21:554:22 | (unsigned int)... | 1.0 | -| test.c:554:21:554:33 | ... * ... | 2875795.0 | -| test.c:554:26:554:33 | (...) | 2875795.0 | -| test.c:554:27:554:27 | 2 | 1.0 | -| test.c:554:27:554:27 | (unsigned int)... | 1.0 | -| test.c:554:27:554:32 | ... * ... | 2875795.0 | -| test.c:554:31:554:32 | ip | 2875795.0 | -| test.c:555:21:555:22 | 14 | 1.0 | -| test.c:555:21:555:22 | (unsigned int)... | 1.0 | -| test.c:555:21:555:27 | ... * ... | 2875795.0 | -| test.c:555:26:555:27 | ip | 2875795.0 | -| test.c:556:13:556:13 | 2 | 1.0 | -| test.c:556:13:556:13 | (unsigned int)... | 1.0 | -| test.c:556:13:556:18 | ... * ... | 8627385.0 | -| test.c:556:13:556:23 | ... * ... | 8627385.0 | -| test.c:556:13:556:43 | ... + ... | 7.4431771938225E13 | -| test.c:556:17:556:18 | ip | 8627385.0 | -| test.c:556:22:556:23 | 14 | 1.0 | -| test.c:556:22:556:23 | (unsigned int)... | 1.0 | -| test.c:556:27:556:38 | (...) | 8627385.0 | -| test.c:556:27:556:43 | ... * ... | 8627385.0 | -| test.c:556:28:556:28 | 2 | 1.0 | -| test.c:556:28:556:28 | (unsigned int)... | 1.0 | -| test.c:556:28:556:33 | ... * ... | 8627385.0 | -| test.c:556:28:556:37 | ... + ... | 8627385.0 | -| test.c:556:32:556:33 | ip | 8627385.0 | -| test.c:556:37:556:37 | 1 | 1.0 | -| test.c:556:37:556:37 | (unsigned int)... | 1.0 | -| test.c:556:42:556:43 | 17 | 1.0 | -| test.c:556:42:556:43 | (unsigned int)... | 1.0 | -| test.c:557:17:557:17 | 4 | 1.0 | -| test.c:557:17:557:17 | (unsigned int)... | 1.0 | -| test.c:557:17:557:34 | ... * ... | 8627385.0 | -| test.c:557:17:558:34 | ... + ... | 7.4431771938225E13 | -| test.c:557:17:559:34 | ... + ... | 6.421515527432633E20 | -| test.c:557:17:565:30 | ... + ... | 3.298869507082441E42 | -| test.c:557:21:557:34 | (...) | 8627385.0 | -| test.c:557:22:557:23 | ip | 8627385.0 | -| test.c:557:22:557:28 | ... * ... | 8627385.0 | -| test.c:557:22:557:33 | ... + ... | 8627385.0 | -| test.c:557:27:557:28 | 14 | 1.0 | -| test.c:557:27:557:28 | (unsigned int)... | 1.0 | -| test.c:557:32:557:33 | 32 | 1.0 | -| test.c:557:32:557:33 | (unsigned int)... | 1.0 | -| test.c:558:17:558:34 | (...) | 8627385.0 | -| test.c:558:18:558:18 | 2 | 1.0 | -| test.c:558:18:558:18 | (unsigned int)... | 1.0 | -| test.c:558:18:558:23 | ... * ... | 8627385.0 | -| test.c:558:18:558:28 | ... * ... | 8627385.0 | -| test.c:558:18:558:33 | ... + ... | 8627385.0 | -| test.c:558:22:558:23 | ip | 8627385.0 | -| test.c:558:27:558:28 | 14 | 1.0 | -| test.c:558:27:558:28 | (unsigned int)... | 1.0 | -| test.c:558:32:558:33 | 32 | 1.0 | -| test.c:558:32:558:33 | (unsigned int)... | 1.0 | -| test.c:559:17:559:17 | 2 | 1.0 | -| test.c:559:17:559:17 | (unsigned int)... | 1.0 | -| test.c:559:17:559:34 | ... * ... | 8627385.0 | -| test.c:559:21:559:34 | (...) | 8627385.0 | -| test.c:559:22:559:23 | ip | 8627385.0 | -| test.c:559:22:559:28 | ... * ... | 8627385.0 | -| test.c:559:22:559:33 | ... + ... | 8627385.0 | -| test.c:559:27:559:28 | 14 | 1.0 | -| test.c:559:27:559:28 | (unsigned int)... | 1.0 | -| test.c:559:32:559:33 | 64 | 1.0 | -| test.c:559:32:559:33 | (unsigned int)... | 1.0 | -| test.c:560:17:565:30 | (...) | 5.137213315127421E21 | -| test.c:560:18:560:29 | (...) | 8627385.0 | -| test.c:560:18:560:34 | ... * ... | 8627385.0 | -| test.c:560:18:561:67 | ... > ... | 1.0 | -| test.c:560:18:565:29 | ... ? ... : ... | 5.137213315127421E21 | -| test.c:560:19:560:19 | 2 | 1.0 | -| test.c:560:19:560:19 | (unsigned int)... | 1.0 | -| test.c:560:19:560:24 | ... * ... | 8627385.0 | -| test.c:560:19:560:28 | ... + ... | 8627385.0 | -| test.c:560:23:560:24 | ip | 8627385.0 | -| test.c:560:28:560:28 | 1 | 1.0 | -| test.c:560:28:560:28 | (unsigned int)... | 1.0 | -| test.c:560:33:560:34 | 14 | 1.0 | -| test.c:560:33:560:34 | (unsigned int)... | 1.0 | -| test.c:561:17:561:67 | (...) | 7.4431771938225E13 | -| test.c:561:18:561:19 | 14 | 1.0 | -| test.c:561:18:561:19 | (unsigned int)... | 1.0 | -| test.c:561:18:561:30 | ... * ... | 8627385.0 | -| test.c:561:18:561:40 | ... > ... | 1.0 | -| test.c:561:18:561:66 | ... ? ... : ... | 7.4431771938225E13 | -| test.c:561:23:561:30 | (...) | 8627385.0 | -| test.c:561:24:561:24 | 2 | 1.0 | -| test.c:561:24:561:24 | (unsigned int)... | 1.0 | -| test.c:561:24:561:29 | ... * ... | 8627385.0 | -| test.c:561:28:561:29 | ip | 8627385.0 | -| test.c:561:34:561:35 | 17 | 1.0 | -| test.c:561:34:561:35 | (unsigned int)... | 1.0 | -| test.c:561:34:561:40 | ... * ... | 8627385.0 | -| test.c:561:39:561:40 | ip | 8627385.0 | -| test.c:561:44:561:45 | 17 | 1.0 | -| test.c:561:44:561:45 | (unsigned int)... | 1.0 | -| test.c:561:44:561:56 | ... * ... | 8627385.0 | -| test.c:561:49:561:56 | (...) | 8627385.0 | -| test.c:561:50:561:50 | 2 | 1.0 | -| test.c:561:50:561:50 | (unsigned int)... | 1.0 | -| test.c:561:50:561:55 | ... * ... | 8627385.0 | -| test.c:561:54:561:55 | ip | 8627385.0 | -| test.c:561:60:561:61 | 17 | 1.0 | -| test.c:561:60:561:61 | (unsigned int)... | 1.0 | -| test.c:561:60:561:66 | ... * ... | 8627385.0 | -| test.c:561:65:561:66 | ip | 8627385.0 | -| test.c:562:21:562:32 | (...) | 1.7254771E7 | -| test.c:562:21:562:37 | ... * ... | 1.7254771E7 | +| test.c:552:13:552:14 | 14 | 1.0 | +| test.c:552:13:552:14 | (unsigned int)... | 1.0 | +| test.c:552:13:552:19 | ... * ... | 125034.0 | +| test.c:552:18:552:19 | ip | 125034.0 | +| test.c:553:13:553:20 | (...) | 125034.0 | +| test.c:553:13:553:25 | ... * ... | 125034.0 | +| test.c:553:14:553:15 | ip | 125034.0 | +| test.c:553:14:553:19 | ... + ... | 125034.0 | +| test.c:553:19:553:19 | 1 | 1.0 | +| test.c:553:19:553:19 | (unsigned int)... | 1.0 | +| test.c:553:24:553:25 | 14 | 1.0 | +| test.c:553:24:553:25 | (unsigned int)... | 1.0 | +| test.c:554:9:554:10 | 14 | 1.0 | +| test.c:554:9:554:10 | (unsigned int)... | 1.0 | +| test.c:554:9:554:15 | ... * ... | 1437897.0 | +| test.c:554:9:554:59 | ... > ... | 1.0 | +| test.c:554:9:556:51 | ... ? ... : ... | 2.9729207539701335E18 | +| test.c:554:14:554:15 | ip | 1437897.0 | +| test.c:554:19:554:30 | (...) | 1437897.0 | +| test.c:554:19:554:35 | ... * ... | 1437897.0 | +| test.c:554:19:554:59 | ... + ... | 2.067547782609E12 | +| test.c:554:20:554:20 | 2 | 1.0 | +| test.c:554:20:554:20 | (unsigned int)... | 1.0 | +| test.c:554:20:554:25 | ... * ... | 1437897.0 | +| test.c:554:20:554:29 | ... + ... | 1437897.0 | +| test.c:554:24:554:25 | ip | 1437897.0 | +| test.c:554:29:554:29 | 1 | 1.0 | +| test.c:554:29:554:29 | (unsigned int)... | 1.0 | +| test.c:554:34:554:35 | 17 | 1.0 | +| test.c:554:34:554:35 | (unsigned int)... | 1.0 | +| test.c:554:39:554:54 | (...) | 1437897.0 | +| test.c:554:39:554:59 | ... * ... | 1437897.0 | +| test.c:554:40:554:40 | 2 | 1.0 | +| test.c:554:40:554:40 | (unsigned int)... | 1.0 | +| test.c:554:40:554:45 | ... * ... | 1437897.0 | +| test.c:554:40:554:49 | ... + ... | 1437897.0 | +| test.c:554:40:554:53 | ... + ... | 1437897.0 | +| test.c:554:44:554:45 | ip | 1437897.0 | +| test.c:554:49:554:49 | 1 | 1.0 | +| test.c:554:49:554:49 | (unsigned int)... | 1.0 | +| test.c:554:53:554:53 | 1 | 1.0 | +| test.c:554:53:554:53 | (unsigned int)... | 1.0 | +| test.c:554:58:554:59 | 17 | 1.0 | +| test.c:554:58:554:59 | (unsigned int)... | 1.0 | +| test.c:555:11:555:12 | 14 | 1.0 | +| test.c:555:11:555:12 | (unsigned int)... | 1.0 | +| test.c:555:11:555:17 | ... * ... | 1437897.0 | +| test.c:555:16:555:17 | ip | 1437897.0 | +| test.c:556:11:556:22 | (...) | 1437897.0 | +| test.c:556:11:556:27 | ... * ... | 1437897.0 | +| test.c:556:11:556:51 | ... + ... | 2.067547782609E12 | +| test.c:556:12:556:12 | 2 | 1.0 | +| test.c:556:12:556:12 | (unsigned int)... | 1.0 | +| test.c:556:12:556:17 | ... * ... | 1437897.0 | +| test.c:556:12:556:21 | ... + ... | 1437897.0 | +| test.c:556:16:556:17 | ip | 1437897.0 | +| test.c:556:21:556:21 | 1 | 1.0 | +| test.c:556:21:556:21 | (unsigned int)... | 1.0 | +| test.c:556:26:556:27 | 14 | 1.0 | +| test.c:556:26:556:27 | (unsigned int)... | 1.0 | +| test.c:556:31:556:46 | (...) | 1437897.0 | +| test.c:556:31:556:51 | ... * ... | 1437897.0 | +| test.c:556:32:556:32 | 2 | 1.0 | +| test.c:556:32:556:32 | (unsigned int)... | 1.0 | +| test.c:556:32:556:37 | ... * ... | 1437897.0 | +| test.c:556:32:556:41 | ... + ... | 1437897.0 | +| test.c:556:32:556:45 | ... + ... | 1437897.0 | +| test.c:556:36:556:37 | ip | 1437897.0 | +| test.c:556:41:556:41 | 1 | 1.0 | +| test.c:556:41:556:41 | (unsigned int)... | 1.0 | +| test.c:556:45:556:45 | 1 | 1.0 | +| test.c:556:45:556:45 | (unsigned int)... | 1.0 | +| test.c:556:50:556:51 | 17 | 1.0 | +| test.c:556:50:556:51 | (unsigned int)... | 1.0 | +| test.c:557:9:557:9 | 2 | 1.0 | +| test.c:557:9:557:9 | (unsigned int)... | 1.0 | +| test.c:557:9:557:26 | ... * ... | 1437897.0 | +| test.c:557:9:577:48 | ... + ... | 3.5306223994138077E62 | +| test.c:557:9:599:30 | ... > ... | 1.0 | +| test.c:557:9:642:27 | ... ? ... : ... | 4.3658022750663434E182 | +| test.c:557:13:557:26 | (...) | 1437897.0 | +| test.c:557:14:557:15 | ip | 1437897.0 | +| test.c:557:14:557:20 | ... * ... | 1437897.0 | +| test.c:557:14:557:25 | ... + ... | 1437897.0 | +| test.c:557:19:557:20 | 14 | 1.0 | +| test.c:557:19:557:20 | (unsigned int)... | 1.0 | +| test.c:557:24:557:25 | 32 | 1.0 | +| test.c:557:24:557:25 | (unsigned int)... | 1.0 | +| test.c:558:13:577:48 | (...) | 2.4554070280512497E56 | +| test.c:558:14:558:14 | 4 | 1.0 | +| test.c:558:14:558:14 | (unsigned int)... | 1.0 | +| test.c:558:14:558:31 | ... * ... | 1437897.0 | +| test.c:558:14:559:32 | ... + ... | 2.067547782609E12 | +| test.c:558:14:560:32 | ... + ... | 2.9729207539701335E18 | +| test.c:558:14:566:28 | ... + ... | 7.070613623498497E37 | +| test.c:558:14:567:43 | ... > ... | 1.0 | +| test.c:558:14:577:47 | ... ? ... : ... | 2.4554070280512497E56 | +| test.c:558:18:558:31 | (...) | 1437897.0 | +| test.c:558:19:558:20 | ip | 1437897.0 | +| test.c:558:19:558:25 | ... * ... | 1437897.0 | +| test.c:558:19:558:30 | ... + ... | 1437897.0 | +| test.c:558:24:558:25 | 14 | 1.0 | +| test.c:558:24:558:25 | (unsigned int)... | 1.0 | +| test.c:558:29:558:30 | 32 | 1.0 | +| test.c:558:29:558:30 | (unsigned int)... | 1.0 | +| test.c:559:15:559:32 | (...) | 1437897.0 | +| test.c:559:16:559:16 | 2 | 1.0 | +| test.c:559:16:559:16 | (unsigned int)... | 1.0 | +| test.c:559:16:559:21 | ... * ... | 1437897.0 | +| test.c:559:16:559:26 | ... * ... | 1437897.0 | +| test.c:559:16:559:31 | ... + ... | 1437897.0 | +| test.c:559:20:559:21 | ip | 1437897.0 | +| test.c:559:25:559:26 | 14 | 1.0 | +| test.c:559:25:559:26 | (unsigned int)... | 1.0 | +| test.c:559:30:559:31 | 32 | 1.0 | +| test.c:559:30:559:31 | (unsigned int)... | 1.0 | +| test.c:560:15:560:15 | 2 | 1.0 | +| test.c:560:15:560:15 | (unsigned int)... | 1.0 | +| test.c:560:15:560:32 | ... * ... | 1437897.0 | +| test.c:560:19:560:32 | (...) | 1437897.0 | +| test.c:560:20:560:21 | ip | 1437897.0 | +| test.c:560:20:560:26 | ... * ... | 1437897.0 | +| test.c:560:20:560:31 | ... + ... | 1437897.0 | +| test.c:560:25:560:26 | 14 | 1.0 | +| test.c:560:25:560:26 | (unsigned int)... | 1.0 | +| test.c:560:30:560:31 | 64 | 1.0 | +| test.c:560:30:560:31 | (unsigned int)... | 1.0 | +| test.c:561:15:566:28 | (...) | 2.3783390842343084E19 | +| test.c:561:16:561:27 | (...) | 1437897.0 | +| test.c:561:16:561:32 | ... * ... | 1437897.0 | +| test.c:561:16:562:65 | ... > ... | 1.0 | +| test.c:561:16:566:27 | ... ? ... : ... | 2.3783390842343084E19 | +| test.c:561:17:561:17 | 2 | 1.0 | +| test.c:561:17:561:17 | (unsigned int)... | 1.0 | +| test.c:561:17:561:22 | ... * ... | 1437897.0 | +| test.c:561:17:561:26 | ... + ... | 1437897.0 | +| test.c:561:21:561:22 | ip | 1437897.0 | +| test.c:561:26:561:26 | 1 | 1.0 | +| test.c:561:26:561:26 | (unsigned int)... | 1.0 | +| test.c:561:31:561:32 | 14 | 1.0 | +| test.c:561:31:561:32 | (unsigned int)... | 1.0 | +| test.c:562:15:562:65 | (...) | 2.067547782609E12 | +| test.c:562:16:562:17 | 14 | 1.0 | +| test.c:562:16:562:17 | (unsigned int)... | 1.0 | +| test.c:562:16:562:28 | ... * ... | 1437897.0 | +| test.c:562:16:562:38 | ... > ... | 1.0 | +| test.c:562:16:562:64 | ... ? ... : ... | 2.067547782609E12 | +| test.c:562:21:562:28 | (...) | 1437897.0 | | test.c:562:22:562:22 | 2 | 1.0 | | test.c:562:22:562:22 | (unsigned int)... | 1.0 | -| test.c:562:22:562:27 | ... * ... | 1.7254771E7 | -| test.c:562:22:562:31 | ... + ... | 1.7254771E7 | -| test.c:562:26:562:27 | ip | 1.7254771E7 | -| test.c:562:31:562:31 | 1 | 1.0 | -| test.c:562:31:562:31 | (unsigned int)... | 1.0 | -| test.c:562:36:562:37 | 14 | 1.0 | -| test.c:562:36:562:37 | (unsigned int)... | 1.0 | -| test.c:563:21:563:22 | 14 | 1.0 | -| test.c:563:21:563:22 | (unsigned int)... | 1.0 | -| test.c:563:21:563:33 | ... * ... | 1.7254771E7 | -| test.c:563:21:563:43 | ... > ... | 1.0 | -| test.c:563:21:565:29 | ... ? ... : ... | 2.97727122262441E14 | -| test.c:563:26:563:33 | (...) | 1.7254771E7 | -| test.c:563:27:563:27 | 2 | 1.0 | -| test.c:563:27:563:27 | (unsigned int)... | 1.0 | -| test.c:563:27:563:32 | ... * ... | 1.7254771E7 | -| test.c:563:31:563:32 | ip | 1.7254771E7 | -| test.c:563:37:563:38 | 17 | 1.0 | -| test.c:563:37:563:38 | (unsigned int)... | 1.0 | -| test.c:563:37:563:43 | ... * ... | 1.7254771E7 | -| test.c:563:42:563:43 | ip | 1.7254771E7 | -| test.c:564:23:564:24 | 14 | 1.0 | -| test.c:564:23:564:24 | (unsigned int)... | 1.0 | -| test.c:564:23:564:35 | ... * ... | 1.7254771E7 | -| test.c:564:28:564:35 | (...) | 1.7254771E7 | -| test.c:564:29:564:29 | 2 | 1.0 | -| test.c:564:29:564:29 | (unsigned int)... | 1.0 | -| test.c:564:29:564:34 | ... * ... | 1.7254771E7 | -| test.c:564:33:564:34 | ip | 1.7254771E7 | -| test.c:565:23:565:24 | 14 | 1.0 | -| test.c:565:23:565:24 | (unsigned int)... | 1.0 | -| test.c:565:23:565:29 | ... * ... | 1.7254771E7 | -| test.c:565:28:565:29 | ip | 1.7254771E7 | -| test.c:566:17:566:17 | 2 | 1.0 | -| test.c:566:17:566:17 | (unsigned int)... | 1.0 | -| test.c:566:17:566:22 | ... * ... | 8627385.0 | -| test.c:566:17:566:27 | ... * ... | 8627385.0 | -| test.c:566:17:566:47 | ... + ... | 7.4431771938225E13 | -| test.c:566:21:566:22 | ip | 8627385.0 | -| test.c:566:26:566:27 | 14 | 1.0 | -| test.c:566:26:566:27 | (unsigned int)... | 1.0 | -| test.c:566:31:566:42 | (...) | 8627385.0 | -| test.c:566:31:566:47 | ... * ... | 8627385.0 | -| test.c:566:32:566:32 | 2 | 1.0 | -| test.c:566:32:566:32 | (unsigned int)... | 1.0 | -| test.c:566:32:566:37 | ... * ... | 8627385.0 | -| test.c:566:32:566:41 | ... + ... | 8627385.0 | -| test.c:566:36:566:37 | ip | 8627385.0 | -| test.c:566:41:566:41 | 1 | 1.0 | -| test.c:566:41:566:41 | (unsigned int)... | 1.0 | -| test.c:566:46:566:47 | 17 | 1.0 | -| test.c:566:46:566:47 | (unsigned int)... | 1.0 | -| test.c:567:11:588:30 | (...) | 6.08636382738973E71 | -| test.c:567:12:567:12 | 4 | 1.0 | -| test.c:567:12:567:12 | (unsigned int)... | 1.0 | -| test.c:567:12:567:29 | ... * ... | 6.0391698E7 | -| test.c:567:12:568:30 | ... + ... | 3.647157187323204E15 | -| test.c:567:12:569:30 | ... + ... | 2.2025801541535236E23 | -| test.c:567:12:575:26 | ... + ... | 3.881087564774641E47 | -| test.c:567:12:576:61 | ... > ... | 1.0 | -| test.c:567:12:588:29 | ... ? ... : ... | 6.08636382738973E71 | -| test.c:567:16:567:29 | (...) | 6.0391698E7 | -| test.c:567:17:567:18 | ip | 6.0391698E7 | -| test.c:567:17:567:23 | ... * ... | 6.0391698E7 | -| test.c:567:17:567:28 | ... + ... | 6.0391698E7 | +| test.c:562:22:562:27 | ... * ... | 1437897.0 | +| test.c:562:26:562:27 | ip | 1437897.0 | +| test.c:562:32:562:33 | 17 | 1.0 | +| test.c:562:32:562:33 | (unsigned int)... | 1.0 | +| test.c:562:32:562:38 | ... * ... | 1437897.0 | +| test.c:562:37:562:38 | ip | 1437897.0 | +| test.c:562:42:562:43 | 17 | 1.0 | +| test.c:562:42:562:43 | (unsigned int)... | 1.0 | +| test.c:562:42:562:54 | ... * ... | 1437897.0 | +| test.c:562:47:562:54 | (...) | 1437897.0 | +| test.c:562:48:562:48 | 2 | 1.0 | +| test.c:562:48:562:48 | (unsigned int)... | 1.0 | +| test.c:562:48:562:53 | ... * ... | 1437897.0 | +| test.c:562:52:562:53 | ip | 1437897.0 | +| test.c:562:58:562:59 | 17 | 1.0 | +| test.c:562:58:562:59 | (unsigned int)... | 1.0 | +| test.c:562:58:562:64 | ... * ... | 1437897.0 | +| test.c:562:63:562:64 | ip | 1437897.0 | +| test.c:563:19:563:30 | (...) | 2875795.0 | +| test.c:563:19:563:35 | ... * ... | 2875795.0 | +| test.c:563:20:563:20 | 2 | 1.0 | +| test.c:563:20:563:20 | (unsigned int)... | 1.0 | +| test.c:563:20:563:25 | ... * ... | 2875795.0 | +| test.c:563:20:563:29 | ... + ... | 2875795.0 | +| test.c:563:24:563:25 | ip | 2875795.0 | +| test.c:563:29:563:29 | 1 | 1.0 | +| test.c:563:29:563:29 | (unsigned int)... | 1.0 | +| test.c:563:34:563:35 | 14 | 1.0 | +| test.c:563:34:563:35 | (unsigned int)... | 1.0 | +| test.c:564:19:564:20 | 14 | 1.0 | +| test.c:564:19:564:20 | (unsigned int)... | 1.0 | +| test.c:564:19:564:31 | ... * ... | 2875795.0 | +| test.c:564:19:564:41 | ... > ... | 1.0 | +| test.c:564:19:566:27 | ... ? ... : ... | 8.270196882025E12 | +| test.c:564:24:564:31 | (...) | 2875795.0 | +| test.c:564:25:564:25 | 2 | 1.0 | +| test.c:564:25:564:25 | (unsigned int)... | 1.0 | +| test.c:564:25:564:30 | ... * ... | 2875795.0 | +| test.c:564:29:564:30 | ip | 2875795.0 | +| test.c:564:35:564:36 | 17 | 1.0 | +| test.c:564:35:564:36 | (unsigned int)... | 1.0 | +| test.c:564:35:564:41 | ... * ... | 2875795.0 | +| test.c:564:40:564:41 | ip | 2875795.0 | +| test.c:565:21:565:22 | 14 | 1.0 | +| test.c:565:21:565:22 | (unsigned int)... | 1.0 | +| test.c:565:21:565:33 | ... * ... | 2875795.0 | +| test.c:565:26:565:33 | (...) | 2875795.0 | +| test.c:565:27:565:27 | 2 | 1.0 | +| test.c:565:27:565:27 | (unsigned int)... | 1.0 | +| test.c:565:27:565:32 | ... * ... | 2875795.0 | +| test.c:565:31:565:32 | ip | 2875795.0 | +| test.c:566:21:566:22 | 14 | 1.0 | +| test.c:566:21:566:22 | (unsigned int)... | 1.0 | +| test.c:566:21:566:27 | ... * ... | 2875795.0 | +| test.c:566:26:566:27 | ip | 2875795.0 | +| test.c:567:13:567:13 | 2 | 1.0 | +| test.c:567:13:567:13 | (unsigned int)... | 1.0 | +| test.c:567:13:567:18 | ... * ... | 8627385.0 | +| test.c:567:13:567:23 | ... * ... | 8627385.0 | +| test.c:567:13:567:43 | ... + ... | 7.4431771938225E13 | +| test.c:567:17:567:18 | ip | 8627385.0 | | test.c:567:22:567:23 | 14 | 1.0 | | test.c:567:22:567:23 | (unsigned int)... | 1.0 | -| test.c:567:27:567:28 | 32 | 1.0 | -| test.c:567:27:567:28 | (unsigned int)... | 1.0 | -| test.c:568:13:568:30 | (...) | 6.0391698E7 | -| test.c:568:14:568:14 | 2 | 1.0 | -| test.c:568:14:568:14 | (unsigned int)... | 1.0 | -| test.c:568:14:568:19 | ... * ... | 6.0391698E7 | -| test.c:568:14:568:24 | ... * ... | 6.0391698E7 | -| test.c:568:14:568:29 | ... + ... | 6.0391698E7 | -| test.c:568:18:568:19 | ip | 6.0391698E7 | -| test.c:568:23:568:24 | 14 | 1.0 | -| test.c:568:23:568:24 | (unsigned int)... | 1.0 | -| test.c:568:28:568:29 | 32 | 1.0 | -| test.c:568:28:568:29 | (unsigned int)... | 1.0 | -| test.c:569:13:569:13 | 2 | 1.0 | -| test.c:569:13:569:13 | (unsigned int)... | 1.0 | -| test.c:569:13:569:30 | ... * ... | 6.0391698E7 | -| test.c:569:17:569:30 | (...) | 6.0391698E7 | -| test.c:569:18:569:19 | ip | 6.0391698E7 | -| test.c:569:18:569:24 | ... * ... | 6.0391698E7 | -| test.c:569:18:569:29 | ... + ... | 6.0391698E7 | -| test.c:569:23:569:24 | 14 | 1.0 | -| test.c:569:23:569:24 | (unsigned int)... | 1.0 | -| test.c:569:28:569:29 | 64 | 1.0 | -| test.c:569:28:569:29 | (unsigned int)... | 1.0 | -| test.c:570:13:575:26 | (...) | 1.7620641670887053E24 | -| test.c:570:14:570:25 | (...) | 6.0391698E7 | -| test.c:570:14:570:30 | ... * ... | 6.0391698E7 | -| test.c:570:14:571:63 | ... > ... | 1.0 | -| test.c:570:14:575:25 | ... ? ... : ... | 1.7620641670887053E24 | -| test.c:570:15:570:15 | 2 | 1.0 | -| test.c:570:15:570:15 | (unsigned int)... | 1.0 | -| test.c:570:15:570:20 | ... * ... | 6.0391698E7 | -| test.c:570:15:570:24 | ... + ... | 6.0391698E7 | -| test.c:570:19:570:20 | ip | 6.0391698E7 | -| test.c:570:24:570:24 | 1 | 1.0 | -| test.c:570:24:570:24 | (unsigned int)... | 1.0 | -| test.c:570:29:570:30 | 14 | 1.0 | -| test.c:570:29:570:30 | (unsigned int)... | 1.0 | -| test.c:571:13:571:63 | (...) | 3.647157187323204E15 | -| test.c:571:14:571:15 | 14 | 1.0 | -| test.c:571:14:571:15 | (unsigned int)... | 1.0 | -| test.c:571:14:571:26 | ... * ... | 6.0391698E7 | -| test.c:571:14:571:36 | ... > ... | 1.0 | -| test.c:571:14:571:62 | ... ? ... : ... | 3.647157187323204E15 | -| test.c:571:19:571:26 | (...) | 6.0391698E7 | -| test.c:571:20:571:20 | 2 | 1.0 | -| test.c:571:20:571:20 | (unsigned int)... | 1.0 | -| test.c:571:20:571:25 | ... * ... | 6.0391698E7 | -| test.c:571:24:571:25 | ip | 6.0391698E7 | -| test.c:571:30:571:31 | 17 | 1.0 | -| test.c:571:30:571:31 | (unsigned int)... | 1.0 | -| test.c:571:30:571:36 | ... * ... | 6.0391698E7 | -| test.c:571:35:571:36 | ip | 6.0391698E7 | -| test.c:571:40:571:41 | 17 | 1.0 | -| test.c:571:40:571:41 | (unsigned int)... | 1.0 | -| test.c:571:40:571:52 | ... * ... | 6.0391698E7 | -| test.c:571:45:571:52 | (...) | 6.0391698E7 | -| test.c:571:46:571:46 | 2 | 1.0 | -| test.c:571:46:571:46 | (unsigned int)... | 1.0 | -| test.c:571:46:571:51 | ... * ... | 6.0391698E7 | -| test.c:571:50:571:51 | ip | 6.0391698E7 | -| test.c:571:56:571:57 | 17 | 1.0 | -| test.c:571:56:571:57 | (unsigned int)... | 1.0 | -| test.c:571:56:571:62 | ... * ... | 6.0391698E7 | -| test.c:571:61:571:62 | ip | 6.0391698E7 | -| test.c:572:17:572:28 | (...) | 1.20783397E8 | -| test.c:572:17:572:33 | ... * ... | 1.20783397E8 | -| test.c:572:18:572:18 | 2 | 1.0 | -| test.c:572:18:572:18 | (unsigned int)... | 1.0 | -| test.c:572:18:572:23 | ... * ... | 1.20783397E8 | -| test.c:572:18:572:27 | ... + ... | 1.20783397E8 | -| test.c:572:22:572:23 | ip | 1.20783397E8 | -| test.c:572:27:572:27 | 1 | 1.0 | -| test.c:572:27:572:27 | (unsigned int)... | 1.0 | -| test.c:572:32:572:33 | 14 | 1.0 | -| test.c:572:32:572:33 | (unsigned int)... | 1.0 | -| test.c:573:17:573:18 | 14 | 1.0 | -| test.c:573:17:573:18 | (unsigned int)... | 1.0 | -| test.c:573:17:573:29 | ... * ... | 1.20783397E8 | -| test.c:573:17:573:39 | ... > ... | 1.0 | -| test.c:573:17:575:25 | ... ? ... : ... | 1.4588628990859608E16 | -| test.c:573:22:573:29 | (...) | 1.20783397E8 | -| test.c:573:23:573:23 | 2 | 1.0 | -| test.c:573:23:573:23 | (unsigned int)... | 1.0 | -| test.c:573:23:573:28 | ... * ... | 1.20783397E8 | -| test.c:573:27:573:28 | ip | 1.20783397E8 | -| test.c:573:33:573:34 | 17 | 1.0 | -| test.c:573:33:573:34 | (unsigned int)... | 1.0 | -| test.c:573:33:573:39 | ... * ... | 1.20783397E8 | -| test.c:573:38:573:39 | ip | 1.20783397E8 | -| test.c:574:19:574:20 | 14 | 1.0 | -| test.c:574:19:574:20 | (unsigned int)... | 1.0 | -| test.c:574:19:574:31 | ... * ... | 1.20783397E8 | -| test.c:574:24:574:31 | (...) | 1.20783397E8 | -| test.c:574:25:574:25 | 2 | 1.0 | -| test.c:574:25:574:25 | (unsigned int)... | 1.0 | -| test.c:574:25:574:30 | ... * ... | 1.20783397E8 | -| test.c:574:29:574:30 | ip | 1.20783397E8 | -| test.c:575:19:575:20 | 14 | 1.0 | -| test.c:575:19:575:20 | (unsigned int)... | 1.0 | -| test.c:575:19:575:25 | ... * ... | 1.20783397E8 | -| test.c:575:24:575:25 | ip | 1.20783397E8 | -| test.c:576:11:576:61 | (...) | 1.3129766091773648E17 | -| test.c:576:12:576:13 | 14 | 1.0 | -| test.c:576:12:576:13 | (unsigned int)... | 1.0 | -| test.c:576:12:576:18 | ... * ... | 3.62350191E8 | -| test.c:576:12:576:34 | ... > ... | 1.0 | -| test.c:576:12:576:60 | ... ? ... : ... | 1.3129766091773648E17 | -| test.c:576:17:576:18 | ip | 3.62350191E8 | -| test.c:576:22:576:29 | (...) | 3.62350191E8 | -| test.c:576:22:576:34 | ... * ... | 3.62350191E8 | -| test.c:576:23:576:24 | ip | 3.62350191E8 | -| test.c:576:23:576:28 | ... + ... | 3.62350191E8 | -| test.c:576:28:576:28 | 1 | 1.0 | -| test.c:576:28:576:28 | (unsigned int)... | 1.0 | -| test.c:576:33:576:34 | 17 | 1.0 | -| test.c:576:33:576:34 | (unsigned int)... | 1.0 | -| test.c:576:38:576:39 | 17 | 1.0 | -| test.c:576:38:576:39 | (unsigned int)... | 1.0 | -| test.c:576:38:576:44 | ... * ... | 3.62350191E8 | -| test.c:576:43:576:44 | ip | 3.62350191E8 | -| test.c:576:48:576:55 | (...) | 3.62350191E8 | -| test.c:576:48:576:60 | ... * ... | 3.62350191E8 | -| test.c:576:49:576:50 | ip | 3.62350191E8 | -| test.c:576:49:576:54 | ... + ... | 3.62350191E8 | -| test.c:576:54:576:54 | 1 | 1.0 | -| test.c:576:54:576:54 | (unsigned int)... | 1.0 | -| test.c:576:59:576:60 | 17 | 1.0 | -| test.c:576:59:576:60 | (unsigned int)... | 1.0 | -| test.c:577:15:577:15 | 4 | 1.0 | -| test.c:577:15:577:15 | (unsigned int)... | 1.0 | -| test.c:577:15:577:32 | ... * ... | 7.24700382E8 | -| test.c:577:15:578:32 | ... + ... | 5.251906436709459E17 | -| test.c:577:15:579:32 | ... + ... | 3.806058600911604E26 | -| test.c:577:15:585:28 | ... + ... | 1.1588865682845433E54 | -| test.c:577:19:577:32 | (...) | 7.24700382E8 | -| test.c:577:20:577:21 | ip | 7.24700382E8 | -| test.c:577:20:577:26 | ... * ... | 7.24700382E8 | -| test.c:577:20:577:31 | ... + ... | 7.24700382E8 | -| test.c:577:25:577:26 | 14 | 1.0 | -| test.c:577:25:577:26 | (unsigned int)... | 1.0 | -| test.c:577:30:577:31 | 32 | 1.0 | -| test.c:577:30:577:31 | (unsigned int)... | 1.0 | -| test.c:578:15:578:32 | (...) | 7.24700382E8 | -| test.c:578:16:578:16 | 2 | 1.0 | -| test.c:578:16:578:16 | (unsigned int)... | 1.0 | -| test.c:578:16:578:21 | ... * ... | 7.24700382E8 | -| test.c:578:16:578:26 | ... * ... | 7.24700382E8 | -| test.c:578:16:578:31 | ... + ... | 7.24700382E8 | -| test.c:578:20:578:21 | ip | 7.24700382E8 | -| test.c:578:25:578:26 | 14 | 1.0 | -| test.c:578:25:578:26 | (unsigned int)... | 1.0 | -| test.c:578:30:578:31 | 32 | 1.0 | -| test.c:578:30:578:31 | (unsigned int)... | 1.0 | -| test.c:579:15:579:15 | 2 | 1.0 | -| test.c:579:15:579:15 | (unsigned int)... | 1.0 | -| test.c:579:15:579:32 | ... * ... | 7.24700382E8 | -| test.c:579:19:579:32 | (...) | 7.24700382E8 | -| test.c:579:20:579:21 | ip | 7.24700382E8 | -| test.c:579:20:579:26 | ... * ... | 7.24700382E8 | -| test.c:579:20:579:31 | ... + ... | 7.24700382E8 | -| test.c:579:25:579:26 | 14 | 1.0 | -| test.c:579:25:579:26 | (unsigned int)... | 1.0 | -| test.c:579:30:579:31 | 64 | 1.0 | -| test.c:579:30:579:31 | (unsigned int)... | 1.0 | -| test.c:580:15:585:28 | (...) | 3.044846887031571E27 | -| test.c:580:16:580:27 | (...) | 7.24700382E8 | -| test.c:580:16:580:32 | ... * ... | 7.24700382E8 | -| test.c:580:16:581:65 | ... > ... | 1.0 | -| test.c:580:16:585:27 | ... ? ... : ... | 3.044846887031571E27 | -| test.c:580:17:580:17 | 2 | 1.0 | -| test.c:580:17:580:17 | (unsigned int)... | 1.0 | -| test.c:580:17:580:22 | ... * ... | 7.24700382E8 | -| test.c:580:17:580:26 | ... + ... | 7.24700382E8 | -| test.c:580:21:580:22 | ip | 7.24700382E8 | -| test.c:580:26:580:26 | 1 | 1.0 | -| test.c:580:26:580:26 | (unsigned int)... | 1.0 | -| test.c:580:31:580:32 | 14 | 1.0 | -| test.c:580:31:580:32 | (unsigned int)... | 1.0 | -| test.c:581:15:581:65 | (...) | 5.251906436709459E17 | -| test.c:581:16:581:17 | 14 | 1.0 | -| test.c:581:16:581:17 | (unsigned int)... | 1.0 | -| test.c:581:16:581:28 | ... * ... | 7.24700382E8 | -| test.c:581:16:581:38 | ... > ... | 1.0 | -| test.c:581:16:581:64 | ... ? ... : ... | 5.251906436709459E17 | -| test.c:581:21:581:28 | (...) | 7.24700382E8 | -| test.c:581:22:581:22 | 2 | 1.0 | -| test.c:581:22:581:22 | (unsigned int)... | 1.0 | -| test.c:581:22:581:27 | ... * ... | 7.24700382E8 | -| test.c:581:26:581:27 | ip | 7.24700382E8 | -| test.c:581:32:581:33 | 17 | 1.0 | -| test.c:581:32:581:33 | (unsigned int)... | 1.0 | -| test.c:581:32:581:38 | ... * ... | 7.24700382E8 | -| test.c:581:37:581:38 | ip | 7.24700382E8 | -| test.c:581:42:581:43 | 17 | 1.0 | -| test.c:581:42:581:43 | (unsigned int)... | 1.0 | -| test.c:581:42:581:54 | ... * ... | 7.24700382E8 | -| test.c:581:47:581:54 | (...) | 7.24700382E8 | -| test.c:581:48:581:48 | 2 | 1.0 | -| test.c:581:48:581:48 | (unsigned int)... | 1.0 | -| test.c:581:48:581:53 | ... * ... | 7.24700382E8 | -| test.c:581:52:581:53 | ip | 7.24700382E8 | -| test.c:581:58:581:59 | 17 | 1.0 | -| test.c:581:58:581:59 | (unsigned int)... | 1.0 | -| test.c:581:58:581:64 | ... * ... | 7.24700382E8 | -| test.c:581:63:581:64 | ip | 7.24700382E8 | -| test.c:582:19:582:30 | (...) | 1.449400765E9 | -| test.c:582:19:582:35 | ... * ... | 1.449400765E9 | +| test.c:567:27:567:38 | (...) | 8627385.0 | +| test.c:567:27:567:43 | ... * ... | 8627385.0 | +| test.c:567:28:567:28 | 2 | 1.0 | +| test.c:567:28:567:28 | (unsigned int)... | 1.0 | +| test.c:567:28:567:33 | ... * ... | 8627385.0 | +| test.c:567:28:567:37 | ... + ... | 8627385.0 | +| test.c:567:32:567:33 | ip | 8627385.0 | +| test.c:567:37:567:37 | 1 | 1.0 | +| test.c:567:37:567:37 | (unsigned int)... | 1.0 | +| test.c:567:42:567:43 | 17 | 1.0 | +| test.c:567:42:567:43 | (unsigned int)... | 1.0 | +| test.c:568:17:568:17 | 4 | 1.0 | +| test.c:568:17:568:17 | (unsigned int)... | 1.0 | +| test.c:568:17:568:34 | ... * ... | 8627385.0 | +| test.c:568:17:569:34 | ... + ... | 7.4431771938225E13 | +| test.c:568:17:570:34 | ... + ... | 6.421515527432633E20 | +| test.c:568:17:576:30 | ... + ... | 3.298869507082441E42 | +| test.c:568:21:568:34 | (...) | 8627385.0 | +| test.c:568:22:568:23 | ip | 8627385.0 | +| test.c:568:22:568:28 | ... * ... | 8627385.0 | +| test.c:568:22:568:33 | ... + ... | 8627385.0 | +| test.c:568:27:568:28 | 14 | 1.0 | +| test.c:568:27:568:28 | (unsigned int)... | 1.0 | +| test.c:568:32:568:33 | 32 | 1.0 | +| test.c:568:32:568:33 | (unsigned int)... | 1.0 | +| test.c:569:17:569:34 | (...) | 8627385.0 | +| test.c:569:18:569:18 | 2 | 1.0 | +| test.c:569:18:569:18 | (unsigned int)... | 1.0 | +| test.c:569:18:569:23 | ... * ... | 8627385.0 | +| test.c:569:18:569:28 | ... * ... | 8627385.0 | +| test.c:569:18:569:33 | ... + ... | 8627385.0 | +| test.c:569:22:569:23 | ip | 8627385.0 | +| test.c:569:27:569:28 | 14 | 1.0 | +| test.c:569:27:569:28 | (unsigned int)... | 1.0 | +| test.c:569:32:569:33 | 32 | 1.0 | +| test.c:569:32:569:33 | (unsigned int)... | 1.0 | +| test.c:570:17:570:17 | 2 | 1.0 | +| test.c:570:17:570:17 | (unsigned int)... | 1.0 | +| test.c:570:17:570:34 | ... * ... | 8627385.0 | +| test.c:570:21:570:34 | (...) | 8627385.0 | +| test.c:570:22:570:23 | ip | 8627385.0 | +| test.c:570:22:570:28 | ... * ... | 8627385.0 | +| test.c:570:22:570:33 | ... + ... | 8627385.0 | +| test.c:570:27:570:28 | 14 | 1.0 | +| test.c:570:27:570:28 | (unsigned int)... | 1.0 | +| test.c:570:32:570:33 | 64 | 1.0 | +| test.c:570:32:570:33 | (unsigned int)... | 1.0 | +| test.c:571:17:576:30 | (...) | 5.137213315127421E21 | +| test.c:571:18:571:29 | (...) | 8627385.0 | +| test.c:571:18:571:34 | ... * ... | 8627385.0 | +| test.c:571:18:572:67 | ... > ... | 1.0 | +| test.c:571:18:576:29 | ... ? ... : ... | 5.137213315127421E21 | +| test.c:571:19:571:19 | 2 | 1.0 | +| test.c:571:19:571:19 | (unsigned int)... | 1.0 | +| test.c:571:19:571:24 | ... * ... | 8627385.0 | +| test.c:571:19:571:28 | ... + ... | 8627385.0 | +| test.c:571:23:571:24 | ip | 8627385.0 | +| test.c:571:28:571:28 | 1 | 1.0 | +| test.c:571:28:571:28 | (unsigned int)... | 1.0 | +| test.c:571:33:571:34 | 14 | 1.0 | +| test.c:571:33:571:34 | (unsigned int)... | 1.0 | +| test.c:572:17:572:67 | (...) | 7.4431771938225E13 | +| test.c:572:18:572:19 | 14 | 1.0 | +| test.c:572:18:572:19 | (unsigned int)... | 1.0 | +| test.c:572:18:572:30 | ... * ... | 8627385.0 | +| test.c:572:18:572:40 | ... > ... | 1.0 | +| test.c:572:18:572:66 | ... ? ... : ... | 7.4431771938225E13 | +| test.c:572:23:572:30 | (...) | 8627385.0 | +| test.c:572:24:572:24 | 2 | 1.0 | +| test.c:572:24:572:24 | (unsigned int)... | 1.0 | +| test.c:572:24:572:29 | ... * ... | 8627385.0 | +| test.c:572:28:572:29 | ip | 8627385.0 | +| test.c:572:34:572:35 | 17 | 1.0 | +| test.c:572:34:572:35 | (unsigned int)... | 1.0 | +| test.c:572:34:572:40 | ... * ... | 8627385.0 | +| test.c:572:39:572:40 | ip | 8627385.0 | +| test.c:572:44:572:45 | 17 | 1.0 | +| test.c:572:44:572:45 | (unsigned int)... | 1.0 | +| test.c:572:44:572:56 | ... * ... | 8627385.0 | +| test.c:572:49:572:56 | (...) | 8627385.0 | +| test.c:572:50:572:50 | 2 | 1.0 | +| test.c:572:50:572:50 | (unsigned int)... | 1.0 | +| test.c:572:50:572:55 | ... * ... | 8627385.0 | +| test.c:572:54:572:55 | ip | 8627385.0 | +| test.c:572:60:572:61 | 17 | 1.0 | +| test.c:572:60:572:61 | (unsigned int)... | 1.0 | +| test.c:572:60:572:66 | ... * ... | 8627385.0 | +| test.c:572:65:572:66 | ip | 8627385.0 | +| test.c:573:21:573:32 | (...) | 1.7254771E7 | +| test.c:573:21:573:37 | ... * ... | 1.7254771E7 | +| test.c:573:22:573:22 | 2 | 1.0 | +| test.c:573:22:573:22 | (unsigned int)... | 1.0 | +| test.c:573:22:573:27 | ... * ... | 1.7254771E7 | +| test.c:573:22:573:31 | ... + ... | 1.7254771E7 | +| test.c:573:26:573:27 | ip | 1.7254771E7 | +| test.c:573:31:573:31 | 1 | 1.0 | +| test.c:573:31:573:31 | (unsigned int)... | 1.0 | +| test.c:573:36:573:37 | 14 | 1.0 | +| test.c:573:36:573:37 | (unsigned int)... | 1.0 | +| test.c:574:21:574:22 | 14 | 1.0 | +| test.c:574:21:574:22 | (unsigned int)... | 1.0 | +| test.c:574:21:574:33 | ... * ... | 1.7254771E7 | +| test.c:574:21:574:43 | ... > ... | 1.0 | +| test.c:574:21:576:29 | ... ? ... : ... | 2.97727122262441E14 | +| test.c:574:26:574:33 | (...) | 1.7254771E7 | +| test.c:574:27:574:27 | 2 | 1.0 | +| test.c:574:27:574:27 | (unsigned int)... | 1.0 | +| test.c:574:27:574:32 | ... * ... | 1.7254771E7 | +| test.c:574:31:574:32 | ip | 1.7254771E7 | +| test.c:574:37:574:38 | 17 | 1.0 | +| test.c:574:37:574:38 | (unsigned int)... | 1.0 | +| test.c:574:37:574:43 | ... * ... | 1.7254771E7 | +| test.c:574:42:574:43 | ip | 1.7254771E7 | +| test.c:575:23:575:24 | 14 | 1.0 | +| test.c:575:23:575:24 | (unsigned int)... | 1.0 | +| test.c:575:23:575:35 | ... * ... | 1.7254771E7 | +| test.c:575:28:575:35 | (...) | 1.7254771E7 | +| test.c:575:29:575:29 | 2 | 1.0 | +| test.c:575:29:575:29 | (unsigned int)... | 1.0 | +| test.c:575:29:575:34 | ... * ... | 1.7254771E7 | +| test.c:575:33:575:34 | ip | 1.7254771E7 | +| test.c:576:23:576:24 | 14 | 1.0 | +| test.c:576:23:576:24 | (unsigned int)... | 1.0 | +| test.c:576:23:576:29 | ... * ... | 1.7254771E7 | +| test.c:576:28:576:29 | ip | 1.7254771E7 | +| test.c:577:17:577:17 | 2 | 1.0 | +| test.c:577:17:577:17 | (unsigned int)... | 1.0 | +| test.c:577:17:577:22 | ... * ... | 8627385.0 | +| test.c:577:17:577:27 | ... * ... | 8627385.0 | +| test.c:577:17:577:47 | ... + ... | 7.4431771938225E13 | +| test.c:577:21:577:22 | ip | 8627385.0 | +| test.c:577:26:577:27 | 14 | 1.0 | +| test.c:577:26:577:27 | (unsigned int)... | 1.0 | +| test.c:577:31:577:42 | (...) | 8627385.0 | +| test.c:577:31:577:47 | ... * ... | 8627385.0 | +| test.c:577:32:577:32 | 2 | 1.0 | +| test.c:577:32:577:32 | (unsigned int)... | 1.0 | +| test.c:577:32:577:37 | ... * ... | 8627385.0 | +| test.c:577:32:577:41 | ... + ... | 8627385.0 | +| test.c:577:36:577:37 | ip | 8627385.0 | +| test.c:577:41:577:41 | 1 | 1.0 | +| test.c:577:41:577:41 | (unsigned int)... | 1.0 | +| test.c:577:46:577:47 | 17 | 1.0 | +| test.c:577:46:577:47 | (unsigned int)... | 1.0 | +| test.c:578:11:599:30 | (...) | 6.08636382738973E71 | +| test.c:578:12:578:12 | 4 | 1.0 | +| test.c:578:12:578:12 | (unsigned int)... | 1.0 | +| test.c:578:12:578:29 | ... * ... | 6.0391698E7 | +| test.c:578:12:579:30 | ... + ... | 3.647157187323204E15 | +| test.c:578:12:580:30 | ... + ... | 2.2025801541535236E23 | +| test.c:578:12:586:26 | ... + ... | 3.881087564774641E47 | +| test.c:578:12:587:61 | ... > ... | 1.0 | +| test.c:578:12:599:29 | ... ? ... : ... | 6.08636382738973E71 | +| test.c:578:16:578:29 | (...) | 6.0391698E7 | +| test.c:578:17:578:18 | ip | 6.0391698E7 | +| test.c:578:17:578:23 | ... * ... | 6.0391698E7 | +| test.c:578:17:578:28 | ... + ... | 6.0391698E7 | +| test.c:578:22:578:23 | 14 | 1.0 | +| test.c:578:22:578:23 | (unsigned int)... | 1.0 | +| test.c:578:27:578:28 | 32 | 1.0 | +| test.c:578:27:578:28 | (unsigned int)... | 1.0 | +| test.c:579:13:579:30 | (...) | 6.0391698E7 | +| test.c:579:14:579:14 | 2 | 1.0 | +| test.c:579:14:579:14 | (unsigned int)... | 1.0 | +| test.c:579:14:579:19 | ... * ... | 6.0391698E7 | +| test.c:579:14:579:24 | ... * ... | 6.0391698E7 | +| test.c:579:14:579:29 | ... + ... | 6.0391698E7 | +| test.c:579:18:579:19 | ip | 6.0391698E7 | +| test.c:579:23:579:24 | 14 | 1.0 | +| test.c:579:23:579:24 | (unsigned int)... | 1.0 | +| test.c:579:28:579:29 | 32 | 1.0 | +| test.c:579:28:579:29 | (unsigned int)... | 1.0 | +| test.c:580:13:580:13 | 2 | 1.0 | +| test.c:580:13:580:13 | (unsigned int)... | 1.0 | +| test.c:580:13:580:30 | ... * ... | 6.0391698E7 | +| test.c:580:17:580:30 | (...) | 6.0391698E7 | +| test.c:580:18:580:19 | ip | 6.0391698E7 | +| test.c:580:18:580:24 | ... * ... | 6.0391698E7 | +| test.c:580:18:580:29 | ... + ... | 6.0391698E7 | +| test.c:580:23:580:24 | 14 | 1.0 | +| test.c:580:23:580:24 | (unsigned int)... | 1.0 | +| test.c:580:28:580:29 | 64 | 1.0 | +| test.c:580:28:580:29 | (unsigned int)... | 1.0 | +| test.c:581:13:586:26 | (...) | 1.7620641670887053E24 | +| test.c:581:14:581:25 | (...) | 6.0391698E7 | +| test.c:581:14:581:30 | ... * ... | 6.0391698E7 | +| test.c:581:14:582:63 | ... > ... | 1.0 | +| test.c:581:14:586:25 | ... ? ... : ... | 1.7620641670887053E24 | +| test.c:581:15:581:15 | 2 | 1.0 | +| test.c:581:15:581:15 | (unsigned int)... | 1.0 | +| test.c:581:15:581:20 | ... * ... | 6.0391698E7 | +| test.c:581:15:581:24 | ... + ... | 6.0391698E7 | +| test.c:581:19:581:20 | ip | 6.0391698E7 | +| test.c:581:24:581:24 | 1 | 1.0 | +| test.c:581:24:581:24 | (unsigned int)... | 1.0 | +| test.c:581:29:581:30 | 14 | 1.0 | +| test.c:581:29:581:30 | (unsigned int)... | 1.0 | +| test.c:582:13:582:63 | (...) | 3.647157187323204E15 | +| test.c:582:14:582:15 | 14 | 1.0 | +| test.c:582:14:582:15 | (unsigned int)... | 1.0 | +| test.c:582:14:582:26 | ... * ... | 6.0391698E7 | +| test.c:582:14:582:36 | ... > ... | 1.0 | +| test.c:582:14:582:62 | ... ? ... : ... | 3.647157187323204E15 | +| test.c:582:19:582:26 | (...) | 6.0391698E7 | | test.c:582:20:582:20 | 2 | 1.0 | | test.c:582:20:582:20 | (unsigned int)... | 1.0 | -| test.c:582:20:582:25 | ... * ... | 1.449400765E9 | -| test.c:582:20:582:29 | ... + ... | 1.449400765E9 | -| test.c:582:24:582:25 | ip | 1.449400765E9 | -| test.c:582:29:582:29 | 1 | 1.0 | -| test.c:582:29:582:29 | (unsigned int)... | 1.0 | -| test.c:582:34:582:35 | 14 | 1.0 | -| test.c:582:34:582:35 | (unsigned int)... | 1.0 | -| test.c:583:19:583:20 | 14 | 1.0 | -| test.c:583:19:583:20 | (unsigned int)... | 1.0 | -| test.c:583:19:583:31 | ... * ... | 1.449400765E9 | -| test.c:583:19:583:41 | ... > ... | 1.0 | -| test.c:583:19:585:27 | ... ? ... : ... | 2.1007625775825853E18 | -| test.c:583:24:583:31 | (...) | 1.449400765E9 | -| test.c:583:25:583:25 | 2 | 1.0 | -| test.c:583:25:583:25 | (unsigned int)... | 1.0 | -| test.c:583:25:583:30 | ... * ... | 1.449400765E9 | -| test.c:583:29:583:30 | ip | 1.449400765E9 | -| test.c:583:35:583:36 | 17 | 1.0 | -| test.c:583:35:583:36 | (unsigned int)... | 1.0 | -| test.c:583:35:583:41 | ... * ... | 1.449400765E9 | -| test.c:583:40:583:41 | ip | 1.449400765E9 | -| test.c:584:21:584:22 | 14 | 1.0 | -| test.c:584:21:584:22 | (unsigned int)... | 1.0 | -| test.c:584:21:584:33 | ... * ... | 1.449400765E9 | -| test.c:584:26:584:33 | (...) | 1.449400765E9 | -| test.c:584:27:584:27 | 2 | 1.0 | -| test.c:584:27:584:27 | (unsigned int)... | 1.0 | -| test.c:584:27:584:32 | ... * ... | 1.449400765E9 | -| test.c:584:31:584:32 | ip | 1.449400765E9 | -| test.c:585:21:585:22 | 14 | 1.0 | -| test.c:585:21:585:22 | (unsigned int)... | 1.0 | -| test.c:585:21:585:27 | ... * ... | 1.449400765E9 | -| test.c:585:26:585:27 | ip | 1.449400765E9 | -| test.c:586:15:586:16 | 14 | 1.0 | -| test.c:586:15:586:16 | (unsigned int)... | 1.0 | -| test.c:586:15:586:21 | ... * ... | 7.24700382E8 | -| test.c:586:15:586:37 | ... > ... | 1.0 | -| test.c:586:15:588:29 | ... ? ... : ... | 5.251906436709459E17 | -| test.c:586:20:586:21 | ip | 7.24700382E8 | -| test.c:586:25:586:32 | (...) | 7.24700382E8 | -| test.c:586:25:586:37 | ... * ... | 7.24700382E8 | -| test.c:586:26:586:27 | ip | 7.24700382E8 | -| test.c:586:26:586:31 | ... + ... | 7.24700382E8 | -| test.c:586:31:586:31 | 1 | 1.0 | -| test.c:586:31:586:31 | (unsigned int)... | 1.0 | -| test.c:586:36:586:37 | 17 | 1.0 | -| test.c:586:36:586:37 | (unsigned int)... | 1.0 | -| test.c:587:17:587:18 | 14 | 1.0 | -| test.c:587:17:587:18 | (unsigned int)... | 1.0 | -| test.c:587:17:587:23 | ... * ... | 7.24700382E8 | -| test.c:587:22:587:23 | ip | 7.24700382E8 | -| test.c:588:17:588:24 | (...) | 7.24700382E8 | -| test.c:588:17:588:29 | ... * ... | 7.24700382E8 | -| test.c:588:18:588:19 | ip | 7.24700382E8 | -| test.c:588:18:588:23 | ... + ... | 7.24700382E8 | -| test.c:588:23:588:23 | 1 | 1.0 | -| test.c:588:23:588:23 | (unsigned int)... | 1.0 | -| test.c:588:28:588:29 | 14 | 1.0 | -| test.c:588:28:588:29 | (unsigned int)... | 1.0 | -| test.c:589:11:589:11 | 2 | 1.0 | -| test.c:589:11:589:11 | (unsigned int)... | 1.0 | -| test.c:589:11:589:28 | ... * ... | 5.797603059E9 | -| test.c:589:11:609:46 | ... + ... | 9.943431528813442E94 | -| test.c:589:15:589:28 | (...) | 5.797603059E9 | -| test.c:589:16:589:17 | ip | 5.797603059E9 | -| test.c:589:16:589:22 | ... * ... | 5.797603059E9 | -| test.c:589:16:589:27 | ... + ... | 5.797603059E9 | -| test.c:589:21:589:22 | 14 | 1.0 | -| test.c:589:21:589:22 | (unsigned int)... | 1.0 | -| test.c:589:26:589:27 | 32 | 1.0 | -| test.c:589:26:589:27 | (unsigned int)... | 1.0 | -| test.c:590:11:609:46 | (...) | 1.715093535659983E85 | -| test.c:590:12:590:12 | 4 | 1.0 | -| test.c:590:12:590:12 | (unsigned int)... | 1.0 | -| test.c:590:12:590:29 | ... * ... | 5.797603059E9 | -| test.c:590:12:591:30 | ... + ... | 3.361220122972616E19 | -| test.c:590:12:592:30 | ... + ... | 1.9487020066918396E29 | -| test.c:590:12:598:26 | ... + ... | 3.0379516094938436E59 | -| test.c:590:12:599:41 | ... > ... | 1.0 | -| test.c:590:12:609:45 | ... ? ... : ... | 1.715093535659983E85 | -| test.c:590:16:590:29 | (...) | 5.797603059E9 | -| test.c:590:17:590:18 | ip | 5.797603059E9 | -| test.c:590:17:590:23 | ... * ... | 5.797603059E9 | -| test.c:590:17:590:28 | ... + ... | 5.797603059E9 | -| test.c:590:22:590:23 | 14 | 1.0 | -| test.c:590:22:590:23 | (unsigned int)... | 1.0 | -| test.c:590:27:590:28 | 32 | 1.0 | -| test.c:590:27:590:28 | (unsigned int)... | 1.0 | -| test.c:591:13:591:30 | (...) | 5.797603059E9 | -| test.c:591:14:591:14 | 2 | 1.0 | -| test.c:591:14:591:14 | (unsigned int)... | 1.0 | -| test.c:591:14:591:19 | ... * ... | 5.797603059E9 | -| test.c:591:14:591:24 | ... * ... | 5.797603059E9 | -| test.c:591:14:591:29 | ... + ... | 5.797603059E9 | -| test.c:591:18:591:19 | ip | 5.797603059E9 | -| test.c:591:23:591:24 | 14 | 1.0 | -| test.c:591:23:591:24 | (unsigned int)... | 1.0 | -| test.c:591:28:591:29 | 32 | 1.0 | -| test.c:591:28:591:29 | (unsigned int)... | 1.0 | -| test.c:592:13:592:13 | 2 | 1.0 | -| test.c:592:13:592:13 | (unsigned int)... | 1.0 | -| test.c:592:13:592:30 | ... * ... | 5.797603059E9 | -| test.c:592:17:592:30 | (...) | 5.797603059E9 | -| test.c:592:18:592:19 | ip | 5.797603059E9 | -| test.c:592:18:592:24 | ... * ... | 5.797603059E9 | -| test.c:592:18:592:29 | ... + ... | 5.797603059E9 | -| test.c:592:23:592:24 | 14 | 1.0 | -| test.c:592:23:592:24 | (unsigned int)... | 1.0 | -| test.c:592:28:592:29 | 64 | 1.0 | -| test.c:592:28:592:29 | (unsigned int)... | 1.0 | -| test.c:593:13:598:26 | (...) | 1.558961605756818E30 | -| test.c:593:14:593:25 | (...) | 5.797603059E9 | -| test.c:593:14:593:30 | ... * ... | 5.797603059E9 | -| test.c:593:14:594:63 | ... > ... | 1.0 | -| test.c:593:14:598:25 | ... ? ... : ... | 1.558961605756818E30 | -| test.c:593:15:593:15 | 2 | 1.0 | -| test.c:593:15:593:15 | (unsigned int)... | 1.0 | -| test.c:593:15:593:20 | ... * ... | 5.797603059E9 | -| test.c:593:15:593:24 | ... + ... | 5.797603059E9 | -| test.c:593:19:593:20 | ip | 5.797603059E9 | -| test.c:593:24:593:24 | 1 | 1.0 | -| test.c:593:24:593:24 | (unsigned int)... | 1.0 | -| test.c:593:29:593:30 | 14 | 1.0 | -| test.c:593:29:593:30 | (unsigned int)... | 1.0 | -| test.c:594:13:594:63 | (...) | 3.361220122972616E19 | -| test.c:594:14:594:15 | 14 | 1.0 | -| test.c:594:14:594:15 | (unsigned int)... | 1.0 | -| test.c:594:14:594:26 | ... * ... | 5.797603059E9 | -| test.c:594:14:594:36 | ... > ... | 1.0 | -| test.c:594:14:594:62 | ... ? ... : ... | 3.361220122972616E19 | -| test.c:594:19:594:26 | (...) | 5.797603059E9 | -| test.c:594:20:594:20 | 2 | 1.0 | -| test.c:594:20:594:20 | (unsigned int)... | 1.0 | -| test.c:594:20:594:25 | ... * ... | 5.797603059E9 | -| test.c:594:24:594:25 | ip | 5.797603059E9 | -| test.c:594:30:594:31 | 17 | 1.0 | -| test.c:594:30:594:31 | (unsigned int)... | 1.0 | -| test.c:594:30:594:36 | ... * ... | 5.797603059E9 | -| test.c:594:35:594:36 | ip | 5.797603059E9 | -| test.c:594:40:594:41 | 17 | 1.0 | -| test.c:594:40:594:41 | (unsigned int)... | 1.0 | -| test.c:594:40:594:52 | ... * ... | 5.797603059E9 | -| test.c:594:45:594:52 | (...) | 5.797603059E9 | -| test.c:594:46:594:46 | 2 | 1.0 | -| test.c:594:46:594:46 | (unsigned int)... | 1.0 | -| test.c:594:46:594:51 | ... * ... | 5.797603059E9 | -| test.c:594:50:594:51 | ip | 5.797603059E9 | -| test.c:594:56:594:57 | 17 | 1.0 | -| test.c:594:56:594:57 | (unsigned int)... | 1.0 | -| test.c:594:56:594:62 | ... * ... | 5.797603059E9 | -| test.c:594:61:594:62 | ip | 5.797603059E9 | -| test.c:595:17:595:28 | (...) | 1.1595206119E10 | -| test.c:595:17:595:33 | ... * ... | 1.1595206119E10 | -| test.c:595:18:595:18 | 2 | 1.0 | -| test.c:595:18:595:18 | (unsigned int)... | 1.0 | -| test.c:595:18:595:23 | ... * ... | 1.1595206119E10 | -| test.c:595:18:595:27 | ... + ... | 1.1595206119E10 | -| test.c:595:22:595:23 | ip | 1.1595206119E10 | -| test.c:595:27:595:27 | 1 | 1.0 | +| test.c:582:20:582:25 | ... * ... | 6.0391698E7 | +| test.c:582:24:582:25 | ip | 6.0391698E7 | +| test.c:582:30:582:31 | 17 | 1.0 | +| test.c:582:30:582:31 | (unsigned int)... | 1.0 | +| test.c:582:30:582:36 | ... * ... | 6.0391698E7 | +| test.c:582:35:582:36 | ip | 6.0391698E7 | +| test.c:582:40:582:41 | 17 | 1.0 | +| test.c:582:40:582:41 | (unsigned int)... | 1.0 | +| test.c:582:40:582:52 | ... * ... | 6.0391698E7 | +| test.c:582:45:582:52 | (...) | 6.0391698E7 | +| test.c:582:46:582:46 | 2 | 1.0 | +| test.c:582:46:582:46 | (unsigned int)... | 1.0 | +| test.c:582:46:582:51 | ... * ... | 6.0391698E7 | +| test.c:582:50:582:51 | ip | 6.0391698E7 | +| test.c:582:56:582:57 | 17 | 1.0 | +| test.c:582:56:582:57 | (unsigned int)... | 1.0 | +| test.c:582:56:582:62 | ... * ... | 6.0391698E7 | +| test.c:582:61:582:62 | ip | 6.0391698E7 | +| test.c:583:17:583:28 | (...) | 1.20783397E8 | +| test.c:583:17:583:33 | ... * ... | 1.20783397E8 | +| test.c:583:18:583:18 | 2 | 1.0 | +| test.c:583:18:583:18 | (unsigned int)... | 1.0 | +| test.c:583:18:583:23 | ... * ... | 1.20783397E8 | +| test.c:583:18:583:27 | ... + ... | 1.20783397E8 | +| test.c:583:22:583:23 | ip | 1.20783397E8 | +| test.c:583:27:583:27 | 1 | 1.0 | +| test.c:583:27:583:27 | (unsigned int)... | 1.0 | +| test.c:583:32:583:33 | 14 | 1.0 | +| test.c:583:32:583:33 | (unsigned int)... | 1.0 | +| test.c:584:17:584:18 | 14 | 1.0 | +| test.c:584:17:584:18 | (unsigned int)... | 1.0 | +| test.c:584:17:584:29 | ... * ... | 1.20783397E8 | +| test.c:584:17:584:39 | ... > ... | 1.0 | +| test.c:584:17:586:25 | ... ? ... : ... | 1.4588628990859608E16 | +| test.c:584:22:584:29 | (...) | 1.20783397E8 | +| test.c:584:23:584:23 | 2 | 1.0 | +| test.c:584:23:584:23 | (unsigned int)... | 1.0 | +| test.c:584:23:584:28 | ... * ... | 1.20783397E8 | +| test.c:584:27:584:28 | ip | 1.20783397E8 | +| test.c:584:33:584:34 | 17 | 1.0 | +| test.c:584:33:584:34 | (unsigned int)... | 1.0 | +| test.c:584:33:584:39 | ... * ... | 1.20783397E8 | +| test.c:584:38:584:39 | ip | 1.20783397E8 | +| test.c:585:19:585:20 | 14 | 1.0 | +| test.c:585:19:585:20 | (unsigned int)... | 1.0 | +| test.c:585:19:585:31 | ... * ... | 1.20783397E8 | +| test.c:585:24:585:31 | (...) | 1.20783397E8 | +| test.c:585:25:585:25 | 2 | 1.0 | +| test.c:585:25:585:25 | (unsigned int)... | 1.0 | +| test.c:585:25:585:30 | ... * ... | 1.20783397E8 | +| test.c:585:29:585:30 | ip | 1.20783397E8 | +| test.c:586:19:586:20 | 14 | 1.0 | +| test.c:586:19:586:20 | (unsigned int)... | 1.0 | +| test.c:586:19:586:25 | ... * ... | 1.20783397E8 | +| test.c:586:24:586:25 | ip | 1.20783397E8 | +| test.c:587:11:587:61 | (...) | 1.3129766091773648E17 | +| test.c:587:12:587:13 | 14 | 1.0 | +| test.c:587:12:587:13 | (unsigned int)... | 1.0 | +| test.c:587:12:587:18 | ... * ... | 3.62350191E8 | +| test.c:587:12:587:34 | ... > ... | 1.0 | +| test.c:587:12:587:60 | ... ? ... : ... | 1.3129766091773648E17 | +| test.c:587:17:587:18 | ip | 3.62350191E8 | +| test.c:587:22:587:29 | (...) | 3.62350191E8 | +| test.c:587:22:587:34 | ... * ... | 3.62350191E8 | +| test.c:587:23:587:24 | ip | 3.62350191E8 | +| test.c:587:23:587:28 | ... + ... | 3.62350191E8 | +| test.c:587:28:587:28 | 1 | 1.0 | +| test.c:587:28:587:28 | (unsigned int)... | 1.0 | +| test.c:587:33:587:34 | 17 | 1.0 | +| test.c:587:33:587:34 | (unsigned int)... | 1.0 | +| test.c:587:38:587:39 | 17 | 1.0 | +| test.c:587:38:587:39 | (unsigned int)... | 1.0 | +| test.c:587:38:587:44 | ... * ... | 3.62350191E8 | +| test.c:587:43:587:44 | ip | 3.62350191E8 | +| test.c:587:48:587:55 | (...) | 3.62350191E8 | +| test.c:587:48:587:60 | ... * ... | 3.62350191E8 | +| test.c:587:49:587:50 | ip | 3.62350191E8 | +| test.c:587:49:587:54 | ... + ... | 3.62350191E8 | +| test.c:587:54:587:54 | 1 | 1.0 | +| test.c:587:54:587:54 | (unsigned int)... | 1.0 | +| test.c:587:59:587:60 | 17 | 1.0 | +| test.c:587:59:587:60 | (unsigned int)... | 1.0 | +| test.c:588:15:588:15 | 4 | 1.0 | +| test.c:588:15:588:15 | (unsigned int)... | 1.0 | +| test.c:588:15:588:32 | ... * ... | 7.24700382E8 | +| test.c:588:15:589:32 | ... + ... | 5.251906436709459E17 | +| test.c:588:15:590:32 | ... + ... | 3.806058600911604E26 | +| test.c:588:15:596:28 | ... + ... | 1.1588865682845433E54 | +| test.c:588:19:588:32 | (...) | 7.24700382E8 | +| test.c:588:20:588:21 | ip | 7.24700382E8 | +| test.c:588:20:588:26 | ... * ... | 7.24700382E8 | +| test.c:588:20:588:31 | ... + ... | 7.24700382E8 | +| test.c:588:25:588:26 | 14 | 1.0 | +| test.c:588:25:588:26 | (unsigned int)... | 1.0 | +| test.c:588:30:588:31 | 32 | 1.0 | +| test.c:588:30:588:31 | (unsigned int)... | 1.0 | +| test.c:589:15:589:32 | (...) | 7.24700382E8 | +| test.c:589:16:589:16 | 2 | 1.0 | +| test.c:589:16:589:16 | (unsigned int)... | 1.0 | +| test.c:589:16:589:21 | ... * ... | 7.24700382E8 | +| test.c:589:16:589:26 | ... * ... | 7.24700382E8 | +| test.c:589:16:589:31 | ... + ... | 7.24700382E8 | +| test.c:589:20:589:21 | ip | 7.24700382E8 | +| test.c:589:25:589:26 | 14 | 1.0 | +| test.c:589:25:589:26 | (unsigned int)... | 1.0 | +| test.c:589:30:589:31 | 32 | 1.0 | +| test.c:589:30:589:31 | (unsigned int)... | 1.0 | +| test.c:590:15:590:15 | 2 | 1.0 | +| test.c:590:15:590:15 | (unsigned int)... | 1.0 | +| test.c:590:15:590:32 | ... * ... | 7.24700382E8 | +| test.c:590:19:590:32 | (...) | 7.24700382E8 | +| test.c:590:20:590:21 | ip | 7.24700382E8 | +| test.c:590:20:590:26 | ... * ... | 7.24700382E8 | +| test.c:590:20:590:31 | ... + ... | 7.24700382E8 | +| test.c:590:25:590:26 | 14 | 1.0 | +| test.c:590:25:590:26 | (unsigned int)... | 1.0 | +| test.c:590:30:590:31 | 64 | 1.0 | +| test.c:590:30:590:31 | (unsigned int)... | 1.0 | +| test.c:591:15:596:28 | (...) | 3.044846887031571E27 | +| test.c:591:16:591:27 | (...) | 7.24700382E8 | +| test.c:591:16:591:32 | ... * ... | 7.24700382E8 | +| test.c:591:16:592:65 | ... > ... | 1.0 | +| test.c:591:16:596:27 | ... ? ... : ... | 3.044846887031571E27 | +| test.c:591:17:591:17 | 2 | 1.0 | +| test.c:591:17:591:17 | (unsigned int)... | 1.0 | +| test.c:591:17:591:22 | ... * ... | 7.24700382E8 | +| test.c:591:17:591:26 | ... + ... | 7.24700382E8 | +| test.c:591:21:591:22 | ip | 7.24700382E8 | +| test.c:591:26:591:26 | 1 | 1.0 | +| test.c:591:26:591:26 | (unsigned int)... | 1.0 | +| test.c:591:31:591:32 | 14 | 1.0 | +| test.c:591:31:591:32 | (unsigned int)... | 1.0 | +| test.c:592:15:592:65 | (...) | 5.251906436709459E17 | +| test.c:592:16:592:17 | 14 | 1.0 | +| test.c:592:16:592:17 | (unsigned int)... | 1.0 | +| test.c:592:16:592:28 | ... * ... | 7.24700382E8 | +| test.c:592:16:592:38 | ... > ... | 1.0 | +| test.c:592:16:592:64 | ... ? ... : ... | 5.251906436709459E17 | +| test.c:592:21:592:28 | (...) | 7.24700382E8 | +| test.c:592:22:592:22 | 2 | 1.0 | +| test.c:592:22:592:22 | (unsigned int)... | 1.0 | +| test.c:592:22:592:27 | ... * ... | 7.24700382E8 | +| test.c:592:26:592:27 | ip | 7.24700382E8 | +| test.c:592:32:592:33 | 17 | 1.0 | +| test.c:592:32:592:33 | (unsigned int)... | 1.0 | +| test.c:592:32:592:38 | ... * ... | 7.24700382E8 | +| test.c:592:37:592:38 | ip | 7.24700382E8 | +| test.c:592:42:592:43 | 17 | 1.0 | +| test.c:592:42:592:43 | (unsigned int)... | 1.0 | +| test.c:592:42:592:54 | ... * ... | 7.24700382E8 | +| test.c:592:47:592:54 | (...) | 7.24700382E8 | +| test.c:592:48:592:48 | 2 | 1.0 | +| test.c:592:48:592:48 | (unsigned int)... | 1.0 | +| test.c:592:48:592:53 | ... * ... | 7.24700382E8 | +| test.c:592:52:592:53 | ip | 7.24700382E8 | +| test.c:592:58:592:59 | 17 | 1.0 | +| test.c:592:58:592:59 | (unsigned int)... | 1.0 | +| test.c:592:58:592:64 | ... * ... | 7.24700382E8 | +| test.c:592:63:592:64 | ip | 7.24700382E8 | +| test.c:593:19:593:30 | (...) | 1.449400765E9 | +| test.c:593:19:593:35 | ... * ... | 1.449400765E9 | +| test.c:593:20:593:20 | 2 | 1.0 | +| test.c:593:20:593:20 | (unsigned int)... | 1.0 | +| test.c:593:20:593:25 | ... * ... | 1.449400765E9 | +| test.c:593:20:593:29 | ... + ... | 1.449400765E9 | +| test.c:593:24:593:25 | ip | 1.449400765E9 | +| test.c:593:29:593:29 | 1 | 1.0 | +| test.c:593:29:593:29 | (unsigned int)... | 1.0 | +| test.c:593:34:593:35 | 14 | 1.0 | +| test.c:593:34:593:35 | (unsigned int)... | 1.0 | +| test.c:594:19:594:20 | 14 | 1.0 | +| test.c:594:19:594:20 | (unsigned int)... | 1.0 | +| test.c:594:19:594:31 | ... * ... | 1.449400765E9 | +| test.c:594:19:594:41 | ... > ... | 1.0 | +| test.c:594:19:596:27 | ... ? ... : ... | 2.1007625775825853E18 | +| test.c:594:24:594:31 | (...) | 1.449400765E9 | +| test.c:594:25:594:25 | 2 | 1.0 | +| test.c:594:25:594:25 | (unsigned int)... | 1.0 | +| test.c:594:25:594:30 | ... * ... | 1.449400765E9 | +| test.c:594:29:594:30 | ip | 1.449400765E9 | +| test.c:594:35:594:36 | 17 | 1.0 | +| test.c:594:35:594:36 | (unsigned int)... | 1.0 | +| test.c:594:35:594:41 | ... * ... | 1.449400765E9 | +| test.c:594:40:594:41 | ip | 1.449400765E9 | +| test.c:595:21:595:22 | 14 | 1.0 | +| test.c:595:21:595:22 | (unsigned int)... | 1.0 | +| test.c:595:21:595:33 | ... * ... | 1.449400765E9 | +| test.c:595:26:595:33 | (...) | 1.449400765E9 | +| test.c:595:27:595:27 | 2 | 1.0 | | test.c:595:27:595:27 | (unsigned int)... | 1.0 | -| test.c:595:32:595:33 | 14 | 1.0 | -| test.c:595:32:595:33 | (unsigned int)... | 1.0 | -| test.c:596:17:596:18 | 14 | 1.0 | -| test.c:596:17:596:18 | (unsigned int)... | 1.0 | -| test.c:596:17:596:29 | ... * ... | 1.1595206119E10 | -| test.c:596:17:596:39 | ... > ... | 1.0 | -| test.c:596:17:598:25 | ... ? ... : ... | 1.3444880494209504E20 | -| test.c:596:22:596:29 | (...) | 1.1595206119E10 | -| test.c:596:23:596:23 | 2 | 1.0 | -| test.c:596:23:596:23 | (unsigned int)... | 1.0 | -| test.c:596:23:596:28 | ... * ... | 1.1595206119E10 | -| test.c:596:27:596:28 | ip | 1.1595206119E10 | -| test.c:596:33:596:34 | 17 | 1.0 | -| test.c:596:33:596:34 | (unsigned int)... | 1.0 | -| test.c:596:33:596:39 | ... * ... | 1.1595206119E10 | -| test.c:596:38:596:39 | ip | 1.1595206119E10 | -| test.c:597:19:597:20 | 14 | 1.0 | -| test.c:597:19:597:20 | (unsigned int)... | 1.0 | -| test.c:597:19:597:31 | ... * ... | 1.1595206119E10 | -| test.c:597:24:597:31 | (...) | 1.1595206119E10 | -| test.c:597:25:597:25 | 2 | 1.0 | -| test.c:597:25:597:25 | (unsigned int)... | 1.0 | -| test.c:597:25:597:30 | ... * ... | 1.1595206119E10 | -| test.c:597:29:597:30 | ip | 1.1595206119E10 | -| test.c:598:19:598:20 | 14 | 1.0 | -| test.c:598:19:598:20 | (unsigned int)... | 1.0 | -| test.c:598:19:598:25 | ... * ... | 1.1595206119E10 | -| test.c:598:24:598:25 | ip | 1.1595206119E10 | -| test.c:599:11:599:11 | 2 | 1.0 | -| test.c:599:11:599:11 | (unsigned int)... | 1.0 | -| test.c:599:11:599:16 | ... * ... | 3.4785618357E10 | -| test.c:599:11:599:21 | ... * ... | 3.4785618357E10 | -| test.c:599:11:599:41 | ... + ... | 1.2100392444788552E21 | -| test.c:599:15:599:16 | ip | 3.4785618357E10 | -| test.c:599:20:599:21 | 14 | 1.0 | -| test.c:599:20:599:21 | (unsigned int)... | 1.0 | -| test.c:599:25:599:36 | (...) | 3.4785618357E10 | -| test.c:599:25:599:41 | ... * ... | 3.4785618357E10 | -| test.c:599:26:599:26 | 2 | 1.0 | -| test.c:599:26:599:26 | (unsigned int)... | 1.0 | -| test.c:599:26:599:31 | ... * ... | 3.4785618357E10 | -| test.c:599:26:599:35 | ... + ... | 3.4785618357E10 | -| test.c:599:30:599:31 | ip | 3.4785618357E10 | -| test.c:599:35:599:35 | 1 | 1.0 | -| test.c:599:35:599:35 | (unsigned int)... | 1.0 | -| test.c:599:40:599:41 | 17 | 1.0 | -| test.c:599:40:599:41 | (unsigned int)... | 1.0 | -| test.c:600:15:600:15 | 4 | 1.0 | -| test.c:600:15:600:15 | (unsigned int)... | 1.0 | -| test.c:600:15:600:32 | ... * ... | 3.4785618357E10 | -| test.c:600:15:601:32 | ... + ... | 1.2100392444788552E21 | -| test.c:600:15:602:32 | ... + ... | 4.209196335543408E31 | -| test.c:600:15:608:28 | ... + ... | 1.417386703353284E64 | -| test.c:600:19:600:32 | (...) | 3.4785618357E10 | -| test.c:600:20:600:21 | ip | 3.4785618357E10 | -| test.c:600:20:600:26 | ... * ... | 3.4785618357E10 | -| test.c:600:20:600:31 | ... + ... | 3.4785618357E10 | -| test.c:600:25:600:26 | 14 | 1.0 | -| test.c:600:25:600:26 | (unsigned int)... | 1.0 | -| test.c:600:30:600:31 | 32 | 1.0 | -| test.c:600:30:600:31 | (unsigned int)... | 1.0 | -| test.c:601:15:601:32 | (...) | 3.4785618357E10 | -| test.c:601:16:601:16 | 2 | 1.0 | -| test.c:601:16:601:16 | (unsigned int)... | 1.0 | -| test.c:601:16:601:21 | ... * ... | 3.4785618357E10 | -| test.c:601:16:601:26 | ... * ... | 3.4785618357E10 | -| test.c:601:16:601:31 | ... + ... | 3.4785618357E10 | -| test.c:601:20:601:21 | ip | 3.4785618357E10 | -| test.c:601:25:601:26 | 14 | 1.0 | -| test.c:601:25:601:26 | (unsigned int)... | 1.0 | -| test.c:601:30:601:31 | 32 | 1.0 | -| test.c:601:30:601:31 | (unsigned int)... | 1.0 | -| test.c:602:15:602:15 | 2 | 1.0 | -| test.c:602:15:602:15 | (unsigned int)... | 1.0 | -| test.c:602:15:602:32 | ... * ... | 3.4785618357E10 | -| test.c:602:19:602:32 | (...) | 3.4785618357E10 | -| test.c:602:20:602:21 | ip | 3.4785618357E10 | -| test.c:602:20:602:26 | ... * ... | 3.4785618357E10 | -| test.c:602:20:602:31 | ... + ... | 3.4785618357E10 | -| test.c:602:25:602:26 | 14 | 1.0 | -| test.c:602:25:602:26 | (unsigned int)... | 1.0 | -| test.c:602:30:602:31 | 64 | 1.0 | -| test.c:602:30:602:31 | (unsigned int)... | 1.0 | -| test.c:603:15:608:28 | (...) | 3.367357068579931E32 | -| test.c:603:16:603:27 | (...) | 3.4785618357E10 | -| test.c:603:16:603:32 | ... * ... | 3.4785618357E10 | -| test.c:603:16:604:65 | ... > ... | 1.0 | -| test.c:603:16:608:27 | ... ? ... : ... | 3.367357068579931E32 | -| test.c:603:17:603:17 | 2 | 1.0 | -| test.c:603:17:603:17 | (unsigned int)... | 1.0 | -| test.c:603:17:603:22 | ... * ... | 3.4785618357E10 | -| test.c:603:17:603:26 | ... + ... | 3.4785618357E10 | -| test.c:603:21:603:22 | ip | 3.4785618357E10 | -| test.c:603:26:603:26 | 1 | 1.0 | -| test.c:603:26:603:26 | (unsigned int)... | 1.0 | -| test.c:603:31:603:32 | 14 | 1.0 | -| test.c:603:31:603:32 | (unsigned int)... | 1.0 | -| test.c:604:15:604:65 | (...) | 1.2100392444788552E21 | -| test.c:604:16:604:17 | 14 | 1.0 | -| test.c:604:16:604:17 | (unsigned int)... | 1.0 | -| test.c:604:16:604:28 | ... * ... | 3.4785618357E10 | -| test.c:604:16:604:38 | ... > ... | 1.0 | -| test.c:604:16:604:64 | ... ? ... : ... | 1.2100392444788552E21 | -| test.c:604:21:604:28 | (...) | 3.4785618357E10 | -| test.c:604:22:604:22 | 2 | 1.0 | -| test.c:604:22:604:22 | (unsigned int)... | 1.0 | -| test.c:604:22:604:27 | ... * ... | 3.4785618357E10 | -| test.c:604:26:604:27 | ip | 3.4785618357E10 | -| test.c:604:32:604:33 | 17 | 1.0 | -| test.c:604:32:604:33 | (unsigned int)... | 1.0 | -| test.c:604:32:604:38 | ... * ... | 3.4785618357E10 | -| test.c:604:37:604:38 | ip | 3.4785618357E10 | -| test.c:604:42:604:43 | 17 | 1.0 | -| test.c:604:42:604:43 | (unsigned int)... | 1.0 | -| test.c:604:42:604:54 | ... * ... | 3.4785618357E10 | -| test.c:604:47:604:54 | (...) | 3.4785618357E10 | -| test.c:604:48:604:48 | 2 | 1.0 | -| test.c:604:48:604:48 | (unsigned int)... | 1.0 | -| test.c:604:48:604:53 | ... * ... | 3.4785618357E10 | -| test.c:604:52:604:53 | ip | 3.4785618357E10 | -| test.c:604:58:604:59 | 17 | 1.0 | -| test.c:604:58:604:59 | (unsigned int)... | 1.0 | -| test.c:604:58:604:64 | ... * ... | 3.4785618357E10 | -| test.c:604:63:604:64 | ip | 3.4785618357E10 | -| test.c:605:19:605:30 | (...) | 6.9571236715E10 | -| test.c:605:19:605:35 | ... * ... | 6.9571236715E10 | +| test.c:595:27:595:32 | ... * ... | 1.449400765E9 | +| test.c:595:31:595:32 | ip | 1.449400765E9 | +| test.c:596:21:596:22 | 14 | 1.0 | +| test.c:596:21:596:22 | (unsigned int)... | 1.0 | +| test.c:596:21:596:27 | ... * ... | 1.449400765E9 | +| test.c:596:26:596:27 | ip | 1.449400765E9 | +| test.c:597:15:597:16 | 14 | 1.0 | +| test.c:597:15:597:16 | (unsigned int)... | 1.0 | +| test.c:597:15:597:21 | ... * ... | 7.24700382E8 | +| test.c:597:15:597:37 | ... > ... | 1.0 | +| test.c:597:15:599:29 | ... ? ... : ... | 5.251906436709459E17 | +| test.c:597:20:597:21 | ip | 7.24700382E8 | +| test.c:597:25:597:32 | (...) | 7.24700382E8 | +| test.c:597:25:597:37 | ... * ... | 7.24700382E8 | +| test.c:597:26:597:27 | ip | 7.24700382E8 | +| test.c:597:26:597:31 | ... + ... | 7.24700382E8 | +| test.c:597:31:597:31 | 1 | 1.0 | +| test.c:597:31:597:31 | (unsigned int)... | 1.0 | +| test.c:597:36:597:37 | 17 | 1.0 | +| test.c:597:36:597:37 | (unsigned int)... | 1.0 | +| test.c:598:17:598:18 | 14 | 1.0 | +| test.c:598:17:598:18 | (unsigned int)... | 1.0 | +| test.c:598:17:598:23 | ... * ... | 7.24700382E8 | +| test.c:598:22:598:23 | ip | 7.24700382E8 | +| test.c:599:17:599:24 | (...) | 7.24700382E8 | +| test.c:599:17:599:29 | ... * ... | 7.24700382E8 | +| test.c:599:18:599:19 | ip | 7.24700382E8 | +| test.c:599:18:599:23 | ... + ... | 7.24700382E8 | +| test.c:599:23:599:23 | 1 | 1.0 | +| test.c:599:23:599:23 | (unsigned int)... | 1.0 | +| test.c:599:28:599:29 | 14 | 1.0 | +| test.c:599:28:599:29 | (unsigned int)... | 1.0 | +| test.c:600:11:600:11 | 2 | 1.0 | +| test.c:600:11:600:11 | (unsigned int)... | 1.0 | +| test.c:600:11:600:28 | ... * ... | 5.797603059E9 | +| test.c:600:11:620:46 | ... + ... | 9.943431528813442E94 | +| test.c:600:15:600:28 | (...) | 5.797603059E9 | +| test.c:600:16:600:17 | ip | 5.797603059E9 | +| test.c:600:16:600:22 | ... * ... | 5.797603059E9 | +| test.c:600:16:600:27 | ... + ... | 5.797603059E9 | +| test.c:600:21:600:22 | 14 | 1.0 | +| test.c:600:21:600:22 | (unsigned int)... | 1.0 | +| test.c:600:26:600:27 | 32 | 1.0 | +| test.c:600:26:600:27 | (unsigned int)... | 1.0 | +| test.c:601:11:620:46 | (...) | 1.715093535659983E85 | +| test.c:601:12:601:12 | 4 | 1.0 | +| test.c:601:12:601:12 | (unsigned int)... | 1.0 | +| test.c:601:12:601:29 | ... * ... | 5.797603059E9 | +| test.c:601:12:602:30 | ... + ... | 3.361220122972616E19 | +| test.c:601:12:603:30 | ... + ... | 1.9487020066918396E29 | +| test.c:601:12:609:26 | ... + ... | 3.0379516094938436E59 | +| test.c:601:12:610:41 | ... > ... | 1.0 | +| test.c:601:12:620:45 | ... ? ... : ... | 1.715093535659983E85 | +| test.c:601:16:601:29 | (...) | 5.797603059E9 | +| test.c:601:17:601:18 | ip | 5.797603059E9 | +| test.c:601:17:601:23 | ... * ... | 5.797603059E9 | +| test.c:601:17:601:28 | ... + ... | 5.797603059E9 | +| test.c:601:22:601:23 | 14 | 1.0 | +| test.c:601:22:601:23 | (unsigned int)... | 1.0 | +| test.c:601:27:601:28 | 32 | 1.0 | +| test.c:601:27:601:28 | (unsigned int)... | 1.0 | +| test.c:602:13:602:30 | (...) | 5.797603059E9 | +| test.c:602:14:602:14 | 2 | 1.0 | +| test.c:602:14:602:14 | (unsigned int)... | 1.0 | +| test.c:602:14:602:19 | ... * ... | 5.797603059E9 | +| test.c:602:14:602:24 | ... * ... | 5.797603059E9 | +| test.c:602:14:602:29 | ... + ... | 5.797603059E9 | +| test.c:602:18:602:19 | ip | 5.797603059E9 | +| test.c:602:23:602:24 | 14 | 1.0 | +| test.c:602:23:602:24 | (unsigned int)... | 1.0 | +| test.c:602:28:602:29 | 32 | 1.0 | +| test.c:602:28:602:29 | (unsigned int)... | 1.0 | +| test.c:603:13:603:13 | 2 | 1.0 | +| test.c:603:13:603:13 | (unsigned int)... | 1.0 | +| test.c:603:13:603:30 | ... * ... | 5.797603059E9 | +| test.c:603:17:603:30 | (...) | 5.797603059E9 | +| test.c:603:18:603:19 | ip | 5.797603059E9 | +| test.c:603:18:603:24 | ... * ... | 5.797603059E9 | +| test.c:603:18:603:29 | ... + ... | 5.797603059E9 | +| test.c:603:23:603:24 | 14 | 1.0 | +| test.c:603:23:603:24 | (unsigned int)... | 1.0 | +| test.c:603:28:603:29 | 64 | 1.0 | +| test.c:603:28:603:29 | (unsigned int)... | 1.0 | +| test.c:604:13:609:26 | (...) | 1.558961605756818E30 | +| test.c:604:14:604:25 | (...) | 5.797603059E9 | +| test.c:604:14:604:30 | ... * ... | 5.797603059E9 | +| test.c:604:14:605:63 | ... > ... | 1.0 | +| test.c:604:14:609:25 | ... ? ... : ... | 1.558961605756818E30 | +| test.c:604:15:604:15 | 2 | 1.0 | +| test.c:604:15:604:15 | (unsigned int)... | 1.0 | +| test.c:604:15:604:20 | ... * ... | 5.797603059E9 | +| test.c:604:15:604:24 | ... + ... | 5.797603059E9 | +| test.c:604:19:604:20 | ip | 5.797603059E9 | +| test.c:604:24:604:24 | 1 | 1.0 | +| test.c:604:24:604:24 | (unsigned int)... | 1.0 | +| test.c:604:29:604:30 | 14 | 1.0 | +| test.c:604:29:604:30 | (unsigned int)... | 1.0 | +| test.c:605:13:605:63 | (...) | 3.361220122972616E19 | +| test.c:605:14:605:15 | 14 | 1.0 | +| test.c:605:14:605:15 | (unsigned int)... | 1.0 | +| test.c:605:14:605:26 | ... * ... | 5.797603059E9 | +| test.c:605:14:605:36 | ... > ... | 1.0 | +| test.c:605:14:605:62 | ... ? ... : ... | 3.361220122972616E19 | +| test.c:605:19:605:26 | (...) | 5.797603059E9 | | test.c:605:20:605:20 | 2 | 1.0 | | test.c:605:20:605:20 | (unsigned int)... | 1.0 | -| test.c:605:20:605:25 | ... * ... | 6.9571236715E10 | -| test.c:605:20:605:29 | ... + ... | 6.9571236715E10 | -| test.c:605:24:605:25 | ip | 6.9571236715E10 | -| test.c:605:29:605:29 | 1 | 1.0 | -| test.c:605:29:605:29 | (unsigned int)... | 1.0 | -| test.c:605:34:605:35 | 14 | 1.0 | -| test.c:605:34:605:35 | (unsigned int)... | 1.0 | -| test.c:606:19:606:20 | 14 | 1.0 | -| test.c:606:19:606:20 | (unsigned int)... | 1.0 | -| test.c:606:19:606:31 | ... * ... | 6.9571236715E10 | -| test.c:606:19:606:41 | ... > ... | 1.0 | -| test.c:606:19:608:27 | ... ? ... : ... | 4.840156978054564E21 | -| test.c:606:24:606:31 | (...) | 6.9571236715E10 | -| test.c:606:25:606:25 | 2 | 1.0 | -| test.c:606:25:606:25 | (unsigned int)... | 1.0 | -| test.c:606:25:606:30 | ... * ... | 6.9571236715E10 | -| test.c:606:29:606:30 | ip | 6.9571236715E10 | -| test.c:606:35:606:36 | 17 | 1.0 | -| test.c:606:35:606:36 | (unsigned int)... | 1.0 | -| test.c:606:35:606:41 | ... * ... | 6.9571236715E10 | -| test.c:606:40:606:41 | ip | 6.9571236715E10 | -| test.c:607:21:607:22 | 14 | 1.0 | -| test.c:607:21:607:22 | (unsigned int)... | 1.0 | -| test.c:607:21:607:33 | ... * ... | 6.9571236715E10 | -| test.c:607:26:607:33 | (...) | 6.9571236715E10 | -| test.c:607:27:607:27 | 2 | 1.0 | -| test.c:607:27:607:27 | (unsigned int)... | 1.0 | -| test.c:607:27:607:32 | ... * ... | 6.9571236715E10 | -| test.c:607:31:607:32 | ip | 6.9571236715E10 | -| test.c:608:21:608:22 | 14 | 1.0 | -| test.c:608:21:608:22 | (unsigned int)... | 1.0 | -| test.c:608:21:608:27 | ... * ... | 6.9571236715E10 | -| test.c:608:26:608:27 | ip | 6.9571236715E10 | -| test.c:609:15:609:15 | 2 | 1.0 | -| test.c:609:15:609:15 | (unsigned int)... | 1.0 | -| test.c:609:15:609:20 | ... * ... | 3.4785618357E10 | -| test.c:609:15:609:25 | ... * ... | 3.4785618357E10 | -| test.c:609:15:609:45 | ... + ... | 1.2100392444788552E21 | -| test.c:609:19:609:20 | ip | 3.4785618357E10 | -| test.c:609:24:609:25 | 14 | 1.0 | -| test.c:609:24:609:25 | (unsigned int)... | 1.0 | -| test.c:609:29:609:40 | (...) | 3.4785618357E10 | -| test.c:609:29:609:45 | ... * ... | 3.4785618357E10 | -| test.c:609:30:609:30 | 2 | 1.0 | -| test.c:609:30:609:30 | (unsigned int)... | 1.0 | -| test.c:609:30:609:35 | ... * ... | 3.4785618357E10 | -| test.c:609:30:609:39 | ... + ... | 3.4785618357E10 | -| test.c:609:34:609:35 | ip | 3.4785618357E10 | -| test.c:609:39:609:39 | 1 | 1.0 | -| test.c:609:39:609:39 | (unsigned int)... | 1.0 | -| test.c:609:44:609:45 | 17 | 1.0 | -| test.c:609:44:609:45 | (unsigned int)... | 1.0 | -| test.c:610:11:610:11 | 4 | 1.0 | +| test.c:605:20:605:25 | ... * ... | 5.797603059E9 | +| test.c:605:24:605:25 | ip | 5.797603059E9 | +| test.c:605:30:605:31 | 17 | 1.0 | +| test.c:605:30:605:31 | (unsigned int)... | 1.0 | +| test.c:605:30:605:36 | ... * ... | 5.797603059E9 | +| test.c:605:35:605:36 | ip | 5.797603059E9 | +| test.c:605:40:605:41 | 17 | 1.0 | +| test.c:605:40:605:41 | (unsigned int)... | 1.0 | +| test.c:605:40:605:52 | ... * ... | 5.797603059E9 | +| test.c:605:45:605:52 | (...) | 5.797603059E9 | +| test.c:605:46:605:46 | 2 | 1.0 | +| test.c:605:46:605:46 | (unsigned int)... | 1.0 | +| test.c:605:46:605:51 | ... * ... | 5.797603059E9 | +| test.c:605:50:605:51 | ip | 5.797603059E9 | +| test.c:605:56:605:57 | 17 | 1.0 | +| test.c:605:56:605:57 | (unsigned int)... | 1.0 | +| test.c:605:56:605:62 | ... * ... | 5.797603059E9 | +| test.c:605:61:605:62 | ip | 5.797603059E9 | +| test.c:606:17:606:28 | (...) | 1.1595206119E10 | +| test.c:606:17:606:33 | ... * ... | 1.1595206119E10 | +| test.c:606:18:606:18 | 2 | 1.0 | +| test.c:606:18:606:18 | (unsigned int)... | 1.0 | +| test.c:606:18:606:23 | ... * ... | 1.1595206119E10 | +| test.c:606:18:606:27 | ... + ... | 1.1595206119E10 | +| test.c:606:22:606:23 | ip | 1.1595206119E10 | +| test.c:606:27:606:27 | 1 | 1.0 | +| test.c:606:27:606:27 | (unsigned int)... | 1.0 | +| test.c:606:32:606:33 | 14 | 1.0 | +| test.c:606:32:606:33 | (unsigned int)... | 1.0 | +| test.c:607:17:607:18 | 14 | 1.0 | +| test.c:607:17:607:18 | (unsigned int)... | 1.0 | +| test.c:607:17:607:29 | ... * ... | 1.1595206119E10 | +| test.c:607:17:607:39 | ... > ... | 1.0 | +| test.c:607:17:609:25 | ... ? ... : ... | 1.3444880494209504E20 | +| test.c:607:22:607:29 | (...) | 1.1595206119E10 | +| test.c:607:23:607:23 | 2 | 1.0 | +| test.c:607:23:607:23 | (unsigned int)... | 1.0 | +| test.c:607:23:607:28 | ... * ... | 1.1595206119E10 | +| test.c:607:27:607:28 | ip | 1.1595206119E10 | +| test.c:607:33:607:34 | 17 | 1.0 | +| test.c:607:33:607:34 | (unsigned int)... | 1.0 | +| test.c:607:33:607:39 | ... * ... | 1.1595206119E10 | +| test.c:607:38:607:39 | ip | 1.1595206119E10 | +| test.c:608:19:608:20 | 14 | 1.0 | +| test.c:608:19:608:20 | (unsigned int)... | 1.0 | +| test.c:608:19:608:31 | ... * ... | 1.1595206119E10 | +| test.c:608:24:608:31 | (...) | 1.1595206119E10 | +| test.c:608:25:608:25 | 2 | 1.0 | +| test.c:608:25:608:25 | (unsigned int)... | 1.0 | +| test.c:608:25:608:30 | ... * ... | 1.1595206119E10 | +| test.c:608:29:608:30 | ip | 1.1595206119E10 | +| test.c:609:19:609:20 | 14 | 1.0 | +| test.c:609:19:609:20 | (unsigned int)... | 1.0 | +| test.c:609:19:609:25 | ... * ... | 1.1595206119E10 | +| test.c:609:24:609:25 | ip | 1.1595206119E10 | +| test.c:610:11:610:11 | 2 | 1.0 | | test.c:610:11:610:11 | (unsigned int)... | 1.0 | -| test.c:610:11:610:28 | ... * ... | 5.797603059E9 | -| test.c:610:11:611:32 | ... + ... | 3.361220122972616E19 | -| test.c:610:11:612:32 | ... + ... | 1.9487020066918396E29 | -| test.c:610:11:618:28 | ... + ... | 3.0379516094938436E59 | -| test.c:610:11:619:63 | ... > ... | 1.0 | -| test.c:610:11:631:27 | ... ? ... : ... | 4.390639451194891E87 | -| test.c:610:15:610:28 | (...) | 5.797603059E9 | -| test.c:610:16:610:17 | ip | 5.797603059E9 | -| test.c:610:16:610:22 | ... * ... | 5.797603059E9 | -| test.c:610:16:610:27 | ... + ... | 5.797603059E9 | -| test.c:610:21:610:22 | 14 | 1.0 | -| test.c:610:21:610:22 | (unsigned int)... | 1.0 | -| test.c:610:26:610:27 | 32 | 1.0 | -| test.c:610:26:610:27 | (unsigned int)... | 1.0 | -| test.c:611:15:611:32 | (...) | 5.797603059E9 | -| test.c:611:16:611:16 | 2 | 1.0 | -| test.c:611:16:611:16 | (unsigned int)... | 1.0 | -| test.c:611:16:611:21 | ... * ... | 5.797603059E9 | -| test.c:611:16:611:26 | ... * ... | 5.797603059E9 | -| test.c:611:16:611:31 | ... + ... | 5.797603059E9 | -| test.c:611:20:611:21 | ip | 5.797603059E9 | +| test.c:610:11:610:16 | ... * ... | 3.4785618357E10 | +| test.c:610:11:610:21 | ... * ... | 3.4785618357E10 | +| test.c:610:11:610:41 | ... + ... | 1.2100392444788552E21 | +| test.c:610:15:610:16 | ip | 3.4785618357E10 | +| test.c:610:20:610:21 | 14 | 1.0 | +| test.c:610:20:610:21 | (unsigned int)... | 1.0 | +| test.c:610:25:610:36 | (...) | 3.4785618357E10 | +| test.c:610:25:610:41 | ... * ... | 3.4785618357E10 | +| test.c:610:26:610:26 | 2 | 1.0 | +| test.c:610:26:610:26 | (unsigned int)... | 1.0 | +| test.c:610:26:610:31 | ... * ... | 3.4785618357E10 | +| test.c:610:26:610:35 | ... + ... | 3.4785618357E10 | +| test.c:610:30:610:31 | ip | 3.4785618357E10 | +| test.c:610:35:610:35 | 1 | 1.0 | +| test.c:610:35:610:35 | (unsigned int)... | 1.0 | +| test.c:610:40:610:41 | 17 | 1.0 | +| test.c:610:40:610:41 | (unsigned int)... | 1.0 | +| test.c:611:15:611:15 | 4 | 1.0 | +| test.c:611:15:611:15 | (unsigned int)... | 1.0 | +| test.c:611:15:611:32 | ... * ... | 3.4785618357E10 | +| test.c:611:15:612:32 | ... + ... | 1.2100392444788552E21 | +| test.c:611:15:613:32 | ... + ... | 4.209196335543408E31 | +| test.c:611:15:619:28 | ... + ... | 1.417386703353284E64 | +| test.c:611:19:611:32 | (...) | 3.4785618357E10 | +| test.c:611:20:611:21 | ip | 3.4785618357E10 | +| test.c:611:20:611:26 | ... * ... | 3.4785618357E10 | +| test.c:611:20:611:31 | ... + ... | 3.4785618357E10 | | test.c:611:25:611:26 | 14 | 1.0 | | test.c:611:25:611:26 | (unsigned int)... | 1.0 | | test.c:611:30:611:31 | 32 | 1.0 | | test.c:611:30:611:31 | (unsigned int)... | 1.0 | -| test.c:612:15:612:15 | 2 | 1.0 | -| test.c:612:15:612:15 | (unsigned int)... | 1.0 | -| test.c:612:15:612:32 | ... * ... | 5.797603059E9 | -| test.c:612:19:612:32 | (...) | 5.797603059E9 | -| test.c:612:20:612:21 | ip | 5.797603059E9 | -| test.c:612:20:612:26 | ... * ... | 5.797603059E9 | -| test.c:612:20:612:31 | ... + ... | 5.797603059E9 | +| test.c:612:15:612:32 | (...) | 3.4785618357E10 | +| test.c:612:16:612:16 | 2 | 1.0 | +| test.c:612:16:612:16 | (unsigned int)... | 1.0 | +| test.c:612:16:612:21 | ... * ... | 3.4785618357E10 | +| test.c:612:16:612:26 | ... * ... | 3.4785618357E10 | +| test.c:612:16:612:31 | ... + ... | 3.4785618357E10 | +| test.c:612:20:612:21 | ip | 3.4785618357E10 | | test.c:612:25:612:26 | 14 | 1.0 | | test.c:612:25:612:26 | (unsigned int)... | 1.0 | -| test.c:612:30:612:31 | 64 | 1.0 | +| test.c:612:30:612:31 | 32 | 1.0 | | test.c:612:30:612:31 | (unsigned int)... | 1.0 | -| test.c:613:15:618:28 | (...) | 1.558961605756818E30 | -| test.c:613:16:613:27 | (...) | 5.797603059E9 | -| test.c:613:16:613:32 | ... * ... | 5.797603059E9 | -| test.c:613:16:614:65 | ... > ... | 1.0 | -| test.c:613:16:618:27 | ... ? ... : ... | 1.558961605756818E30 | -| test.c:613:17:613:17 | 2 | 1.0 | -| test.c:613:17:613:17 | (unsigned int)... | 1.0 | -| test.c:613:17:613:22 | ... * ... | 5.797603059E9 | -| test.c:613:17:613:26 | ... + ... | 5.797603059E9 | -| test.c:613:21:613:22 | ip | 5.797603059E9 | -| test.c:613:26:613:26 | 1 | 1.0 | -| test.c:613:26:613:26 | (unsigned int)... | 1.0 | -| test.c:613:31:613:32 | 14 | 1.0 | -| test.c:613:31:613:32 | (unsigned int)... | 1.0 | -| test.c:614:15:614:65 | (...) | 3.361220122972616E19 | -| test.c:614:16:614:17 | 14 | 1.0 | -| test.c:614:16:614:17 | (unsigned int)... | 1.0 | -| test.c:614:16:614:28 | ... * ... | 5.797603059E9 | -| test.c:614:16:614:38 | ... > ... | 1.0 | -| test.c:614:16:614:64 | ... ? ... : ... | 3.361220122972616E19 | -| test.c:614:21:614:28 | (...) | 5.797603059E9 | -| test.c:614:22:614:22 | 2 | 1.0 | -| test.c:614:22:614:22 | (unsigned int)... | 1.0 | -| test.c:614:22:614:27 | ... * ... | 5.797603059E9 | -| test.c:614:26:614:27 | ip | 5.797603059E9 | -| test.c:614:32:614:33 | 17 | 1.0 | -| test.c:614:32:614:33 | (unsigned int)... | 1.0 | -| test.c:614:32:614:38 | ... * ... | 5.797603059E9 | -| test.c:614:37:614:38 | ip | 5.797603059E9 | -| test.c:614:42:614:43 | 17 | 1.0 | -| test.c:614:42:614:43 | (unsigned int)... | 1.0 | -| test.c:614:42:614:54 | ... * ... | 5.797603059E9 | -| test.c:614:47:614:54 | (...) | 5.797603059E9 | -| test.c:614:48:614:48 | 2 | 1.0 | -| test.c:614:48:614:48 | (unsigned int)... | 1.0 | -| test.c:614:48:614:53 | ... * ... | 5.797603059E9 | -| test.c:614:52:614:53 | ip | 5.797603059E9 | -| test.c:614:58:614:59 | 17 | 1.0 | -| test.c:614:58:614:59 | (unsigned int)... | 1.0 | -| test.c:614:58:614:64 | ... * ... | 5.797603059E9 | -| test.c:614:63:614:64 | ip | 5.797603059E9 | -| test.c:615:19:615:30 | (...) | 1.1595206119E10 | -| test.c:615:19:615:35 | ... * ... | 1.1595206119E10 | -| test.c:615:20:615:20 | 2 | 1.0 | -| test.c:615:20:615:20 | (unsigned int)... | 1.0 | -| test.c:615:20:615:25 | ... * ... | 1.1595206119E10 | -| test.c:615:20:615:29 | ... + ... | 1.1595206119E10 | -| test.c:615:24:615:25 | ip | 1.1595206119E10 | -| test.c:615:29:615:29 | 1 | 1.0 | -| test.c:615:29:615:29 | (unsigned int)... | 1.0 | -| test.c:615:34:615:35 | 14 | 1.0 | -| test.c:615:34:615:35 | (unsigned int)... | 1.0 | -| test.c:616:19:616:20 | 14 | 1.0 | -| test.c:616:19:616:20 | (unsigned int)... | 1.0 | -| test.c:616:19:616:31 | ... * ... | 1.1595206119E10 | -| test.c:616:19:616:41 | ... > ... | 1.0 | -| test.c:616:19:618:27 | ... ? ... : ... | 1.3444880494209504E20 | -| test.c:616:24:616:31 | (...) | 1.1595206119E10 | -| test.c:616:25:616:25 | 2 | 1.0 | -| test.c:616:25:616:25 | (unsigned int)... | 1.0 | -| test.c:616:25:616:30 | ... * ... | 1.1595206119E10 | -| test.c:616:29:616:30 | ip | 1.1595206119E10 | -| test.c:616:35:616:36 | 17 | 1.0 | -| test.c:616:35:616:36 | (unsigned int)... | 1.0 | -| test.c:616:35:616:41 | ... * ... | 1.1595206119E10 | -| test.c:616:40:616:41 | ip | 1.1595206119E10 | -| test.c:617:21:617:22 | 14 | 1.0 | -| test.c:617:21:617:22 | (unsigned int)... | 1.0 | -| test.c:617:21:617:33 | ... * ... | 1.1595206119E10 | -| test.c:617:26:617:33 | (...) | 1.1595206119E10 | -| test.c:617:27:617:27 | 2 | 1.0 | -| test.c:617:27:617:27 | (unsigned int)... | 1.0 | -| test.c:617:27:617:32 | ... * ... | 1.1595206119E10 | -| test.c:617:31:617:32 | ip | 1.1595206119E10 | +| test.c:613:15:613:15 | 2 | 1.0 | +| test.c:613:15:613:15 | (unsigned int)... | 1.0 | +| test.c:613:15:613:32 | ... * ... | 3.4785618357E10 | +| test.c:613:19:613:32 | (...) | 3.4785618357E10 | +| test.c:613:20:613:21 | ip | 3.4785618357E10 | +| test.c:613:20:613:26 | ... * ... | 3.4785618357E10 | +| test.c:613:20:613:31 | ... + ... | 3.4785618357E10 | +| test.c:613:25:613:26 | 14 | 1.0 | +| test.c:613:25:613:26 | (unsigned int)... | 1.0 | +| test.c:613:30:613:31 | 64 | 1.0 | +| test.c:613:30:613:31 | (unsigned int)... | 1.0 | +| test.c:614:15:619:28 | (...) | 3.367357068579931E32 | +| test.c:614:16:614:27 | (...) | 3.4785618357E10 | +| test.c:614:16:614:32 | ... * ... | 3.4785618357E10 | +| test.c:614:16:615:65 | ... > ... | 1.0 | +| test.c:614:16:619:27 | ... ? ... : ... | 3.367357068579931E32 | +| test.c:614:17:614:17 | 2 | 1.0 | +| test.c:614:17:614:17 | (unsigned int)... | 1.0 | +| test.c:614:17:614:22 | ... * ... | 3.4785618357E10 | +| test.c:614:17:614:26 | ... + ... | 3.4785618357E10 | +| test.c:614:21:614:22 | ip | 3.4785618357E10 | +| test.c:614:26:614:26 | 1 | 1.0 | +| test.c:614:26:614:26 | (unsigned int)... | 1.0 | +| test.c:614:31:614:32 | 14 | 1.0 | +| test.c:614:31:614:32 | (unsigned int)... | 1.0 | +| test.c:615:15:615:65 | (...) | 1.2100392444788552E21 | +| test.c:615:16:615:17 | 14 | 1.0 | +| test.c:615:16:615:17 | (unsigned int)... | 1.0 | +| test.c:615:16:615:28 | ... * ... | 3.4785618357E10 | +| test.c:615:16:615:38 | ... > ... | 1.0 | +| test.c:615:16:615:64 | ... ? ... : ... | 1.2100392444788552E21 | +| test.c:615:21:615:28 | (...) | 3.4785618357E10 | +| test.c:615:22:615:22 | 2 | 1.0 | +| test.c:615:22:615:22 | (unsigned int)... | 1.0 | +| test.c:615:22:615:27 | ... * ... | 3.4785618357E10 | +| test.c:615:26:615:27 | ip | 3.4785618357E10 | +| test.c:615:32:615:33 | 17 | 1.0 | +| test.c:615:32:615:33 | (unsigned int)... | 1.0 | +| test.c:615:32:615:38 | ... * ... | 3.4785618357E10 | +| test.c:615:37:615:38 | ip | 3.4785618357E10 | +| test.c:615:42:615:43 | 17 | 1.0 | +| test.c:615:42:615:43 | (unsigned int)... | 1.0 | +| test.c:615:42:615:54 | ... * ... | 3.4785618357E10 | +| test.c:615:47:615:54 | (...) | 3.4785618357E10 | +| test.c:615:48:615:48 | 2 | 1.0 | +| test.c:615:48:615:48 | (unsigned int)... | 1.0 | +| test.c:615:48:615:53 | ... * ... | 3.4785618357E10 | +| test.c:615:52:615:53 | ip | 3.4785618357E10 | +| test.c:615:58:615:59 | 17 | 1.0 | +| test.c:615:58:615:59 | (unsigned int)... | 1.0 | +| test.c:615:58:615:64 | ... * ... | 3.4785618357E10 | +| test.c:615:63:615:64 | ip | 3.4785618357E10 | +| test.c:616:19:616:30 | (...) | 6.9571236715E10 | +| test.c:616:19:616:35 | ... * ... | 6.9571236715E10 | +| test.c:616:20:616:20 | 2 | 1.0 | +| test.c:616:20:616:20 | (unsigned int)... | 1.0 | +| test.c:616:20:616:25 | ... * ... | 6.9571236715E10 | +| test.c:616:20:616:29 | ... + ... | 6.9571236715E10 | +| test.c:616:24:616:25 | ip | 6.9571236715E10 | +| test.c:616:29:616:29 | 1 | 1.0 | +| test.c:616:29:616:29 | (unsigned int)... | 1.0 | +| test.c:616:34:616:35 | 14 | 1.0 | +| test.c:616:34:616:35 | (unsigned int)... | 1.0 | +| test.c:617:19:617:20 | 14 | 1.0 | +| test.c:617:19:617:20 | (unsigned int)... | 1.0 | +| test.c:617:19:617:31 | ... * ... | 6.9571236715E10 | +| test.c:617:19:617:41 | ... > ... | 1.0 | +| test.c:617:19:619:27 | ... ? ... : ... | 4.840156978054564E21 | +| test.c:617:24:617:31 | (...) | 6.9571236715E10 | +| test.c:617:25:617:25 | 2 | 1.0 | +| test.c:617:25:617:25 | (unsigned int)... | 1.0 | +| test.c:617:25:617:30 | ... * ... | 6.9571236715E10 | +| test.c:617:29:617:30 | ip | 6.9571236715E10 | +| test.c:617:35:617:36 | 17 | 1.0 | +| test.c:617:35:617:36 | (unsigned int)... | 1.0 | +| test.c:617:35:617:41 | ... * ... | 6.9571236715E10 | +| test.c:617:40:617:41 | ip | 6.9571236715E10 | | test.c:618:21:618:22 | 14 | 1.0 | | test.c:618:21:618:22 | (unsigned int)... | 1.0 | -| test.c:618:21:618:27 | ... * ... | 1.1595206119E10 | -| test.c:618:26:618:27 | ip | 1.1595206119E10 | -| test.c:619:13:619:63 | (...) | 1.2100392444788552E21 | -| test.c:619:14:619:15 | 14 | 1.0 | -| test.c:619:14:619:15 | (unsigned int)... | 1.0 | -| test.c:619:14:619:20 | ... * ... | 3.4785618357E10 | -| test.c:619:14:619:36 | ... > ... | 1.0 | -| test.c:619:14:619:62 | ... ? ... : ... | 1.2100392444788552E21 | -| test.c:619:19:619:20 | ip | 3.4785618357E10 | -| test.c:619:24:619:31 | (...) | 3.4785618357E10 | -| test.c:619:24:619:36 | ... * ... | 3.4785618357E10 | -| test.c:619:25:619:26 | ip | 3.4785618357E10 | -| test.c:619:25:619:30 | ... + ... | 3.4785618357E10 | -| test.c:619:30:619:30 | 1 | 1.0 | -| test.c:619:30:619:30 | (unsigned int)... | 1.0 | -| test.c:619:35:619:36 | 17 | 1.0 | -| test.c:619:35:619:36 | (unsigned int)... | 1.0 | -| test.c:619:40:619:41 | 17 | 1.0 | -| test.c:619:40:619:41 | (unsigned int)... | 1.0 | -| test.c:619:40:619:46 | ... * ... | 3.4785618357E10 | -| test.c:619:45:619:46 | ip | 3.4785618357E10 | -| test.c:619:50:619:57 | (...) | 3.4785618357E10 | -| test.c:619:50:619:62 | ... * ... | 3.4785618357E10 | -| test.c:619:51:619:52 | ip | 3.4785618357E10 | -| test.c:619:51:619:56 | ... + ... | 3.4785618357E10 | -| test.c:619:56:619:56 | 1 | 1.0 | -| test.c:619:56:619:56 | (unsigned int)... | 1.0 | -| test.c:619:61:619:62 | 17 | 1.0 | -| test.c:619:61:619:62 | (unsigned int)... | 1.0 | -| test.c:620:13:620:13 | 4 | 1.0 | -| test.c:620:13:620:13 | (unsigned int)... | 1.0 | -| test.c:620:13:620:30 | ... * ... | 6.9571236714E10 | -| test.c:620:13:621:30 | ... + ... | 4.840156977915421E21 | -| test.c:620:13:622:30 | ... + ... | 3.3673570684347266E32 | -| test.c:620:13:628:26 | ... + ... | 9.071274901265435E65 | -| test.c:620:17:620:30 | (...) | 6.9571236714E10 | -| test.c:620:18:620:19 | ip | 6.9571236714E10 | -| test.c:620:18:620:24 | ... * ... | 6.9571236714E10 | -| test.c:620:18:620:29 | ... + ... | 6.9571236714E10 | -| test.c:620:23:620:24 | 14 | 1.0 | -| test.c:620:23:620:24 | (unsigned int)... | 1.0 | -| test.c:620:28:620:29 | 32 | 1.0 | -| test.c:620:28:620:29 | (unsigned int)... | 1.0 | -| test.c:621:13:621:30 | (...) | 6.9571236714E10 | -| test.c:621:14:621:14 | 2 | 1.0 | -| test.c:621:14:621:14 | (unsigned int)... | 1.0 | -| test.c:621:14:621:19 | ... * ... | 6.9571236714E10 | -| test.c:621:14:621:24 | ... * ... | 6.9571236714E10 | -| test.c:621:14:621:29 | ... + ... | 6.9571236714E10 | -| test.c:621:18:621:19 | ip | 6.9571236714E10 | -| test.c:621:23:621:24 | 14 | 1.0 | -| test.c:621:23:621:24 | (unsigned int)... | 1.0 | -| test.c:621:28:621:29 | 32 | 1.0 | -| test.c:621:28:621:29 | (unsigned int)... | 1.0 | -| test.c:622:13:622:13 | 2 | 1.0 | -| test.c:622:13:622:13 | (unsigned int)... | 1.0 | -| test.c:622:13:622:30 | ... * ... | 6.9571236714E10 | -| test.c:622:17:622:30 | (...) | 6.9571236714E10 | -| test.c:622:18:622:19 | ip | 6.9571236714E10 | -| test.c:622:18:622:24 | ... * ... | 6.9571236714E10 | -| test.c:622:18:622:29 | ... + ... | 6.9571236714E10 | -| test.c:622:23:622:24 | 14 | 1.0 | -| test.c:622:23:622:24 | (unsigned int)... | 1.0 | -| test.c:622:28:622:29 | 64 | 1.0 | -| test.c:622:28:622:29 | (unsigned int)... | 1.0 | -| test.c:623:13:628:26 | (...) | 2.693885654805863E33 | -| test.c:623:14:623:25 | (...) | 6.9571236714E10 | -| test.c:623:14:623:30 | ... * ... | 6.9571236714E10 | -| test.c:623:14:624:63 | ... > ... | 1.0 | -| test.c:623:14:628:25 | ... ? ... : ... | 2.693885654805863E33 | +| test.c:618:21:618:33 | ... * ... | 6.9571236715E10 | +| test.c:618:26:618:33 | (...) | 6.9571236715E10 | +| test.c:618:27:618:27 | 2 | 1.0 | +| test.c:618:27:618:27 | (unsigned int)... | 1.0 | +| test.c:618:27:618:32 | ... * ... | 6.9571236715E10 | +| test.c:618:31:618:32 | ip | 6.9571236715E10 | +| test.c:619:21:619:22 | 14 | 1.0 | +| test.c:619:21:619:22 | (unsigned int)... | 1.0 | +| test.c:619:21:619:27 | ... * ... | 6.9571236715E10 | +| test.c:619:26:619:27 | ip | 6.9571236715E10 | +| test.c:620:15:620:15 | 2 | 1.0 | +| test.c:620:15:620:15 | (unsigned int)... | 1.0 | +| test.c:620:15:620:20 | ... * ... | 3.4785618357E10 | +| test.c:620:15:620:25 | ... * ... | 3.4785618357E10 | +| test.c:620:15:620:45 | ... + ... | 1.2100392444788552E21 | +| test.c:620:19:620:20 | ip | 3.4785618357E10 | +| test.c:620:24:620:25 | 14 | 1.0 | +| test.c:620:24:620:25 | (unsigned int)... | 1.0 | +| test.c:620:29:620:40 | (...) | 3.4785618357E10 | +| test.c:620:29:620:45 | ... * ... | 3.4785618357E10 | +| test.c:620:30:620:30 | 2 | 1.0 | +| test.c:620:30:620:30 | (unsigned int)... | 1.0 | +| test.c:620:30:620:35 | ... * ... | 3.4785618357E10 | +| test.c:620:30:620:39 | ... + ... | 3.4785618357E10 | +| test.c:620:34:620:35 | ip | 3.4785618357E10 | +| test.c:620:39:620:39 | 1 | 1.0 | +| test.c:620:39:620:39 | (unsigned int)... | 1.0 | +| test.c:620:44:620:45 | 17 | 1.0 | +| test.c:620:44:620:45 | (unsigned int)... | 1.0 | +| test.c:621:11:621:11 | 4 | 1.0 | +| test.c:621:11:621:11 | (unsigned int)... | 1.0 | +| test.c:621:11:621:28 | ... * ... | 5.797603059E9 | +| test.c:621:11:622:32 | ... + ... | 3.361220122972616E19 | +| test.c:621:11:623:32 | ... + ... | 1.9487020066918396E29 | +| test.c:621:11:629:28 | ... + ... | 3.0379516094938436E59 | +| test.c:621:11:630:63 | ... > ... | 1.0 | +| test.c:621:11:642:27 | ... ? ... : ... | 4.390639451194891E87 | +| test.c:621:15:621:28 | (...) | 5.797603059E9 | +| test.c:621:16:621:17 | ip | 5.797603059E9 | +| test.c:621:16:621:22 | ... * ... | 5.797603059E9 | +| test.c:621:16:621:27 | ... + ... | 5.797603059E9 | +| test.c:621:21:621:22 | 14 | 1.0 | +| test.c:621:21:621:22 | (unsigned int)... | 1.0 | +| test.c:621:26:621:27 | 32 | 1.0 | +| test.c:621:26:621:27 | (unsigned int)... | 1.0 | +| test.c:622:15:622:32 | (...) | 5.797603059E9 | +| test.c:622:16:622:16 | 2 | 1.0 | +| test.c:622:16:622:16 | (unsigned int)... | 1.0 | +| test.c:622:16:622:21 | ... * ... | 5.797603059E9 | +| test.c:622:16:622:26 | ... * ... | 5.797603059E9 | +| test.c:622:16:622:31 | ... + ... | 5.797603059E9 | +| test.c:622:20:622:21 | ip | 5.797603059E9 | +| test.c:622:25:622:26 | 14 | 1.0 | +| test.c:622:25:622:26 | (unsigned int)... | 1.0 | +| test.c:622:30:622:31 | 32 | 1.0 | +| test.c:622:30:622:31 | (unsigned int)... | 1.0 | | test.c:623:15:623:15 | 2 | 1.0 | | test.c:623:15:623:15 | (unsigned int)... | 1.0 | -| test.c:623:15:623:20 | ... * ... | 6.9571236714E10 | -| test.c:623:15:623:24 | ... + ... | 6.9571236714E10 | -| test.c:623:19:623:20 | ip | 6.9571236714E10 | -| test.c:623:24:623:24 | 1 | 1.0 | -| test.c:623:24:623:24 | (unsigned int)... | 1.0 | -| test.c:623:29:623:30 | 14 | 1.0 | -| test.c:623:29:623:30 | (unsigned int)... | 1.0 | -| test.c:624:13:624:63 | (...) | 4.840156977915421E21 | -| test.c:624:14:624:15 | 14 | 1.0 | -| test.c:624:14:624:15 | (unsigned int)... | 1.0 | -| test.c:624:14:624:26 | ... * ... | 6.9571236714E10 | -| test.c:624:14:624:36 | ... > ... | 1.0 | -| test.c:624:14:624:62 | ... ? ... : ... | 4.840156977915421E21 | -| test.c:624:19:624:26 | (...) | 6.9571236714E10 | -| test.c:624:20:624:20 | 2 | 1.0 | -| test.c:624:20:624:20 | (unsigned int)... | 1.0 | -| test.c:624:20:624:25 | ... * ... | 6.9571236714E10 | -| test.c:624:24:624:25 | ip | 6.9571236714E10 | -| test.c:624:30:624:31 | 17 | 1.0 | -| test.c:624:30:624:31 | (unsigned int)... | 1.0 | -| test.c:624:30:624:36 | ... * ... | 6.9571236714E10 | -| test.c:624:35:624:36 | ip | 6.9571236714E10 | -| test.c:624:40:624:41 | 17 | 1.0 | -| test.c:624:40:624:41 | (unsigned int)... | 1.0 | -| test.c:624:40:624:52 | ... * ... | 6.9571236714E10 | -| test.c:624:45:624:52 | (...) | 6.9571236714E10 | -| test.c:624:46:624:46 | 2 | 1.0 | -| test.c:624:46:624:46 | (unsigned int)... | 1.0 | -| test.c:624:46:624:51 | ... * ... | 6.9571236714E10 | -| test.c:624:50:624:51 | ip | 6.9571236714E10 | -| test.c:624:56:624:57 | 17 | 1.0 | -| test.c:624:56:624:57 | (unsigned int)... | 1.0 | -| test.c:624:56:624:62 | ... * ... | 6.9571236714E10 | -| test.c:624:61:624:62 | ip | 6.9571236714E10 | -| test.c:625:17:625:28 | (...) | 1.39142473429E11 | -| test.c:625:17:625:33 | ... * ... | 1.39142473429E11 | -| test.c:625:18:625:18 | 2 | 1.0 | -| test.c:625:18:625:18 | (unsigned int)... | 1.0 | -| test.c:625:18:625:23 | ... * ... | 1.39142473429E11 | -| test.c:625:18:625:27 | ... + ... | 1.39142473429E11 | -| test.c:625:22:625:23 | ip | 1.39142473429E11 | -| test.c:625:27:625:27 | 1 | 1.0 | -| test.c:625:27:625:27 | (unsigned int)... | 1.0 | -| test.c:625:32:625:33 | 14 | 1.0 | +| test.c:623:15:623:32 | ... * ... | 5.797603059E9 | +| test.c:623:19:623:32 | (...) | 5.797603059E9 | +| test.c:623:20:623:21 | ip | 5.797603059E9 | +| test.c:623:20:623:26 | ... * ... | 5.797603059E9 | +| test.c:623:20:623:31 | ... + ... | 5.797603059E9 | +| test.c:623:25:623:26 | 14 | 1.0 | +| test.c:623:25:623:26 | (unsigned int)... | 1.0 | +| test.c:623:30:623:31 | 64 | 1.0 | +| test.c:623:30:623:31 | (unsigned int)... | 1.0 | +| test.c:624:15:629:28 | (...) | 1.558961605756818E30 | +| test.c:624:16:624:27 | (...) | 5.797603059E9 | +| test.c:624:16:624:32 | ... * ... | 5.797603059E9 | +| test.c:624:16:625:65 | ... > ... | 1.0 | +| test.c:624:16:629:27 | ... ? ... : ... | 1.558961605756818E30 | +| test.c:624:17:624:17 | 2 | 1.0 | +| test.c:624:17:624:17 | (unsigned int)... | 1.0 | +| test.c:624:17:624:22 | ... * ... | 5.797603059E9 | +| test.c:624:17:624:26 | ... + ... | 5.797603059E9 | +| test.c:624:21:624:22 | ip | 5.797603059E9 | +| test.c:624:26:624:26 | 1 | 1.0 | +| test.c:624:26:624:26 | (unsigned int)... | 1.0 | +| test.c:624:31:624:32 | 14 | 1.0 | +| test.c:624:31:624:32 | (unsigned int)... | 1.0 | +| test.c:625:15:625:65 | (...) | 3.361220122972616E19 | +| test.c:625:16:625:17 | 14 | 1.0 | +| test.c:625:16:625:17 | (unsigned int)... | 1.0 | +| test.c:625:16:625:28 | ... * ... | 5.797603059E9 | +| test.c:625:16:625:38 | ... > ... | 1.0 | +| test.c:625:16:625:64 | ... ? ... : ... | 3.361220122972616E19 | +| test.c:625:21:625:28 | (...) | 5.797603059E9 | +| test.c:625:22:625:22 | 2 | 1.0 | +| test.c:625:22:625:22 | (unsigned int)... | 1.0 | +| test.c:625:22:625:27 | ... * ... | 5.797603059E9 | +| test.c:625:26:625:27 | ip | 5.797603059E9 | +| test.c:625:32:625:33 | 17 | 1.0 | | test.c:625:32:625:33 | (unsigned int)... | 1.0 | -| test.c:626:17:626:18 | 14 | 1.0 | -| test.c:626:17:626:18 | (unsigned int)... | 1.0 | -| test.c:626:17:626:29 | ... * ... | 1.39142473429E11 | -| test.c:626:17:626:39 | ... > ... | 1.0 | -| test.c:626:17:628:25 | ... ? ... : ... | 1.936062791193997E22 | -| test.c:626:22:626:29 | (...) | 1.39142473429E11 | -| test.c:626:23:626:23 | 2 | 1.0 | -| test.c:626:23:626:23 | (unsigned int)... | 1.0 | -| test.c:626:23:626:28 | ... * ... | 1.39142473429E11 | -| test.c:626:27:626:28 | ip | 1.39142473429E11 | -| test.c:626:33:626:34 | 17 | 1.0 | -| test.c:626:33:626:34 | (unsigned int)... | 1.0 | -| test.c:626:33:626:39 | ... * ... | 1.39142473429E11 | -| test.c:626:38:626:39 | ip | 1.39142473429E11 | +| test.c:625:32:625:38 | ... * ... | 5.797603059E9 | +| test.c:625:37:625:38 | ip | 5.797603059E9 | +| test.c:625:42:625:43 | 17 | 1.0 | +| test.c:625:42:625:43 | (unsigned int)... | 1.0 | +| test.c:625:42:625:54 | ... * ... | 5.797603059E9 | +| test.c:625:47:625:54 | (...) | 5.797603059E9 | +| test.c:625:48:625:48 | 2 | 1.0 | +| test.c:625:48:625:48 | (unsigned int)... | 1.0 | +| test.c:625:48:625:53 | ... * ... | 5.797603059E9 | +| test.c:625:52:625:53 | ip | 5.797603059E9 | +| test.c:625:58:625:59 | 17 | 1.0 | +| test.c:625:58:625:59 | (unsigned int)... | 1.0 | +| test.c:625:58:625:64 | ... * ... | 5.797603059E9 | +| test.c:625:63:625:64 | ip | 5.797603059E9 | +| test.c:626:19:626:30 | (...) | 1.1595206119E10 | +| test.c:626:19:626:35 | ... * ... | 1.1595206119E10 | +| test.c:626:20:626:20 | 2 | 1.0 | +| test.c:626:20:626:20 | (unsigned int)... | 1.0 | +| test.c:626:20:626:25 | ... * ... | 1.1595206119E10 | +| test.c:626:20:626:29 | ... + ... | 1.1595206119E10 | +| test.c:626:24:626:25 | ip | 1.1595206119E10 | +| test.c:626:29:626:29 | 1 | 1.0 | +| test.c:626:29:626:29 | (unsigned int)... | 1.0 | +| test.c:626:34:626:35 | 14 | 1.0 | +| test.c:626:34:626:35 | (unsigned int)... | 1.0 | | test.c:627:19:627:20 | 14 | 1.0 | | test.c:627:19:627:20 | (unsigned int)... | 1.0 | -| test.c:627:19:627:31 | ... * ... | 1.39142473429E11 | -| test.c:627:24:627:31 | (...) | 1.39142473429E11 | +| test.c:627:19:627:31 | ... * ... | 1.1595206119E10 | +| test.c:627:19:627:41 | ... > ... | 1.0 | +| test.c:627:19:629:27 | ... ? ... : ... | 1.3444880494209504E20 | +| test.c:627:24:627:31 | (...) | 1.1595206119E10 | | test.c:627:25:627:25 | 2 | 1.0 | | test.c:627:25:627:25 | (unsigned int)... | 1.0 | -| test.c:627:25:627:30 | ... * ... | 1.39142473429E11 | -| test.c:627:29:627:30 | ip | 1.39142473429E11 | -| test.c:628:19:628:20 | 14 | 1.0 | -| test.c:628:19:628:20 | (unsigned int)... | 1.0 | -| test.c:628:19:628:25 | ... * ... | 1.39142473429E11 | -| test.c:628:24:628:25 | ip | 1.39142473429E11 | -| test.c:629:13:629:14 | 14 | 1.0 | -| test.c:629:13:629:14 | (unsigned int)... | 1.0 | -| test.c:629:13:629:19 | ... * ... | 6.9571236714E10 | -| test.c:629:13:629:35 | ... > ... | 1.0 | -| test.c:629:13:631:27 | ... ? ... : ... | 4.840156977915421E21 | -| test.c:629:18:629:19 | ip | 6.9571236714E10 | -| test.c:629:23:629:30 | (...) | 6.9571236714E10 | -| test.c:629:23:629:35 | ... * ... | 6.9571236714E10 | -| test.c:629:24:629:25 | ip | 6.9571236714E10 | -| test.c:629:24:629:29 | ... + ... | 6.9571236714E10 | -| test.c:629:29:629:29 | 1 | 1.0 | -| test.c:629:29:629:29 | (unsigned int)... | 1.0 | -| test.c:629:34:629:35 | 17 | 1.0 | -| test.c:629:34:629:35 | (unsigned int)... | 1.0 | -| test.c:630:15:630:16 | 14 | 1.0 | -| test.c:630:15:630:16 | (unsigned int)... | 1.0 | -| test.c:630:15:630:21 | ... * ... | 6.9571236714E10 | -| test.c:630:20:630:21 | ip | 6.9571236714E10 | -| test.c:631:15:631:22 | (...) | 6.9571236714E10 | -| test.c:631:15:631:27 | ... * ... | 6.9571236714E10 | -| test.c:631:16:631:17 | ip | 6.9571236714E10 | -| test.c:631:16:631:21 | ... + ... | 6.9571236714E10 | -| test.c:631:21:631:21 | 1 | 1.0 | -| test.c:631:21:631:21 | (unsigned int)... | 1.0 | -| test.c:631:26:631:27 | 14 | 1.0 | -| test.c:631:26:631:27 | (unsigned int)... | 1.0 | -| test.c:632:10:632:23 | special_number | 1.297918419127476E201 | -| test.c:639:10:639:11 | 0 | 1.0 | -| test.c:640:7:640:8 | c1 | 1.0 | -| test.c:640:13:640:13 | x | 1.0 | -| test.c:640:13:640:23 | ... += ... | 1.0 | -| test.c:640:18:640:23 | 748596 | 1.0 | -| test.c:641:7:641:8 | c2 | 1.0 | -| test.c:641:13:641:13 | x | 2.0 | -| test.c:641:13:641:25 | ... += ... | 2.0 | -| test.c:641:18:641:25 | 84652395 | 1.0 | -| test.c:642:7:642:8 | c3 | 1.0 | -| test.c:642:13:642:13 | x | 4.0 | -| test.c:642:13:642:24 | ... += ... | 4.0 | -| test.c:642:18:642:24 | 3675895 | 1.0 | -| test.c:643:7:643:8 | c4 | 1.0 | -| test.c:643:13:643:13 | x | 8.0 | -| test.c:643:13:643:22 | ... += ... | 8.0 | -| test.c:643:18:643:22 | 98634 | 1.0 | -| test.c:644:7:644:8 | c5 | 1.0 | -| test.c:644:13:644:13 | x | 16.0 | -| test.c:644:13:644:24 | ... += ... | 16.0 | -| test.c:644:18:644:24 | 7834985 | 1.0 | -| test.c:645:7:645:8 | c1 | 2.0 | -| test.c:645:7:645:14 | ... && ... | 1.0 | -| test.c:645:13:645:14 | c2 | 2.0 | -| test.c:645:19:645:19 | x | 32.0 | -| test.c:645:19:645:32 | ... += ... | 32.0 | -| test.c:645:24:645:32 | 938457398 | 1.0 | -| test.c:646:7:646:8 | c1 | 3.0 | -| test.c:646:7:646:14 | ... && ... | 1.0 | -| test.c:646:13:646:14 | c3 | 2.0 | -| test.c:646:19:646:19 | x | 64.0 | -| test.c:646:19:646:31 | ... += ... | 64.0 | -| test.c:646:24:646:31 | 73895648 | 1.0 | -| test.c:647:7:647:8 | c1 | 4.0 | -| test.c:647:7:647:14 | ... && ... | 1.0 | -| test.c:647:13:647:14 | c4 | 2.0 | -| test.c:647:19:647:19 | x | 128.0 | -| test.c:647:19:647:31 | ... += ... | 128.0 | -| test.c:647:24:647:31 | 12345432 | 1.0 | -| test.c:648:7:648:8 | c1 | 5.0 | -| test.c:648:7:648:14 | ... && ... | 1.0 | -| test.c:648:13:648:14 | c5 | 2.0 | -| test.c:648:19:648:19 | x | 256.0 | -| test.c:648:19:648:28 | ... += ... | 256.0 | -| test.c:648:24:648:28 | 38847 | 1.0 | -| test.c:649:7:649:8 | c2 | 5.0 | -| test.c:649:7:649:14 | ... && ... | 1.0 | -| test.c:649:13:649:14 | c3 | 5.0 | -| test.c:649:19:649:19 | x | 512.0 | -| test.c:649:19:649:26 | ... += ... | 512.0 | -| test.c:649:24:649:26 | 234 | 1.0 | -| test.c:651:11:651:11 | x | 1024.0 | -| test.c:651:11:651:15 | ... + ... | 1048576.0 | -| test.c:651:11:651:19 | ... + ... | 1.073741824E9 | -| test.c:651:11:651:23 | ... + ... | 1.099511627776E12 | -| test.c:651:11:651:27 | ... + ... | 1.125899906842624E15 | -| test.c:651:11:651:31 | ... + ... | 1.152921504606847E18 | -| test.c:651:11:651:35 | ... + ... | 1.1805916207174113E21 | -| test.c:651:11:651:39 | ... + ... | 1.2089258196146292E24 | -| test.c:651:11:651:43 | ... + ... | 1.2379400392853803E27 | -| test.c:651:11:651:47 | ... + ... | 1.2676506002282294E30 | -| test.c:651:11:651:51 | ... + ... | 1.298074214633707E33 | -| test.c:651:11:651:55 | ... + ... | 1.329227995784916E36 | -| test.c:651:15:651:15 | x | 1024.0 | -| test.c:651:19:651:19 | x | 1024.0 | -| test.c:651:23:651:23 | x | 1024.0 | -| test.c:651:27:651:27 | x | 1024.0 | -| test.c:651:31:651:31 | x | 1024.0 | -| test.c:651:35:651:35 | x | 1024.0 | -| test.c:651:39:651:39 | x | 1024.0 | -| test.c:651:43:651:43 | x | 1024.0 | -| test.c:651:47:651:47 | x | 1024.0 | -| test.c:651:51:651:51 | x | 1024.0 | -| test.c:651:55:651:55 | x | 1024.0 | -| test.c:652:10:652:10 | y | 1.329227995784916E36 | -| test.c:657:20:657:20 | x | 1.0 | -| test.c:657:20:657:26 | ... < ... | 1.0 | -| test.c:657:20:657:36 | ... ? ... : ... | 1.0 | -| test.c:657:24:657:26 | 100 | 1.0 | -| test.c:657:24:657:26 | (unsigned int)... | 1.0 | -| test.c:657:30:657:30 | x | 1.0 | -| test.c:657:34:657:36 | 100 | 1.0 | -| test.c:657:34:657:36 | (unsigned int)... | 1.0 | -| test.c:660:3:660:4 | y1 | 1.0 | -| test.c:660:9:660:11 | ++ ... | 1.0 | -| test.c:660:11:660:11 | y | 1.0 | -| test.c:661:3:661:4 | y2 | 1.0 | -| test.c:661:19:661:19 | 3 | 1.0 | -| test.c:661:19:661:19 | (unsigned int)... | 1.0 | -| test.c:670:3:670:3 | i | 1.0 | -| test.c:670:3:670:8 | ... = ... | 1.0 | -| test.c:670:7:670:8 | 10 | 1.0 | -| test.c:671:7:671:7 | i | 1.0 | -| test.c:673:3:673:3 | i | 1.0 | -| test.c:673:3:673:8 | ... = ... | 1.0 | -| test.c:673:7:673:8 | 10 | 1.0 | -| test.c:674:3:674:3 | i | 1.0 | -| test.c:674:3:674:9 | ... += ... | 1.0 | -| test.c:674:8:674:9 | 10 | 1.0 | -| test.c:675:7:675:7 | i | 1.0 | -| test.c:677:3:677:3 | i | 1.0 | -| test.c:677:3:677:8 | ... = ... | 1.0 | -| test.c:677:7:677:8 | 40 | 1.0 | -| test.c:678:3:678:3 | i | 1.0 | -| test.c:678:3:678:9 | ... -= ... | 1.0 | -| test.c:678:8:678:9 | 10 | 1.0 | -| test.c:679:7:679:7 | i | 1.0 | +| test.c:627:25:627:30 | ... * ... | 1.1595206119E10 | +| test.c:627:29:627:30 | ip | 1.1595206119E10 | +| test.c:627:35:627:36 | 17 | 1.0 | +| test.c:627:35:627:36 | (unsigned int)... | 1.0 | +| test.c:627:35:627:41 | ... * ... | 1.1595206119E10 | +| test.c:627:40:627:41 | ip | 1.1595206119E10 | +| test.c:628:21:628:22 | 14 | 1.0 | +| test.c:628:21:628:22 | (unsigned int)... | 1.0 | +| test.c:628:21:628:33 | ... * ... | 1.1595206119E10 | +| test.c:628:26:628:33 | (...) | 1.1595206119E10 | +| test.c:628:27:628:27 | 2 | 1.0 | +| test.c:628:27:628:27 | (unsigned int)... | 1.0 | +| test.c:628:27:628:32 | ... * ... | 1.1595206119E10 | +| test.c:628:31:628:32 | ip | 1.1595206119E10 | +| test.c:629:21:629:22 | 14 | 1.0 | +| test.c:629:21:629:22 | (unsigned int)... | 1.0 | +| test.c:629:21:629:27 | ... * ... | 1.1595206119E10 | +| test.c:629:26:629:27 | ip | 1.1595206119E10 | +| test.c:630:13:630:63 | (...) | 1.2100392444788552E21 | +| test.c:630:14:630:15 | 14 | 1.0 | +| test.c:630:14:630:15 | (unsigned int)... | 1.0 | +| test.c:630:14:630:20 | ... * ... | 3.4785618357E10 | +| test.c:630:14:630:36 | ... > ... | 1.0 | +| test.c:630:14:630:62 | ... ? ... : ... | 1.2100392444788552E21 | +| test.c:630:19:630:20 | ip | 3.4785618357E10 | +| test.c:630:24:630:31 | (...) | 3.4785618357E10 | +| test.c:630:24:630:36 | ... * ... | 3.4785618357E10 | +| test.c:630:25:630:26 | ip | 3.4785618357E10 | +| test.c:630:25:630:30 | ... + ... | 3.4785618357E10 | +| test.c:630:30:630:30 | 1 | 1.0 | +| test.c:630:30:630:30 | (unsigned int)... | 1.0 | +| test.c:630:35:630:36 | 17 | 1.0 | +| test.c:630:35:630:36 | (unsigned int)... | 1.0 | +| test.c:630:40:630:41 | 17 | 1.0 | +| test.c:630:40:630:41 | (unsigned int)... | 1.0 | +| test.c:630:40:630:46 | ... * ... | 3.4785618357E10 | +| test.c:630:45:630:46 | ip | 3.4785618357E10 | +| test.c:630:50:630:57 | (...) | 3.4785618357E10 | +| test.c:630:50:630:62 | ... * ... | 3.4785618357E10 | +| test.c:630:51:630:52 | ip | 3.4785618357E10 | +| test.c:630:51:630:56 | ... + ... | 3.4785618357E10 | +| test.c:630:56:630:56 | 1 | 1.0 | +| test.c:630:56:630:56 | (unsigned int)... | 1.0 | +| test.c:630:61:630:62 | 17 | 1.0 | +| test.c:630:61:630:62 | (unsigned int)... | 1.0 | +| test.c:631:13:631:13 | 4 | 1.0 | +| test.c:631:13:631:13 | (unsigned int)... | 1.0 | +| test.c:631:13:631:30 | ... * ... | 6.9571236714E10 | +| test.c:631:13:632:30 | ... + ... | 4.840156977915421E21 | +| test.c:631:13:633:30 | ... + ... | 3.3673570684347266E32 | +| test.c:631:13:639:26 | ... + ... | 9.071274901265435E65 | +| test.c:631:17:631:30 | (...) | 6.9571236714E10 | +| test.c:631:18:631:19 | ip | 6.9571236714E10 | +| test.c:631:18:631:24 | ... * ... | 6.9571236714E10 | +| test.c:631:18:631:29 | ... + ... | 6.9571236714E10 | +| test.c:631:23:631:24 | 14 | 1.0 | +| test.c:631:23:631:24 | (unsigned int)... | 1.0 | +| test.c:631:28:631:29 | 32 | 1.0 | +| test.c:631:28:631:29 | (unsigned int)... | 1.0 | +| test.c:632:13:632:30 | (...) | 6.9571236714E10 | +| test.c:632:14:632:14 | 2 | 1.0 | +| test.c:632:14:632:14 | (unsigned int)... | 1.0 | +| test.c:632:14:632:19 | ... * ... | 6.9571236714E10 | +| test.c:632:14:632:24 | ... * ... | 6.9571236714E10 | +| test.c:632:14:632:29 | ... + ... | 6.9571236714E10 | +| test.c:632:18:632:19 | ip | 6.9571236714E10 | +| test.c:632:23:632:24 | 14 | 1.0 | +| test.c:632:23:632:24 | (unsigned int)... | 1.0 | +| test.c:632:28:632:29 | 32 | 1.0 | +| test.c:632:28:632:29 | (unsigned int)... | 1.0 | +| test.c:633:13:633:13 | 2 | 1.0 | +| test.c:633:13:633:13 | (unsigned int)... | 1.0 | +| test.c:633:13:633:30 | ... * ... | 6.9571236714E10 | +| test.c:633:17:633:30 | (...) | 6.9571236714E10 | +| test.c:633:18:633:19 | ip | 6.9571236714E10 | +| test.c:633:18:633:24 | ... * ... | 6.9571236714E10 | +| test.c:633:18:633:29 | ... + ... | 6.9571236714E10 | +| test.c:633:23:633:24 | 14 | 1.0 | +| test.c:633:23:633:24 | (unsigned int)... | 1.0 | +| test.c:633:28:633:29 | 64 | 1.0 | +| test.c:633:28:633:29 | (unsigned int)... | 1.0 | +| test.c:634:13:639:26 | (...) | 2.693885654805863E33 | +| test.c:634:14:634:25 | (...) | 6.9571236714E10 | +| test.c:634:14:634:30 | ... * ... | 6.9571236714E10 | +| test.c:634:14:635:63 | ... > ... | 1.0 | +| test.c:634:14:639:25 | ... ? ... : ... | 2.693885654805863E33 | +| test.c:634:15:634:15 | 2 | 1.0 | +| test.c:634:15:634:15 | (unsigned int)... | 1.0 | +| test.c:634:15:634:20 | ... * ... | 6.9571236714E10 | +| test.c:634:15:634:24 | ... + ... | 6.9571236714E10 | +| test.c:634:19:634:20 | ip | 6.9571236714E10 | +| test.c:634:24:634:24 | 1 | 1.0 | +| test.c:634:24:634:24 | (unsigned int)... | 1.0 | +| test.c:634:29:634:30 | 14 | 1.0 | +| test.c:634:29:634:30 | (unsigned int)... | 1.0 | +| test.c:635:13:635:63 | (...) | 4.840156977915421E21 | +| test.c:635:14:635:15 | 14 | 1.0 | +| test.c:635:14:635:15 | (unsigned int)... | 1.0 | +| test.c:635:14:635:26 | ... * ... | 6.9571236714E10 | +| test.c:635:14:635:36 | ... > ... | 1.0 | +| test.c:635:14:635:62 | ... ? ... : ... | 4.840156977915421E21 | +| test.c:635:19:635:26 | (...) | 6.9571236714E10 | +| test.c:635:20:635:20 | 2 | 1.0 | +| test.c:635:20:635:20 | (unsigned int)... | 1.0 | +| test.c:635:20:635:25 | ... * ... | 6.9571236714E10 | +| test.c:635:24:635:25 | ip | 6.9571236714E10 | +| test.c:635:30:635:31 | 17 | 1.0 | +| test.c:635:30:635:31 | (unsigned int)... | 1.0 | +| test.c:635:30:635:36 | ... * ... | 6.9571236714E10 | +| test.c:635:35:635:36 | ip | 6.9571236714E10 | +| test.c:635:40:635:41 | 17 | 1.0 | +| test.c:635:40:635:41 | (unsigned int)... | 1.0 | +| test.c:635:40:635:52 | ... * ... | 6.9571236714E10 | +| test.c:635:45:635:52 | (...) | 6.9571236714E10 | +| test.c:635:46:635:46 | 2 | 1.0 | +| test.c:635:46:635:46 | (unsigned int)... | 1.0 | +| test.c:635:46:635:51 | ... * ... | 6.9571236714E10 | +| test.c:635:50:635:51 | ip | 6.9571236714E10 | +| test.c:635:56:635:57 | 17 | 1.0 | +| test.c:635:56:635:57 | (unsigned int)... | 1.0 | +| test.c:635:56:635:62 | ... * ... | 6.9571236714E10 | +| test.c:635:61:635:62 | ip | 6.9571236714E10 | +| test.c:636:17:636:28 | (...) | 1.39142473429E11 | +| test.c:636:17:636:33 | ... * ... | 1.39142473429E11 | +| test.c:636:18:636:18 | 2 | 1.0 | +| test.c:636:18:636:18 | (unsigned int)... | 1.0 | +| test.c:636:18:636:23 | ... * ... | 1.39142473429E11 | +| test.c:636:18:636:27 | ... + ... | 1.39142473429E11 | +| test.c:636:22:636:23 | ip | 1.39142473429E11 | +| test.c:636:27:636:27 | 1 | 1.0 | +| test.c:636:27:636:27 | (unsigned int)... | 1.0 | +| test.c:636:32:636:33 | 14 | 1.0 | +| test.c:636:32:636:33 | (unsigned int)... | 1.0 | +| test.c:637:17:637:18 | 14 | 1.0 | +| test.c:637:17:637:18 | (unsigned int)... | 1.0 | +| test.c:637:17:637:29 | ... * ... | 1.39142473429E11 | +| test.c:637:17:637:39 | ... > ... | 1.0 | +| test.c:637:17:639:25 | ... ? ... : ... | 1.936062791193997E22 | +| test.c:637:22:637:29 | (...) | 1.39142473429E11 | +| test.c:637:23:637:23 | 2 | 1.0 | +| test.c:637:23:637:23 | (unsigned int)... | 1.0 | +| test.c:637:23:637:28 | ... * ... | 1.39142473429E11 | +| test.c:637:27:637:28 | ip | 1.39142473429E11 | +| test.c:637:33:637:34 | 17 | 1.0 | +| test.c:637:33:637:34 | (unsigned int)... | 1.0 | +| test.c:637:33:637:39 | ... * ... | 1.39142473429E11 | +| test.c:637:38:637:39 | ip | 1.39142473429E11 | +| test.c:638:19:638:20 | 14 | 1.0 | +| test.c:638:19:638:20 | (unsigned int)... | 1.0 | +| test.c:638:19:638:31 | ... * ... | 1.39142473429E11 | +| test.c:638:24:638:31 | (...) | 1.39142473429E11 | +| test.c:638:25:638:25 | 2 | 1.0 | +| test.c:638:25:638:25 | (unsigned int)... | 1.0 | +| test.c:638:25:638:30 | ... * ... | 1.39142473429E11 | +| test.c:638:29:638:30 | ip | 1.39142473429E11 | +| test.c:639:19:639:20 | 14 | 1.0 | +| test.c:639:19:639:20 | (unsigned int)... | 1.0 | +| test.c:639:19:639:25 | ... * ... | 1.39142473429E11 | +| test.c:639:24:639:25 | ip | 1.39142473429E11 | +| test.c:640:13:640:14 | 14 | 1.0 | +| test.c:640:13:640:14 | (unsigned int)... | 1.0 | +| test.c:640:13:640:19 | ... * ... | 6.9571236714E10 | +| test.c:640:13:640:35 | ... > ... | 1.0 | +| test.c:640:13:642:27 | ... ? ... : ... | 4.840156977915421E21 | +| test.c:640:18:640:19 | ip | 6.9571236714E10 | +| test.c:640:23:640:30 | (...) | 6.9571236714E10 | +| test.c:640:23:640:35 | ... * ... | 6.9571236714E10 | +| test.c:640:24:640:25 | ip | 6.9571236714E10 | +| test.c:640:24:640:29 | ... + ... | 6.9571236714E10 | +| test.c:640:29:640:29 | 1 | 1.0 | +| test.c:640:29:640:29 | (unsigned int)... | 1.0 | +| test.c:640:34:640:35 | 17 | 1.0 | +| test.c:640:34:640:35 | (unsigned int)... | 1.0 | +| test.c:641:15:641:16 | 14 | 1.0 | +| test.c:641:15:641:16 | (unsigned int)... | 1.0 | +| test.c:641:15:641:21 | ... * ... | 6.9571236714E10 | +| test.c:641:20:641:21 | ip | 6.9571236714E10 | +| test.c:642:15:642:22 | (...) | 6.9571236714E10 | +| test.c:642:15:642:27 | ... * ... | 6.9571236714E10 | +| test.c:642:16:642:17 | ip | 6.9571236714E10 | +| test.c:642:16:642:21 | ... + ... | 6.9571236714E10 | +| test.c:642:21:642:21 | 1 | 1.0 | +| test.c:642:21:642:21 | (unsigned int)... | 1.0 | +| test.c:642:26:642:27 | 14 | 1.0 | +| test.c:642:26:642:27 | (unsigned int)... | 1.0 | +| test.c:643:10:643:23 | special_number | 1.297918419127476E201 | +| test.c:650:10:650:11 | 0 | 1.0 | +| test.c:651:7:651:8 | c1 | 1.0 | +| test.c:651:13:651:13 | x | 1.0 | +| test.c:651:13:651:23 | ... += ... | 1.0 | +| test.c:651:18:651:23 | 748596 | 1.0 | +| test.c:652:7:652:8 | c2 | 1.0 | +| test.c:652:13:652:13 | x | 2.0 | +| test.c:652:13:652:25 | ... += ... | 2.0 | +| test.c:652:18:652:25 | 84652395 | 1.0 | +| test.c:653:7:653:8 | c3 | 1.0 | +| test.c:653:13:653:13 | x | 4.0 | +| test.c:653:13:653:24 | ... += ... | 4.0 | +| test.c:653:18:653:24 | 3675895 | 1.0 | +| test.c:654:7:654:8 | c4 | 1.0 | +| test.c:654:13:654:13 | x | 8.0 | +| test.c:654:13:654:22 | ... += ... | 8.0 | +| test.c:654:18:654:22 | 98634 | 1.0 | +| test.c:655:7:655:8 | c5 | 1.0 | +| test.c:655:13:655:13 | x | 16.0 | +| test.c:655:13:655:24 | ... += ... | 16.0 | +| test.c:655:18:655:24 | 7834985 | 1.0 | +| test.c:656:7:656:8 | c1 | 2.0 | +| test.c:656:7:656:14 | ... && ... | 1.0 | +| test.c:656:13:656:14 | c2 | 2.0 | +| test.c:656:19:656:19 | x | 32.0 | +| test.c:656:19:656:32 | ... += ... | 32.0 | +| test.c:656:24:656:32 | 938457398 | 1.0 | +| test.c:657:7:657:8 | c1 | 3.0 | +| test.c:657:7:657:14 | ... && ... | 1.0 | +| test.c:657:13:657:14 | c3 | 2.0 | +| test.c:657:19:657:19 | x | 64.0 | +| test.c:657:19:657:31 | ... += ... | 64.0 | +| test.c:657:24:657:31 | 73895648 | 1.0 | +| test.c:658:7:658:8 | c1 | 4.0 | +| test.c:658:7:658:14 | ... && ... | 1.0 | +| test.c:658:13:658:14 | c4 | 2.0 | +| test.c:658:19:658:19 | x | 128.0 | +| test.c:658:19:658:31 | ... += ... | 128.0 | +| test.c:658:24:658:31 | 12345432 | 1.0 | +| test.c:659:7:659:8 | c1 | 5.0 | +| test.c:659:7:659:14 | ... && ... | 1.0 | +| test.c:659:13:659:14 | c5 | 2.0 | +| test.c:659:19:659:19 | x | 256.0 | +| test.c:659:19:659:28 | ... += ... | 256.0 | +| test.c:659:24:659:28 | 38847 | 1.0 | +| test.c:660:7:660:8 | c2 | 5.0 | +| test.c:660:7:660:14 | ... && ... | 1.0 | +| test.c:660:13:660:14 | c3 | 5.0 | +| test.c:660:19:660:19 | x | 512.0 | +| test.c:660:19:660:26 | ... += ... | 512.0 | +| test.c:660:24:660:26 | 234 | 1.0 | +| test.c:662:11:662:11 | x | 1024.0 | +| test.c:662:11:662:15 | ... + ... | 1048576.0 | +| test.c:662:11:662:19 | ... + ... | 1.073741824E9 | +| test.c:662:11:662:23 | ... + ... | 1.099511627776E12 | +| test.c:662:11:662:27 | ... + ... | 1.125899906842624E15 | +| test.c:662:11:662:31 | ... + ... | 1.152921504606847E18 | +| test.c:662:11:662:35 | ... + ... | 1.1805916207174113E21 | +| test.c:662:11:662:39 | ... + ... | 1.2089258196146292E24 | +| test.c:662:11:662:43 | ... + ... | 1.2379400392853803E27 | +| test.c:662:11:662:47 | ... + ... | 1.2676506002282294E30 | +| test.c:662:11:662:51 | ... + ... | 1.298074214633707E33 | +| test.c:662:11:662:55 | ... + ... | 1.329227995784916E36 | +| test.c:662:15:662:15 | x | 1024.0 | +| test.c:662:19:662:19 | x | 1024.0 | +| test.c:662:23:662:23 | x | 1024.0 | +| test.c:662:27:662:27 | x | 1024.0 | +| test.c:662:31:662:31 | x | 1024.0 | +| test.c:662:35:662:35 | x | 1024.0 | +| test.c:662:39:662:39 | x | 1024.0 | +| test.c:662:43:662:43 | x | 1024.0 | +| test.c:662:47:662:47 | x | 1024.0 | +| test.c:662:51:662:51 | x | 1024.0 | +| test.c:662:55:662:55 | x | 1024.0 | +| test.c:663:10:663:10 | y | 1.329227995784916E36 | +| test.c:668:20:668:20 | x | 1.0 | +| test.c:668:20:668:26 | ... < ... | 1.0 | +| test.c:668:20:668:36 | ... ? ... : ... | 1.0 | +| test.c:668:24:668:26 | 100 | 1.0 | +| test.c:668:24:668:26 | (unsigned int)... | 1.0 | +| test.c:668:30:668:30 | x | 1.0 | +| test.c:668:34:668:36 | 100 | 1.0 | +| test.c:668:34:668:36 | (unsigned int)... | 1.0 | +| test.c:671:3:671:4 | y1 | 1.0 | +| test.c:671:9:671:11 | ++ ... | 1.0 | +| test.c:671:11:671:11 | y | 1.0 | +| test.c:672:3:672:4 | y2 | 1.0 | +| test.c:672:19:672:19 | 3 | 1.0 | +| test.c:672:19:672:19 | (unsigned int)... | 1.0 | | test.c:681:3:681:3 | i | 1.0 | -| test.c:681:3:681:12 | ... = ... | 1.0 | -| test.c:681:7:681:7 | j | 1.0 | -| test.c:681:7:681:12 | ... = ... | 1.0 | -| test.c:681:11:681:12 | 40 | 1.0 | +| test.c:681:3:681:8 | ... = ... | 1.0 | +| test.c:681:7:681:8 | 10 | 1.0 | | test.c:682:7:682:7 | i | 1.0 | | test.c:684:3:684:3 | i | 1.0 | -| test.c:684:3:684:15 | ... = ... | 1.0 | -| test.c:684:7:684:15 | (...) | 1.0 | -| test.c:684:8:684:8 | j | 1.0 | -| test.c:684:8:684:14 | ... += ... | 1.0 | -| test.c:684:13:684:14 | 10 | 1.0 | -| test.c:685:7:685:7 | i | 1.0 | -| test.c:687:3:687:3 | i | 1.0 | -| test.c:687:3:687:20 | ... = ... | 1.0 | -| test.c:687:7:687:8 | 20 | 1.0 | -| test.c:687:7:687:20 | ... + ... | 1.0 | -| test.c:687:12:687:20 | (...) | 1.0 | -| test.c:687:13:687:13 | j | 1.0 | -| test.c:687:13:687:19 | ... -= ... | 1.0 | -| test.c:687:18:687:19 | 10 | 1.0 | -| test.c:688:7:688:7 | i | 1.0 | -| test.c:693:14:693:15 | 0 | 1.0 | -| test.c:695:7:695:7 | 3 | 1.0 | -| test.c:695:7:695:7 | (unsigned int)... | 1.0 | -| test.c:695:7:695:12 | ... <= ... | 1.0 | -| test.c:695:7:695:23 | ... && ... | 1.0 | -| test.c:695:7:695:33 | ... && ... | 1.0 | -| test.c:695:7:695:44 | ... && ... | 1.0 | -| test.c:695:12:695:12 | a | 1.0 | -| test.c:695:17:695:17 | a | 1.0 | -| test.c:695:17:695:23 | ... <= ... | 1.0 | -| test.c:695:22:695:23 | 11 | 1.0 | -| test.c:695:22:695:23 | (unsigned int)... | 1.0 | -| test.c:695:28:695:28 | 5 | 1.0 | -| test.c:695:28:695:28 | (unsigned int)... | 1.0 | -| test.c:695:28:695:33 | ... <= ... | 1.0 | -| test.c:695:33:695:33 | b | 1.0 | -| test.c:695:38:695:38 | b | 1.0 | -| test.c:695:38:695:44 | ... <= ... | 1.0 | -| test.c:695:43:695:44 | 23 | 1.0 | -| test.c:695:43:695:44 | (unsigned int)... | 1.0 | -| test.c:696:13:696:13 | a | 1.0 | -| test.c:696:13:696:15 | (int)... | 1.0 | -| test.c:696:13:696:15 | ... * ... | 1.0 | -| test.c:696:15:696:15 | b | 1.0 | -| test.c:697:5:697:9 | total | 1.0 | -| test.c:697:5:697:14 | ... += ... | 1.0 | -| test.c:697:14:697:14 | r | 1.0 | -| test.c:699:7:699:7 | 3 | 1.0 | -| test.c:699:7:699:7 | (unsigned int)... | 1.0 | -| test.c:699:7:699:12 | ... <= ... | 1.0 | -| test.c:699:7:699:23 | ... && ... | 1.0 | -| test.c:699:7:699:33 | ... && ... | 1.0 | -| test.c:699:7:699:44 | ... && ... | 1.0 | -| test.c:699:12:699:12 | a | 2.0 | -| test.c:699:17:699:17 | a | 2.0 | -| test.c:699:17:699:23 | ... <= ... | 1.0 | -| test.c:699:22:699:23 | 11 | 1.0 | -| test.c:699:22:699:23 | (unsigned int)... | 1.0 | -| test.c:699:28:699:28 | 0 | 1.0 | -| test.c:699:28:699:28 | (unsigned int)... | 1.0 | -| test.c:699:28:699:33 | ... <= ... | 1.0 | -| test.c:699:33:699:33 | b | 3.0 | -| test.c:699:38:699:38 | b | 3.0 | -| test.c:699:38:699:44 | ... <= ... | 1.0 | -| test.c:699:43:699:44 | 23 | 1.0 | -| test.c:699:43:699:44 | (unsigned int)... | 1.0 | -| test.c:700:13:700:13 | a | 2.0 | -| test.c:700:13:700:15 | (int)... | 6.0 | -| test.c:700:13:700:15 | ... * ... | 6.0 | -| test.c:700:15:700:15 | b | 3.0 | -| test.c:701:5:701:9 | total | 2.0 | -| test.c:701:5:701:14 | ... += ... | 12.0 | -| test.c:701:14:701:14 | r | 6.0 | -| test.c:703:7:703:7 | 3 | 1.0 | -| test.c:703:7:703:7 | (unsigned int)... | 1.0 | -| test.c:703:7:703:12 | ... <= ... | 1.0 | -| test.c:703:7:703:23 | ... && ... | 1.0 | -| test.c:703:7:703:34 | ... && ... | 1.0 | -| test.c:703:7:703:45 | ... && ... | 1.0 | -| test.c:703:12:703:12 | a | 3.0 | -| test.c:703:17:703:17 | a | 3.0 | -| test.c:703:17:703:23 | ... <= ... | 1.0 | -| test.c:703:22:703:23 | 11 | 1.0 | -| test.c:703:22:703:23 | (unsigned int)... | 1.0 | -| test.c:703:28:703:29 | 13 | 1.0 | -| test.c:703:28:703:29 | (unsigned int)... | 1.0 | -| test.c:703:28:703:34 | ... <= ... | 1.0 | -| test.c:703:34:703:34 | b | 7.0 | -| test.c:703:39:703:39 | b | 7.0 | -| test.c:703:39:703:45 | ... <= ... | 1.0 | -| test.c:703:44:703:45 | 23 | 1.0 | -| test.c:703:44:703:45 | (unsigned int)... | 1.0 | -| test.c:704:13:704:13 | a | 3.0 | -| test.c:704:13:704:15 | (int)... | 21.0 | -| test.c:704:13:704:15 | ... * ... | 21.0 | -| test.c:704:15:704:15 | b | 7.0 | -| test.c:705:5:705:9 | total | 14.0 | -| test.c:705:5:705:14 | ... += ... | 294.0 | -| test.c:705:14:705:14 | r | 21.0 | -| test.c:708:10:708:14 | total | 308.0 | -| test.c:712:14:712:15 | 0 | 1.0 | -| test.c:714:7:714:7 | 5 | 1.0 | +| test.c:684:3:684:8 | ... = ... | 1.0 | +| test.c:684:7:684:8 | 10 | 1.0 | +| test.c:685:3:685:3 | i | 1.0 | +| test.c:685:3:685:9 | ... += ... | 1.0 | +| test.c:685:8:685:9 | 10 | 1.0 | +| test.c:686:7:686:7 | i | 1.0 | +| test.c:688:3:688:3 | i | 1.0 | +| test.c:688:3:688:8 | ... = ... | 1.0 | +| test.c:688:7:688:8 | 40 | 1.0 | +| test.c:689:3:689:3 | i | 1.0 | +| test.c:689:3:689:9 | ... -= ... | 1.0 | +| test.c:689:8:689:9 | 10 | 1.0 | +| test.c:690:7:690:7 | i | 1.0 | +| test.c:692:3:692:3 | i | 1.0 | +| test.c:692:3:692:12 | ... = ... | 1.0 | +| test.c:692:7:692:7 | j | 1.0 | +| test.c:692:7:692:12 | ... = ... | 1.0 | +| test.c:692:11:692:12 | 40 | 1.0 | +| test.c:693:7:693:7 | i | 1.0 | +| test.c:695:3:695:3 | i | 1.0 | +| test.c:695:3:695:15 | ... = ... | 1.0 | +| test.c:695:7:695:15 | (...) | 1.0 | +| test.c:695:8:695:8 | j | 1.0 | +| test.c:695:8:695:14 | ... += ... | 1.0 | +| test.c:695:13:695:14 | 10 | 1.0 | +| test.c:696:7:696:7 | i | 1.0 | +| test.c:698:3:698:3 | i | 1.0 | +| test.c:698:3:698:20 | ... = ... | 1.0 | +| test.c:698:7:698:8 | 20 | 1.0 | +| test.c:698:7:698:20 | ... + ... | 1.0 | +| test.c:698:12:698:20 | (...) | 1.0 | +| test.c:698:13:698:13 | j | 1.0 | +| test.c:698:13:698:19 | ... -= ... | 1.0 | +| test.c:698:18:698:19 | 10 | 1.0 | +| test.c:699:7:699:7 | i | 1.0 | +| test.c:704:14:704:15 | 0 | 1.0 | +| test.c:706:7:706:7 | 3 | 1.0 | +| test.c:706:7:706:7 | (unsigned int)... | 1.0 | +| test.c:706:7:706:12 | ... <= ... | 1.0 | +| test.c:706:7:706:23 | ... && ... | 1.0 | +| test.c:706:7:706:33 | ... && ... | 1.0 | +| test.c:706:7:706:44 | ... && ... | 1.0 | +| test.c:706:12:706:12 | a | 1.0 | +| test.c:706:17:706:17 | a | 1.0 | +| test.c:706:17:706:23 | ... <= ... | 1.0 | +| test.c:706:22:706:23 | 11 | 1.0 | +| test.c:706:22:706:23 | (unsigned int)... | 1.0 | +| test.c:706:28:706:28 | 5 | 1.0 | +| test.c:706:28:706:28 | (unsigned int)... | 1.0 | +| test.c:706:28:706:33 | ... <= ... | 1.0 | +| test.c:706:33:706:33 | b | 1.0 | +| test.c:706:38:706:38 | b | 1.0 | +| test.c:706:38:706:44 | ... <= ... | 1.0 | +| test.c:706:43:706:44 | 23 | 1.0 | +| test.c:706:43:706:44 | (unsigned int)... | 1.0 | +| test.c:707:13:707:13 | a | 1.0 | +| test.c:707:13:707:15 | (int)... | 1.0 | +| test.c:707:13:707:15 | ... * ... | 1.0 | +| test.c:707:15:707:15 | b | 1.0 | +| test.c:708:5:708:9 | total | 1.0 | +| test.c:708:5:708:14 | ... += ... | 1.0 | +| test.c:708:14:708:14 | r | 1.0 | +| test.c:710:7:710:7 | 3 | 1.0 | +| test.c:710:7:710:7 | (unsigned int)... | 1.0 | +| test.c:710:7:710:12 | ... <= ... | 1.0 | +| test.c:710:7:710:23 | ... && ... | 1.0 | +| test.c:710:7:710:33 | ... && ... | 1.0 | +| test.c:710:7:710:44 | ... && ... | 1.0 | +| test.c:710:12:710:12 | a | 2.0 | +| test.c:710:17:710:17 | a | 2.0 | +| test.c:710:17:710:23 | ... <= ... | 1.0 | +| test.c:710:22:710:23 | 11 | 1.0 | +| test.c:710:22:710:23 | (unsigned int)... | 1.0 | +| test.c:710:28:710:28 | 0 | 1.0 | +| test.c:710:28:710:28 | (unsigned int)... | 1.0 | +| test.c:710:28:710:33 | ... <= ... | 1.0 | +| test.c:710:33:710:33 | b | 3.0 | +| test.c:710:38:710:38 | b | 3.0 | +| test.c:710:38:710:44 | ... <= ... | 1.0 | +| test.c:710:43:710:44 | 23 | 1.0 | +| test.c:710:43:710:44 | (unsigned int)... | 1.0 | +| test.c:711:13:711:13 | a | 2.0 | +| test.c:711:13:711:15 | (int)... | 6.0 | +| test.c:711:13:711:15 | ... * ... | 6.0 | +| test.c:711:15:711:15 | b | 3.0 | +| test.c:712:5:712:9 | total | 2.0 | +| test.c:712:5:712:14 | ... += ... | 12.0 | +| test.c:712:14:712:14 | r | 6.0 | +| test.c:714:7:714:7 | 3 | 1.0 | | test.c:714:7:714:7 | (unsigned int)... | 1.0 | | test.c:714:7:714:12 | ... <= ... | 1.0 | | test.c:714:7:714:23 | ... && ... | 1.0 | -| test.c:714:12:714:12 | b | 1.0 | -| test.c:714:17:714:17 | b | 1.0 | +| test.c:714:7:714:34 | ... && ... | 1.0 | +| test.c:714:7:714:45 | ... && ... | 1.0 | +| test.c:714:12:714:12 | a | 3.0 | +| test.c:714:17:714:17 | a | 3.0 | | test.c:714:17:714:23 | ... <= ... | 1.0 | -| test.c:714:22:714:23 | 23 | 1.0 | +| test.c:714:22:714:23 | 11 | 1.0 | | test.c:714:22:714:23 | (unsigned int)... | 1.0 | -| test.c:715:13:715:14 | 11 | 1.0 | -| test.c:715:13:715:14 | (unsigned int)... | 1.0 | -| test.c:715:13:715:16 | (int)... | 1.0 | -| test.c:715:13:715:16 | ... * ... | 1.0 | -| test.c:715:16:715:16 | b | 1.0 | -| test.c:716:5:716:9 | total | 1.0 | -| test.c:716:5:716:14 | ... += ... | 1.0 | -| test.c:716:14:716:14 | r | 1.0 | -| test.c:718:7:718:7 | 0 | 1.0 | -| test.c:718:7:718:7 | (unsigned int)... | 1.0 | -| test.c:718:7:718:12 | ... <= ... | 1.0 | -| test.c:718:7:718:23 | ... && ... | 1.0 | -| test.c:718:12:718:12 | b | 2.0 | -| test.c:718:17:718:17 | b | 2.0 | -| test.c:718:17:718:23 | ... <= ... | 1.0 | -| test.c:718:22:718:23 | 23 | 1.0 | -| test.c:718:22:718:23 | (unsigned int)... | 1.0 | -| test.c:719:13:719:14 | 11 | 1.0 | -| test.c:719:13:719:14 | (unsigned int)... | 1.0 | -| test.c:719:13:719:16 | (int)... | 2.0 | -| test.c:719:13:719:16 | ... * ... | 2.0 | -| test.c:719:16:719:16 | b | 2.0 | -| test.c:720:5:720:9 | total | 2.0 | -| test.c:720:5:720:14 | ... += ... | 4.0 | -| test.c:720:14:720:14 | r | 2.0 | -| test.c:722:7:722:8 | 13 | 1.0 | -| test.c:722:7:722:8 | (unsigned int)... | 1.0 | -| test.c:722:7:722:13 | ... <= ... | 1.0 | -| test.c:722:7:722:24 | ... && ... | 1.0 | -| test.c:722:13:722:13 | b | 3.0 | -| test.c:722:18:722:18 | b | 3.0 | -| test.c:722:18:722:24 | ... <= ... | 1.0 | -| test.c:722:23:722:24 | 23 | 1.0 | -| test.c:722:23:722:24 | (unsigned int)... | 1.0 | -| test.c:723:13:723:14 | 11 | 1.0 | -| test.c:723:13:723:14 | (unsigned int)... | 1.0 | -| test.c:723:13:723:16 | (int)... | 3.0 | -| test.c:723:13:723:16 | ... * ... | 3.0 | -| test.c:723:16:723:16 | b | 3.0 | -| test.c:724:5:724:9 | total | 6.0 | -| test.c:724:5:724:14 | ... += ... | 18.0 | -| test.c:724:14:724:14 | r | 3.0 | -| test.c:727:10:727:14 | total | 24.0 | -| test.c:732:3:732:3 | x | 1.0 | -| test.c:732:3:732:22 | ... = ... | 1.0 | -| test.c:732:7:732:7 | y | 1.0 | -| test.c:732:7:732:22 | ... = ... | 1.0 | -| test.c:732:11:732:22 | 1000000003 | 1.0 | -| test.c:733:3:733:4 | xy | 1.0 | -| test.c:733:3:733:12 | ... = ... | 1.0 | -| test.c:733:8:733:8 | x | 1.0 | -| test.c:733:8:733:12 | ... * ... | 1.0 | -| test.c:733:12:733:12 | y | 1.0 | -| test.c:734:10:734:11 | xy | 1.0 | -| test.c:739:3:739:3 | x | 1.0 | -| test.c:739:3:739:14 | ... = ... | 1.0 | -| test.c:739:7:739:14 | 274177 | 1.0 | -| test.c:740:3:740:3 | y | 1.0 | -| test.c:740:3:740:22 | ... = ... | 1.0 | -| test.c:740:7:740:22 | 67280421310721 | 1.0 | -| test.c:741:3:741:4 | xy | 1.0 | -| test.c:741:3:741:12 | ... = ... | 1.0 | -| test.c:741:8:741:8 | x | 1.0 | -| test.c:741:8:741:12 | ... * ... | 1.0 | -| test.c:741:12:741:12 | y | 1.0 | -| test.c:742:10:742:11 | xy | 1.0 | -| test.c:746:7:746:8 | ui | 1.0 | -| test.c:746:7:746:14 | ... >= ... | 1.0 | -| test.c:746:13:746:14 | 10 | 1.0 | -| test.c:746:13:746:14 | (unsigned int)... | 1.0 | -| test.c:747:28:747:44 | (unsigned long)... | 1.0 | -| test.c:747:28:747:49 | ... * ... | 1.0 | -| test.c:747:43:747:44 | ui | 1.0 | -| test.c:747:48:747:49 | (unsigned long)... | 1.0 | -| test.c:747:48:747:49 | ui | 1.0 | -| test.c:748:12:748:17 | result | 1.0 | -| test.c:750:7:750:8 | ul | 1.0 | -| test.c:750:7:750:14 | ... >= ... | 1.0 | -| test.c:750:13:750:14 | 10 | 1.0 | -| test.c:750:13:750:14 | (unsigned long)... | 1.0 | -| test.c:751:28:751:29 | ul | 1.0 | -| test.c:751:28:751:34 | ... * ... | 1.0 | -| test.c:751:33:751:34 | ul | 1.0 | -| test.c:752:12:752:17 | result | 1.0 | -| test.c:754:10:754:10 | 0 | 1.0 | -| test.c:754:10:754:10 | (unsigned long)... | 1.0 | -| test.c:758:7:758:8 | ui | 1.0 | -| test.c:758:7:758:14 | ... <= ... | 1.0 | -| test.c:758:7:758:25 | ... && ... | 1.0 | -| test.c:758:13:758:14 | 10 | 1.0 | -| test.c:758:13:758:14 | (unsigned int)... | 1.0 | -| test.c:758:19:758:20 | ui | 1.0 | -| test.c:758:19:758:25 | ... >= ... | 1.0 | -| test.c:758:25:758:25 | 2 | 1.0 | -| test.c:758:25:758:25 | (unsigned int)... | 1.0 | -| test.c:759:5:759:6 | ui | 1.0 | -| test.c:759:5:759:16 | ... *= ... | 1.0 | -| test.c:759:11:759:12 | ui | 1.0 | -| test.c:759:11:759:16 | ... + ... | 1.0 | -| test.c:759:16:759:16 | 0 | 1.0 | -| test.c:759:16:759:16 | (unsigned int)... | 1.0 | -| test.c:760:12:760:13 | (unsigned long)... | 1.0 | -| test.c:760:12:760:13 | ui | 1.0 | -| test.c:763:26:763:27 | 10 | 1.0 | -| test.c:763:26:763:27 | (unsigned int)... | 1.0 | -| test.c:764:3:764:9 | uiconst | 1.0 | -| test.c:764:3:764:14 | ... *= ... | 1.0 | -| test.c:764:14:764:14 | 4 | 1.0 | -| test.c:764:14:764:14 | (unsigned int)... | 1.0 | -| test.c:766:27:766:28 | 10 | 1.0 | -| test.c:766:27:766:28 | (unsigned long)... | 1.0 | -| test.c:767:3:767:9 | ulconst | 1.0 | -| test.c:767:3:767:14 | ... *= ... | 1.0 | -| test.c:767:14:767:14 | 4 | 1.0 | -| test.c:767:14:767:14 | (unsigned long)... | 1.0 | -| test.c:768:10:768:16 | (unsigned long)... | 1.0 | -| test.c:768:10:768:16 | uiconst | 1.0 | -| test.c:768:10:768:26 | ... + ... | 1.0 | -| test.c:768:20:768:26 | ulconst | 1.0 | -| test.c:772:7:772:7 | i | 1.0 | -| test.c:772:7:772:13 | ... >= ... | 1.0 | -| test.c:772:7:772:23 | ... && ... | 1.0 | -| test.c:772:12:772:13 | - ... | 1.0 | -| test.c:772:13:772:13 | 1 | 1.0 | -| test.c:772:18:772:18 | i | 1.0 | -| test.c:772:18:772:23 | ... <= ... | 1.0 | -| test.c:772:23:772:23 | 2 | 1.0 | -| test.c:773:5:773:5 | i | 1.0 | -| test.c:773:5:773:13 | ... = ... | 1.0 | -| test.c:773:9:773:9 | 5 | 1.0 | -| test.c:773:9:773:13 | ... * ... | 1.0 | -| test.c:773:13:773:13 | i | 1.0 | -| test.c:774:9:774:9 | i | 1.0 | -| test.c:776:5:776:5 | i | 1.0 | -| test.c:776:5:776:14 | ... = ... | 1.0 | -| test.c:776:9:776:9 | i | 1.0 | -| test.c:776:9:776:14 | ... * ... | 1.0 | -| test.c:776:13:776:14 | - ... | 1.0 | -| test.c:776:14:776:14 | 3 | 1.0 | -| test.c:777:9:777:9 | i | 1.0 | -| test.c:779:5:779:5 | i | 1.0 | -| test.c:779:5:779:10 | ... *= ... | 1.0 | -| test.c:779:10:779:10 | 7 | 1.0 | -| test.c:780:9:780:9 | i | 1.0 | -| test.c:782:5:782:5 | i | 1.0 | -| test.c:782:5:782:12 | ... *= ... | 1.0 | -| test.c:782:10:782:12 | - ... | 1.0 | -| test.c:782:11:782:12 | 11 | 1.0 | -| test.c:783:9:783:9 | i | 1.0 | -| test.c:785:7:785:7 | i | 2.0 | -| test.c:785:7:785:13 | ... == ... | 1.0 | -| test.c:785:12:785:13 | - ... | 1.0 | -| test.c:785:13:785:13 | 1 | 1.0 | -| test.c:786:5:786:5 | i | 1.0 | -| test.c:786:5:786:27 | ... = ... | 2.0 | -| test.c:786:9:786:9 | i | 2.0 | -| test.c:786:9:786:27 | ... * ... | 2.0 | -| test.c:786:13:786:27 | (int)... | 1.0 | -| test.c:786:18:786:27 | 4294967295 | 1.0 | -| test.c:787:9:787:9 | i | 2.0 | -| test.c:789:3:789:3 | i | 1.0 | -| test.c:789:3:789:12 | ... = ... | 4.0 | -| test.c:789:7:789:7 | i | 4.0 | -| test.c:789:7:789:12 | ... * ... | 4.0 | -| test.c:789:11:789:12 | - ... | 1.0 | -| test.c:789:12:789:12 | 1 | 1.0 | -| test.c:790:10:790:10 | i | 4.0 | -| test.c:792:20:792:20 | 1 | 1.0 | -| test.c:792:20:792:20 | (signed char)... | 1.0 | -| test.c:793:3:793:3 | i | 1.0 | -| test.c:793:3:793:17 | ... = ... | 1.0 | -| test.c:793:7:793:17 | (...) | 1.0 | -| test.c:793:7:793:17 | (int)... | 1.0 | -| test.c:793:8:793:11 | * ... | 1.0 | -| test.c:793:8:793:16 | ... *= ... | 1.0 | -| test.c:793:10:793:11 | sc | 1.0 | -| test.c:793:16:793:16 | 2 | 1.0 | -| test.c:795:7:795:7 | i | 1.0 | -| test.c:797:10:797:10 | 0 | 1.0 | -| test.c:802:7:802:7 | (int)... | 1.0 | -| test.c:802:7:802:7 | n | 1.0 | -| test.c:804:7:804:7 | n | 1.0 | -| test.c:804:7:804:11 | ... > ... | 1.0 | -| test.c:804:11:804:11 | 0 | 1.0 | -| test.c:804:11:804:11 | (unsigned int)... | 1.0 | -| test.c:805:9:805:9 | (int)... | 1.0 | -| test.c:805:9:805:9 | n | 1.0 | -| test.c:808:7:808:7 | n | 2.0 | -| test.c:808:7:808:12 | ... != ... | 1.0 | -| test.c:808:12:808:12 | 0 | 1.0 | -| test.c:808:12:808:12 | (unsigned int)... | 1.0 | -| test.c:809:9:809:9 | (int)... | 2.0 | -| test.c:809:9:809:9 | n | 2.0 | -| test.c:811:9:811:9 | (int)... | 2.0 | -| test.c:811:9:811:9 | n | 2.0 | -| test.c:814:7:814:8 | ! ... | 1.0 | -| test.c:814:8:814:8 | n | 4.0 | -| test.c:815:9:815:9 | (int)... | 4.0 | -| test.c:815:9:815:9 | n | 4.0 | -| test.c:817:9:817:9 | (int)... | 4.0 | -| test.c:817:9:817:9 | n | 4.0 | -| test.c:820:10:820:10 | n | 13.0 | -| test.c:820:10:820:15 | ... != ... | 1.0 | -| test.c:820:15:820:15 | 0 | 1.0 | -| test.c:820:15:820:15 | (unsigned int)... | 1.0 | -| test.c:821:5:821:5 | n | 13.0 | -| test.c:821:5:821:7 | ... -- | 13.0 | -| test.c:824:7:824:7 | (int)... | 13.0 | -| test.c:824:7:824:7 | n | 13.0 | -| test.c:828:7:828:7 | (int)... | 1.0 | -| test.c:828:7:828:7 | n | 1.0 | -| test.c:828:7:828:11 | ... < ... | 1.0 | -| test.c:828:11:828:11 | 0 | 1.0 | -| test.c:831:7:831:7 | (int)... | 1.0 | -| test.c:831:7:831:7 | n | 1.0 | -| test.c:831:7:831:12 | ... == ... | 1.0 | -| test.c:831:12:831:12 | 0 | 1.0 | -| test.c:832:9:832:9 | (int)... | 1.0 | -| test.c:832:9:832:9 | n | 1.0 | -| test.c:834:9:834:9 | (int)... | 1.0 | -| test.c:834:9:834:9 | n | 1.0 | -| test.c:837:7:837:7 | n | 2.0 | -| test.c:838:9:838:9 | (int)... | 2.0 | -| test.c:838:9:838:9 | n | 2.0 | -| test.c:840:9:840:9 | (int)... | 2.0 | -| test.c:840:9:840:9 | n | 2.0 | -| test.c:843:10:843:10 | (int)... | 13.0 | -| test.c:843:10:843:10 | n | 12.0 | -| test.c:843:10:843:15 | ... != ... | 1.0 | -| test.c:843:15:843:15 | 0 | 1.0 | -| test.c:844:5:844:5 | n | 12.0 | -| test.c:844:5:844:7 | ... -- | 12.0 | -| test.c:847:7:847:7 | (int)... | 12.0 | -| test.c:847:7:847:7 | n | 12.0 | -| test.c:851:7:851:7 | (int)... | 1.0 | -| test.c:851:7:851:7 | n | 1.0 | -| test.c:851:7:851:12 | ... != ... | 1.0 | -| test.c:851:12:851:12 | 0 | 1.0 | -| test.c:852:9:852:9 | (int)... | 1.0 | -| test.c:852:9:852:9 | n | 1.0 | -| test.c:852:9:852:14 | ... >= ... | 1.0 | -| test.c:852:14:852:14 | 0 | 1.0 | -| test.c:853:11:853:11 | (int)... | 1.0 | -| test.c:853:11:853:11 | n | 1.0 | -| test.c:857:7:857:7 | (int)... | 2.0 | -| test.c:857:7:857:7 | n | 2.0 | -| test.c:857:7:857:12 | ... >= ... | 1.0 | -| test.c:857:12:857:12 | 5 | 1.0 | -| test.c:858:9:858:9 | 2 | 1.0 | -| test.c:858:9:858:13 | ... * ... | 2.0 | -| test.c:858:9:858:18 | ... - ... | 2.0 | -| test.c:858:9:858:23 | ... == ... | 1.0 | -| test.c:858:13:858:13 | (int)... | 2.0 | -| test.c:858:13:858:13 | n | 2.0 | -| test.c:858:17:858:18 | 10 | 1.0 | -| test.c:858:23:858:23 | 0 | 1.0 | -| test.c:861:9:861:9 | (int)... | 2.0 | -| test.c:861:9:861:9 | n | 2.0 | -| test.c:864:7:864:7 | (int)... | 3.0 | -| test.c:864:7:864:7 | n | 3.0 | -| test.c:864:7:864:17 | ... != ... | 1.0 | -| test.c:864:7:864:32 | ... && ... | 1.0 | -| test.c:864:12:864:17 | - ... | 1.0 | -| test.c:864:13:864:17 | 32768 | 1.0 | -| test.c:864:22:864:22 | (int)... | 3.0 | -| test.c:864:22:864:22 | n | 3.0 | -| test.c:864:22:864:32 | ... != ... | 1.0 | -| test.c:864:27:864:32 | - ... | 1.0 | -| test.c:864:28:864:32 | 32767 | 1.0 | -| test.c:865:9:865:9 | (int)... | 3.0 | -| test.c:865:9:865:9 | n | 3.0 | -| test.c:868:7:868:7 | (int)... | 4.0 | -| test.c:868:7:868:7 | n | 4.0 | +| test.c:714:28:714:29 | 13 | 1.0 | +| test.c:714:28:714:29 | (unsigned int)... | 1.0 | +| test.c:714:28:714:34 | ... <= ... | 1.0 | +| test.c:714:34:714:34 | b | 7.0 | +| test.c:714:39:714:39 | b | 7.0 | +| test.c:714:39:714:45 | ... <= ... | 1.0 | +| test.c:714:44:714:45 | 23 | 1.0 | +| test.c:714:44:714:45 | (unsigned int)... | 1.0 | +| test.c:715:13:715:13 | a | 3.0 | +| test.c:715:13:715:15 | (int)... | 21.0 | +| test.c:715:13:715:15 | ... * ... | 21.0 | +| test.c:715:15:715:15 | b | 7.0 | +| test.c:716:5:716:9 | total | 14.0 | +| test.c:716:5:716:14 | ... += ... | 294.0 | +| test.c:716:14:716:14 | r | 21.0 | +| test.c:719:10:719:14 | total | 308.0 | +| test.c:723:14:723:15 | 0 | 1.0 | +| test.c:725:7:725:7 | 5 | 1.0 | +| test.c:725:7:725:7 | (unsigned int)... | 1.0 | +| test.c:725:7:725:12 | ... <= ... | 1.0 | +| test.c:725:7:725:23 | ... && ... | 1.0 | +| test.c:725:12:725:12 | b | 1.0 | +| test.c:725:17:725:17 | b | 1.0 | +| test.c:725:17:725:23 | ... <= ... | 1.0 | +| test.c:725:22:725:23 | 23 | 1.0 | +| test.c:725:22:725:23 | (unsigned int)... | 1.0 | +| test.c:726:13:726:14 | 11 | 1.0 | +| test.c:726:13:726:14 | (unsigned int)... | 1.0 | +| test.c:726:13:726:16 | (int)... | 1.0 | +| test.c:726:13:726:16 | ... * ... | 1.0 | +| test.c:726:16:726:16 | b | 1.0 | +| test.c:727:5:727:9 | total | 1.0 | +| test.c:727:5:727:14 | ... += ... | 1.0 | +| test.c:727:14:727:14 | r | 1.0 | +| test.c:729:7:729:7 | 0 | 1.0 | +| test.c:729:7:729:7 | (unsigned int)... | 1.0 | +| test.c:729:7:729:12 | ... <= ... | 1.0 | +| test.c:729:7:729:23 | ... && ... | 1.0 | +| test.c:729:12:729:12 | b | 2.0 | +| test.c:729:17:729:17 | b | 2.0 | +| test.c:729:17:729:23 | ... <= ... | 1.0 | +| test.c:729:22:729:23 | 23 | 1.0 | +| test.c:729:22:729:23 | (unsigned int)... | 1.0 | +| test.c:730:13:730:14 | 11 | 1.0 | +| test.c:730:13:730:14 | (unsigned int)... | 1.0 | +| test.c:730:13:730:16 | (int)... | 2.0 | +| test.c:730:13:730:16 | ... * ... | 2.0 | +| test.c:730:16:730:16 | b | 2.0 | +| test.c:731:5:731:9 | total | 2.0 | +| test.c:731:5:731:14 | ... += ... | 4.0 | +| test.c:731:14:731:14 | r | 2.0 | +| test.c:733:7:733:8 | 13 | 1.0 | +| test.c:733:7:733:8 | (unsigned int)... | 1.0 | +| test.c:733:7:733:13 | ... <= ... | 1.0 | +| test.c:733:7:733:24 | ... && ... | 1.0 | +| test.c:733:13:733:13 | b | 3.0 | +| test.c:733:18:733:18 | b | 3.0 | +| test.c:733:18:733:24 | ... <= ... | 1.0 | +| test.c:733:23:733:24 | 23 | 1.0 | +| test.c:733:23:733:24 | (unsigned int)... | 1.0 | +| test.c:734:13:734:14 | 11 | 1.0 | +| test.c:734:13:734:14 | (unsigned int)... | 1.0 | +| test.c:734:13:734:16 | (int)... | 3.0 | +| test.c:734:13:734:16 | ... * ... | 3.0 | +| test.c:734:16:734:16 | b | 3.0 | +| test.c:735:5:735:9 | total | 6.0 | +| test.c:735:5:735:14 | ... += ... | 18.0 | +| test.c:735:14:735:14 | r | 3.0 | +| test.c:738:10:738:14 | total | 24.0 | +| test.c:743:3:743:3 | x | 1.0 | +| test.c:743:3:743:22 | ... = ... | 1.0 | +| test.c:743:7:743:7 | y | 1.0 | +| test.c:743:7:743:22 | ... = ... | 1.0 | +| test.c:743:11:743:22 | 1000000003 | 1.0 | +| test.c:744:3:744:4 | xy | 1.0 | +| test.c:744:3:744:12 | ... = ... | 1.0 | +| test.c:744:8:744:8 | x | 1.0 | +| test.c:744:8:744:12 | ... * ... | 1.0 | +| test.c:744:12:744:12 | y | 1.0 | +| test.c:745:10:745:11 | xy | 1.0 | +| test.c:750:3:750:3 | x | 1.0 | +| test.c:750:3:750:14 | ... = ... | 1.0 | +| test.c:750:7:750:14 | 274177 | 1.0 | +| test.c:751:3:751:3 | y | 1.0 | +| test.c:751:3:751:22 | ... = ... | 1.0 | +| test.c:751:7:751:22 | 67280421310721 | 1.0 | +| test.c:752:3:752:4 | xy | 1.0 | +| test.c:752:3:752:12 | ... = ... | 1.0 | +| test.c:752:8:752:8 | x | 1.0 | +| test.c:752:8:752:12 | ... * ... | 1.0 | +| test.c:752:12:752:12 | y | 1.0 | +| test.c:753:10:753:11 | xy | 1.0 | +| test.c:757:7:757:8 | ui | 1.0 | +| test.c:757:7:757:14 | ... >= ... | 1.0 | +| test.c:757:13:757:14 | 10 | 1.0 | +| test.c:757:13:757:14 | (unsigned int)... | 1.0 | +| test.c:758:28:758:44 | (unsigned long)... | 1.0 | +| test.c:758:28:758:49 | ... * ... | 1.0 | +| test.c:758:43:758:44 | ui | 1.0 | +| test.c:758:48:758:49 | (unsigned long)... | 1.0 | +| test.c:758:48:758:49 | ui | 1.0 | +| test.c:759:12:759:17 | result | 1.0 | +| test.c:761:7:761:8 | ul | 1.0 | +| test.c:761:7:761:14 | ... >= ... | 1.0 | +| test.c:761:13:761:14 | 10 | 1.0 | +| test.c:761:13:761:14 | (unsigned long)... | 1.0 | +| test.c:762:28:762:29 | ul | 1.0 | +| test.c:762:28:762:34 | ... * ... | 1.0 | +| test.c:762:33:762:34 | ul | 1.0 | +| test.c:763:12:763:17 | result | 1.0 | +| test.c:765:10:765:10 | 0 | 1.0 | +| test.c:765:10:765:10 | (unsigned long)... | 1.0 | +| test.c:769:7:769:8 | ui | 1.0 | +| test.c:769:7:769:14 | ... <= ... | 1.0 | +| test.c:769:7:769:25 | ... && ... | 1.0 | +| test.c:769:13:769:14 | 10 | 1.0 | +| test.c:769:13:769:14 | (unsigned int)... | 1.0 | +| test.c:769:19:769:20 | ui | 1.0 | +| test.c:769:19:769:25 | ... >= ... | 1.0 | +| test.c:769:25:769:25 | 2 | 1.0 | +| test.c:769:25:769:25 | (unsigned int)... | 1.0 | +| test.c:770:5:770:6 | ui | 1.0 | +| test.c:770:5:770:16 | ... *= ... | 1.0 | +| test.c:770:11:770:12 | ui | 1.0 | +| test.c:770:11:770:16 | ... + ... | 1.0 | +| test.c:770:16:770:16 | 0 | 1.0 | +| test.c:770:16:770:16 | (unsigned int)... | 1.0 | +| test.c:771:12:771:13 | (unsigned long)... | 1.0 | +| test.c:771:12:771:13 | ui | 1.0 | +| test.c:774:26:774:27 | 10 | 1.0 | +| test.c:774:26:774:27 | (unsigned int)... | 1.0 | +| test.c:775:3:775:9 | uiconst | 1.0 | +| test.c:775:3:775:14 | ... *= ... | 1.0 | +| test.c:775:14:775:14 | 4 | 1.0 | +| test.c:775:14:775:14 | (unsigned int)... | 1.0 | +| test.c:777:27:777:28 | 10 | 1.0 | +| test.c:777:27:777:28 | (unsigned long)... | 1.0 | +| test.c:778:3:778:9 | ulconst | 1.0 | +| test.c:778:3:778:14 | ... *= ... | 1.0 | +| test.c:778:14:778:14 | 4 | 1.0 | +| test.c:778:14:778:14 | (unsigned long)... | 1.0 | +| test.c:779:10:779:16 | (unsigned long)... | 1.0 | +| test.c:779:10:779:16 | uiconst | 1.0 | +| test.c:779:10:779:26 | ... + ... | 1.0 | +| test.c:779:20:779:26 | ulconst | 1.0 | +| test.c:783:7:783:7 | i | 1.0 | +| test.c:783:7:783:13 | ... >= ... | 1.0 | +| test.c:783:7:783:23 | ... && ... | 1.0 | +| test.c:783:12:783:13 | - ... | 1.0 | +| test.c:783:13:783:13 | 1 | 1.0 | +| test.c:783:18:783:18 | i | 1.0 | +| test.c:783:18:783:23 | ... <= ... | 1.0 | +| test.c:783:23:783:23 | 2 | 1.0 | +| test.c:784:5:784:5 | i | 1.0 | +| test.c:784:5:784:13 | ... = ... | 1.0 | +| test.c:784:9:784:9 | 5 | 1.0 | +| test.c:784:9:784:13 | ... * ... | 1.0 | +| test.c:784:13:784:13 | i | 1.0 | +| test.c:785:9:785:9 | i | 1.0 | +| test.c:787:5:787:5 | i | 1.0 | +| test.c:787:5:787:14 | ... = ... | 1.0 | +| test.c:787:9:787:9 | i | 1.0 | +| test.c:787:9:787:14 | ... * ... | 1.0 | +| test.c:787:13:787:14 | - ... | 1.0 | +| test.c:787:14:787:14 | 3 | 1.0 | +| test.c:788:9:788:9 | i | 1.0 | +| test.c:790:5:790:5 | i | 1.0 | +| test.c:790:5:790:10 | ... *= ... | 1.0 | +| test.c:790:10:790:10 | 7 | 1.0 | +| test.c:791:9:791:9 | i | 1.0 | +| test.c:793:5:793:5 | i | 1.0 | +| test.c:793:5:793:12 | ... *= ... | 1.0 | +| test.c:793:10:793:12 | - ... | 1.0 | +| test.c:793:11:793:12 | 11 | 1.0 | +| test.c:794:9:794:9 | i | 1.0 | +| test.c:796:7:796:7 | i | 2.0 | +| test.c:796:7:796:13 | ... == ... | 1.0 | +| test.c:796:12:796:13 | - ... | 1.0 | +| test.c:796:13:796:13 | 1 | 1.0 | +| test.c:797:5:797:5 | i | 1.0 | +| test.c:797:5:797:27 | ... = ... | 2.0 | +| test.c:797:9:797:9 | i | 2.0 | +| test.c:797:9:797:27 | ... * ... | 2.0 | +| test.c:797:13:797:27 | (int)... | 1.0 | +| test.c:797:18:797:27 | 4294967295 | 1.0 | +| test.c:798:9:798:9 | i | 2.0 | +| test.c:800:3:800:3 | i | 1.0 | +| test.c:800:3:800:12 | ... = ... | 4.0 | +| test.c:800:7:800:7 | i | 4.0 | +| test.c:800:7:800:12 | ... * ... | 4.0 | +| test.c:800:11:800:12 | - ... | 1.0 | +| test.c:800:12:800:12 | 1 | 1.0 | +| test.c:801:10:801:10 | i | 4.0 | +| test.c:803:20:803:20 | 1 | 1.0 | +| test.c:803:20:803:20 | (signed char)... | 1.0 | +| test.c:804:3:804:3 | i | 1.0 | +| test.c:804:3:804:17 | ... = ... | 1.0 | +| test.c:804:7:804:17 | (...) | 1.0 | +| test.c:804:7:804:17 | (int)... | 1.0 | +| test.c:804:8:804:11 | * ... | 1.0 | +| test.c:804:8:804:16 | ... *= ... | 1.0 | +| test.c:804:10:804:11 | sc | 1.0 | +| test.c:804:16:804:16 | 2 | 1.0 | +| test.c:806:7:806:7 | i | 1.0 | +| test.c:808:10:808:10 | 0 | 1.0 | +| test.c:813:7:813:7 | (int)... | 1.0 | +| test.c:813:7:813:7 | n | 1.0 | +| test.c:815:7:815:7 | n | 1.0 | +| test.c:815:7:815:11 | ... > ... | 1.0 | +| test.c:815:11:815:11 | 0 | 1.0 | +| test.c:815:11:815:11 | (unsigned int)... | 1.0 | +| test.c:816:9:816:9 | (int)... | 1.0 | +| test.c:816:9:816:9 | n | 1.0 | +| test.c:819:7:819:7 | n | 2.0 | +| test.c:819:7:819:12 | ... != ... | 1.0 | +| test.c:819:12:819:12 | 0 | 1.0 | +| test.c:819:12:819:12 | (unsigned int)... | 1.0 | +| test.c:820:9:820:9 | (int)... | 2.0 | +| test.c:820:9:820:9 | n | 2.0 | +| test.c:822:9:822:9 | (int)... | 2.0 | +| test.c:822:9:822:9 | n | 2.0 | +| test.c:825:7:825:8 | ! ... | 1.0 | +| test.c:825:8:825:8 | n | 4.0 | +| test.c:826:9:826:9 | (int)... | 4.0 | +| test.c:826:9:826:9 | n | 4.0 | +| test.c:828:9:828:9 | (int)... | 4.0 | +| test.c:828:9:828:9 | n | 4.0 | +| test.c:831:10:831:10 | n | 13.0 | +| test.c:831:10:831:15 | ... != ... | 1.0 | +| test.c:831:15:831:15 | 0 | 1.0 | +| test.c:831:15:831:15 | (unsigned int)... | 1.0 | +| test.c:832:5:832:5 | n | 13.0 | +| test.c:832:5:832:7 | ... -- | 13.0 | +| test.c:835:7:835:7 | (int)... | 13.0 | +| test.c:835:7:835:7 | n | 13.0 | +| test.c:839:7:839:7 | (int)... | 1.0 | +| test.c:839:7:839:7 | n | 1.0 | +| test.c:839:7:839:11 | ... < ... | 1.0 | +| test.c:839:11:839:11 | 0 | 1.0 | +| test.c:842:7:842:7 | (int)... | 1.0 | +| test.c:842:7:842:7 | n | 1.0 | +| test.c:842:7:842:12 | ... == ... | 1.0 | +| test.c:842:12:842:12 | 0 | 1.0 | +| test.c:843:9:843:9 | (int)... | 1.0 | +| test.c:843:9:843:9 | n | 1.0 | +| test.c:845:9:845:9 | (int)... | 1.0 | +| test.c:845:9:845:9 | n | 1.0 | +| test.c:848:7:848:7 | n | 2.0 | +| test.c:849:9:849:9 | (int)... | 2.0 | +| test.c:849:9:849:9 | n | 2.0 | +| test.c:851:9:851:9 | (int)... | 2.0 | +| test.c:851:9:851:9 | n | 2.0 | +| test.c:854:10:854:10 | (int)... | 13.0 | +| test.c:854:10:854:10 | n | 12.0 | +| test.c:854:10:854:15 | ... != ... | 1.0 | +| test.c:854:15:854:15 | 0 | 1.0 | +| test.c:855:5:855:5 | n | 12.0 | +| test.c:855:5:855:7 | ... -- | 12.0 | +| test.c:858:7:858:7 | (int)... | 12.0 | +| test.c:858:7:858:7 | n | 12.0 | +| test.c:862:7:862:7 | (int)... | 1.0 | +| test.c:862:7:862:7 | n | 1.0 | +| test.c:862:7:862:12 | ... != ... | 1.0 | +| test.c:862:12:862:12 | 0 | 1.0 | +| test.c:863:9:863:9 | (int)... | 1.0 | +| test.c:863:9:863:9 | n | 1.0 | +| test.c:863:9:863:14 | ... >= ... | 1.0 | +| test.c:863:14:863:14 | 0 | 1.0 | +| test.c:864:11:864:11 | (int)... | 1.0 | +| test.c:864:11:864:11 | n | 1.0 | +| test.c:868:7:868:7 | (int)... | 2.0 | +| test.c:868:7:868:7 | n | 2.0 | | test.c:868:7:868:12 | ... >= ... | 1.0 | -| test.c:868:12:868:12 | 0 | 1.0 | -| test.c:869:5:869:5 | n | 4.0 | -| test.c:869:5:869:14 | ... ? ... : ... | 16.0 | -| test.c:869:10:869:10 | (int)... | 4.0 | -| test.c:869:10:869:10 | n | 4.0 | -| test.c:869:14:869:14 | (int)... | 4.0 | -| test.c:869:14:869:14 | n | 4.0 | -| test.c:870:5:870:6 | ! ... | 1.0 | -| test.c:870:5:870:14 | ... ? ... : ... | 64.0 | -| test.c:870:6:870:6 | n | 8.0 | -| test.c:870:10:870:10 | (int)... | 8.0 | -| test.c:870:10:870:10 | n | 8.0 | -| test.c:870:14:870:14 | (int)... | 8.0 | -| test.c:870:14:870:14 | n | 8.0 | -| test.c:881:7:881:8 | (unsigned long)... | 1.0 | -| test.c:881:7:881:8 | ss | 1.0 | -| test.c:881:7:881:22 | ... < ... | 1.0 | -| test.c:881:12:881:22 | sizeof(int) | 1.0 | -| test.c:882:9:882:10 | (int)... | 1.0 | -| test.c:882:9:882:10 | ss | 1.0 | -| test.c:885:7:885:8 | (int)... | 2.0 | -| test.c:885:7:885:8 | ss | 2.0 | -| test.c:885:7:885:17 | ... < ... | 1.0 | -| test.c:885:12:885:17 | 32769 | 1.0 | -| test.c:886:9:886:10 | (int)... | 2.0 | -| test.c:886:9:886:10 | ss | 2.0 | -| test.c:889:7:889:15 | (int)... | 1.0 | -| test.c:889:7:889:15 | (short)... | 1.0 | -| test.c:889:7:889:20 | ... >= ... | 1.0 | -| test.c:889:14:889:15 | us | 1.0 | -| test.c:889:20:889:20 | 0 | 1.0 | -| test.c:890:9:890:10 | (int)... | 1.0 | -| test.c:890:9:890:10 | us | 1.0 | -| test.c:893:7:893:15 | (int)... | 2.0 | -| test.c:893:7:893:15 | (short)... | 2.0 | -| test.c:893:7:893:21 | ... >= ... | 1.0 | -| test.c:893:14:893:15 | us | 2.0 | -| test.c:893:20:893:21 | - ... | 1.0 | -| test.c:893:21:893:21 | 1 | 1.0 | -| test.c:894:9:894:10 | (int)... | 2.0 | -| test.c:894:9:894:10 | us | 2.0 | -| test.c:897:7:897:8 | (unsigned long)... | 3.0 | -| test.c:897:7:897:8 | ss | 3.0 | -| test.c:897:7:897:23 | ... >= ... | 1.0 | -| test.c:897:13:897:23 | sizeof(int) | 1.0 | -| test.c:898:9:898:10 | (int)... | 3.0 | -| test.c:898:9:898:10 | ss | 3.0 | -| test.c:901:7:901:8 | (int)... | 4.0 | -| test.c:901:7:901:8 | ss | 4.0 | -| test.c:901:7:901:12 | (unsigned long)... | 4.0 | -| test.c:901:7:901:12 | ... + ... | 4.0 | -| test.c:901:7:901:26 | ... < ... | 1.0 | -| test.c:901:12:901:12 | 1 | 1.0 | -| test.c:901:16:901:26 | sizeof(int) | 1.0 | -| test.c:902:9:902:10 | (int)... | 4.0 | -| test.c:902:9:902:10 | ss | 4.0 | -| test.c:908:8:908:8 | s | 1.0 | -| test.c:908:8:908:12 | ... = ... | 1.0 | -| test.c:908:12:908:12 | 0 | 1.0 | -| test.c:908:15:908:15 | s | 13.0 | -| test.c:908:15:908:20 | ... < ... | 1.0 | -| test.c:908:19:908:20 | 10 | 1.0 | -| test.c:908:23:908:23 | s | 13.0 | -| test.c:908:23:908:25 | ... ++ | 13.0 | -| test.c:909:18:909:18 | s | 13.0 | -| test.c:909:18:909:22 | ... + ... | 13.0 | -| test.c:909:22:909:22 | s | 13.0 | -| test.c:910:9:910:14 | result | 13.0 | -| test.c:915:10:915:11 | 0 | 1.0 | -| test.c:916:7:916:7 | i | 1.0 | -| test.c:916:7:916:11 | ... < ... | 1.0 | -| test.c:916:11:916:11 | 0 | 1.0 | -| test.c:917:9:917:9 | i | 1.0 | -| test.c:920:20:920:20 | 0 | 1.0 | -| test.c:920:20:920:20 | (unsigned int)... | 1.0 | -| test.c:921:7:921:7 | u | 1.0 | -| test.c:921:7:921:11 | ... < ... | 1.0 | -| test.c:921:11:921:11 | 0 | 1.0 | -| test.c:921:11:921:11 | (unsigned int)... | 1.0 | -| test.c:922:9:922:9 | (int)... | 1.0 | -| test.c:922:9:922:9 | u | 1.0 | -| test.c:927:12:927:12 | s | 1.0 | -| test.c:927:12:927:16 | ... % ... | 1.0 | -| test.c:927:16:927:16 | 5 | 1.0 | -| test.c:928:7:928:8 | s2 | 1.0 | -| test.c:933:7:933:7 | x | 1.0 | -| test.c:934:9:934:9 | y | 1.0 | -| test.c:934:9:934:14 | ... != ... | 1.0 | -| test.c:934:14:934:14 | 0 | 1.0 | -| test.c:935:12:935:12 | 0 | 1.0 | -| test.c:938:7:938:7 | y | 2.0 | -| test.c:947:7:947:7 | x | 1.0 | -| test.c:947:7:947:13 | ... >= ... | 1.0 | -| test.c:947:12:947:13 | 10 | 1.0 | -| test.c:952:7:952:7 | x | 13.0 | -| test.c:957:16:957:26 | 2147483647 | 1.0 | -| test.c:958:16:958:19 | 256 | 1.0 | -| test.c:959:7:959:13 | (...) | 1.0 | -| test.c:959:7:959:20 | ... <= ... | 1.0 | -| test.c:959:8:959:8 | x | 1.0 | -| test.c:959:8:959:12 | ... + ... | 1.0 | -| test.c:959:12:959:12 | y | 1.0 | -| test.c:959:18:959:20 | 512 | 1.0 | -| test.c:960:9:960:9 | x | 1.0 | -| test.c:961:9:961:9 | y | 1.0 | +| test.c:868:12:868:12 | 5 | 1.0 | +| test.c:869:9:869:9 | 2 | 1.0 | +| test.c:869:9:869:13 | ... * ... | 2.0 | +| test.c:869:9:869:18 | ... - ... | 2.0 | +| test.c:869:9:869:23 | ... == ... | 1.0 | +| test.c:869:13:869:13 | (int)... | 2.0 | +| test.c:869:13:869:13 | n | 2.0 | +| test.c:869:17:869:18 | 10 | 1.0 | +| test.c:869:23:869:23 | 0 | 1.0 | +| test.c:872:9:872:9 | (int)... | 2.0 | +| test.c:872:9:872:9 | n | 2.0 | +| test.c:875:7:875:7 | (int)... | 3.0 | +| test.c:875:7:875:7 | n | 3.0 | +| test.c:875:7:875:17 | ... != ... | 1.0 | +| test.c:875:7:875:32 | ... && ... | 1.0 | +| test.c:875:12:875:17 | - ... | 1.0 | +| test.c:875:13:875:17 | 32768 | 1.0 | +| test.c:875:22:875:22 | (int)... | 3.0 | +| test.c:875:22:875:22 | n | 3.0 | +| test.c:875:22:875:32 | ... != ... | 1.0 | +| test.c:875:27:875:32 | - ... | 1.0 | +| test.c:875:28:875:32 | 32767 | 1.0 | +| test.c:876:9:876:9 | (int)... | 3.0 | +| test.c:876:9:876:9 | n | 3.0 | +| test.c:879:7:879:7 | (int)... | 4.0 | +| test.c:879:7:879:7 | n | 4.0 | +| test.c:879:7:879:12 | ... >= ... | 1.0 | +| test.c:879:12:879:12 | 0 | 1.0 | +| test.c:880:5:880:5 | n | 4.0 | +| test.c:880:5:880:14 | ... ? ... : ... | 16.0 | +| test.c:880:10:880:10 | (int)... | 4.0 | +| test.c:880:10:880:10 | n | 4.0 | +| test.c:880:14:880:14 | (int)... | 4.0 | +| test.c:880:14:880:14 | n | 4.0 | +| test.c:881:5:881:6 | ! ... | 1.0 | +| test.c:881:5:881:14 | ... ? ... : ... | 64.0 | +| test.c:881:6:881:6 | n | 8.0 | +| test.c:881:10:881:10 | (int)... | 8.0 | +| test.c:881:10:881:10 | n | 8.0 | +| test.c:881:14:881:14 | (int)... | 8.0 | +| test.c:881:14:881:14 | n | 8.0 | +| test.c:892:7:892:8 | (unsigned long)... | 1.0 | +| test.c:892:7:892:8 | ss | 1.0 | +| test.c:892:7:892:22 | ... < ... | 1.0 | +| test.c:892:12:892:22 | sizeof(int) | 1.0 | +| test.c:893:9:893:10 | (int)... | 1.0 | +| test.c:893:9:893:10 | ss | 1.0 | +| test.c:896:7:896:8 | (int)... | 2.0 | +| test.c:896:7:896:8 | ss | 2.0 | +| test.c:896:7:896:17 | ... < ... | 1.0 | +| test.c:896:12:896:17 | 32769 | 1.0 | +| test.c:897:9:897:10 | (int)... | 2.0 | +| test.c:897:9:897:10 | ss | 2.0 | +| test.c:900:7:900:15 | (int)... | 1.0 | +| test.c:900:7:900:15 | (short)... | 1.0 | +| test.c:900:7:900:20 | ... >= ... | 1.0 | +| test.c:900:14:900:15 | us | 1.0 | +| test.c:900:20:900:20 | 0 | 1.0 | +| test.c:901:9:901:10 | (int)... | 1.0 | +| test.c:901:9:901:10 | us | 1.0 | +| test.c:904:7:904:15 | (int)... | 2.0 | +| test.c:904:7:904:15 | (short)... | 2.0 | +| test.c:904:7:904:21 | ... >= ... | 1.0 | +| test.c:904:14:904:15 | us | 2.0 | +| test.c:904:20:904:21 | - ... | 1.0 | +| test.c:904:21:904:21 | 1 | 1.0 | +| test.c:905:9:905:10 | (int)... | 2.0 | +| test.c:905:9:905:10 | us | 2.0 | +| test.c:908:7:908:8 | (unsigned long)... | 3.0 | +| test.c:908:7:908:8 | ss | 3.0 | +| test.c:908:7:908:23 | ... >= ... | 1.0 | +| test.c:908:13:908:23 | sizeof(int) | 1.0 | +| test.c:909:9:909:10 | (int)... | 3.0 | +| test.c:909:9:909:10 | ss | 3.0 | +| test.c:912:7:912:8 | (int)... | 4.0 | +| test.c:912:7:912:8 | ss | 4.0 | +| test.c:912:7:912:12 | (unsigned long)... | 4.0 | +| test.c:912:7:912:12 | ... + ... | 4.0 | +| test.c:912:7:912:26 | ... < ... | 1.0 | +| test.c:912:12:912:12 | 1 | 1.0 | +| test.c:912:16:912:26 | sizeof(int) | 1.0 | +| test.c:913:9:913:10 | (int)... | 4.0 | +| test.c:913:9:913:10 | ss | 4.0 | +| test.c:919:8:919:8 | s | 1.0 | +| test.c:919:8:919:12 | ... = ... | 1.0 | +| test.c:919:12:919:12 | 0 | 1.0 | +| test.c:919:15:919:15 | s | 13.0 | +| test.c:919:15:919:20 | ... < ... | 1.0 | +| test.c:919:19:919:20 | 10 | 1.0 | +| test.c:919:23:919:23 | s | 13.0 | +| test.c:919:23:919:25 | ... ++ | 13.0 | +| test.c:920:18:920:18 | s | 13.0 | +| test.c:920:18:920:22 | ... + ... | 13.0 | +| test.c:920:22:920:22 | s | 13.0 | +| test.c:921:9:921:14 | result | 13.0 | +| test.c:926:10:926:11 | 0 | 1.0 | +| test.c:927:7:927:7 | i | 1.0 | +| test.c:927:7:927:11 | ... < ... | 1.0 | +| test.c:927:11:927:11 | 0 | 1.0 | +| test.c:928:9:928:9 | i | 1.0 | +| test.c:931:20:931:20 | 0 | 1.0 | +| test.c:931:20:931:20 | (unsigned int)... | 1.0 | +| test.c:932:7:932:7 | u | 1.0 | +| test.c:932:7:932:11 | ... < ... | 1.0 | +| test.c:932:11:932:11 | 0 | 1.0 | +| test.c:932:11:932:11 | (unsigned int)... | 1.0 | +| test.c:933:9:933:9 | (int)... | 1.0 | +| test.c:933:9:933:9 | u | 1.0 | +| test.c:938:12:938:12 | s | 1.0 | +| test.c:938:12:938:16 | ... % ... | 1.0 | +| test.c:938:16:938:16 | 5 | 1.0 | +| test.c:939:7:939:8 | s2 | 1.0 | +| test.c:944:7:944:7 | x | 1.0 | +| test.c:945:9:945:9 | y | 1.0 | +| test.c:945:9:945:14 | ... != ... | 1.0 | +| test.c:945:14:945:14 | 0 | 1.0 | +| test.c:946:12:946:12 | 0 | 1.0 | +| test.c:949:7:949:7 | y | 2.0 | +| test.c:958:7:958:7 | x | 1.0 | +| test.c:958:7:958:13 | ... >= ... | 1.0 | +| test.c:958:12:958:13 | 10 | 1.0 | +| test.c:963:7:963:7 | x | 13.0 | +| test.c:968:16:968:26 | 2147483647 | 1.0 | +| test.c:969:16:969:19 | 256 | 1.0 | +| test.c:970:7:970:13 | (...) | 1.0 | +| test.c:970:7:970:20 | ... <= ... | 1.0 | +| test.c:970:8:970:8 | x | 1.0 | +| test.c:970:8:970:12 | ... + ... | 1.0 | +| test.c:970:12:970:12 | y | 1.0 | +| test.c:970:18:970:20 | 512 | 1.0 | +| test.c:971:9:971:9 | x | 1.0 | +| test.c:972:9:972:9 | y | 1.0 | | test.cpp:9:11:9:12 | - ... | 1.0 | | test.cpp:9:12:9:12 | 1 | 1.0 | | test.cpp:10:7:10:7 | (bool)... | 1.0 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected index 3edc677b717..50b65d84bf3 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected @@ -1,148 +1,153 @@ | test.c:154:10:154:40 | ... ? ... : ... | -1.0 | 1.0 | -1.0 | -| test.c:367:8:367:23 | ... ? ... : ... | 0.0 | 0.0 | 10.0 | -| test.c:368:8:368:24 | ... ? ... : ... | 0.0 | 10.0 | 0.0 | -| test.c:376:10:376:15 | ... ? ... : ... | 0.0 | 0.0 | 5.0 | -| test.c:377:10:377:17 | ... ? ... : ... | 0.0 | 0.0 | 500.0 | -| test.c:378:10:378:21 | ... ? ... : ... | 1.0 | 1.0 | 500.0 | -| test.c:379:10:379:36 | ... ? ... : ... | 0.0 | 1.0 | 5.0 | -| test.c:380:10:380:38 | ... ? ... : ... | 0.0 | 1.0 | 500.0 | -| test.c:381:10:381:39 | ... ? ... : ... | 1.0 | 1.0 | 500.0 | -| test.c:389:8:389:24 | ... ? ... : ... | 101.0 | 101.0 | 110.0 | -| test.c:390:8:390:25 | ... ? ... : ... | 101.0 | 110.0 | 101.0 | -| test.c:395:10:395:21 | ... ? ... : ... | 0.0 | 0.0 | 5.0 | -| test.c:396:10:396:21 | ... ? ... : ... | 100.0 | 100.0 | 5.0 | -| test.c:397:10:397:38 | ... ? ... : ... | 0.0 | 100.0 | 5.0 | -| test.c:404:14:404:108 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.40496805 | -| test.c:404:18:404:95 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.21540225 | -| test.c:404:22:404:82 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.39206458 | -| test.c:404:26:404:69 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.35279203 | -| test.c:404:30:404:56 | ... ? ... : ... | 0.14333887 | 0.47438827 | 0.14333887 | -| test.c:405:14:405:108 | ... ? ... : ... | 0.22247853 | 0.22247853 | 0.5297741 | -| test.c:405:18:405:95 | ... ? ... : ... | 0.22247853 | 0.22247853 | 0.59270465 | -| test.c:405:22:405:82 | ... ? ... : ... | 0.22247853 | 0.22247853 | 0.32661893 | -| test.c:405:26:405:69 | ... ? ... : ... | 0.22247853 | 0.34183348 | 0.22247853 | -| test.c:405:30:405:56 | ... ? ... : ... | 0.34183348 | 0.34183348 | 0.3533464 | -| test.c:406:14:406:108 | ... ? ... : ... | 0.05121256 | 0.05121256 | 0.67981451 | -| test.c:406:18:406:95 | ... ? ... : ... | 0.05121256 | 0.05121256 | 0.79310745 | -| test.c:406:22:406:82 | ... ? ... : ... | 0.05121256 | 0.31235514 | 0.05121256 | -| test.c:406:26:406:69 | ... ? ... : ... | 0.31235514 | 0.31478084 | 0.31235514 | -| test.c:406:30:406:56 | ... ? ... : ... | 0.31478084 | 0.77429603 | 0.31478084 | -| test.c:407:14:407:108 | ... ? ... : ... | 0.36976948 | 0.36976948 | 0.83866835 | -| test.c:407:18:407:95 | ... ? ... : ... | 0.36976948 | 0.44729556 | 0.36976948 | -| test.c:407:22:407:82 | ... ? ... : ... | 0.44729556 | 0.44729556 | 0.59952732 | -| test.c:407:26:407:69 | ... ? ... : ... | 0.44729556 | 0.44729556 | 0.98997262 | -| test.c:407:30:407:56 | ... ? ... : ... | 0.44729556 | 0.44729556 | 0.80599202 | -| test.c:408:14:408:108 | ... ? ... : ... | 0.10597712 | 0.10597712 | 0.68734874 | -| test.c:408:18:408:95 | ... ? ... : ... | 0.10597712 | 0.10597712 | 0.72485966 | -| test.c:408:22:408:82 | ... ? ... : ... | 0.10597712 | 0.10597712 | 0.21778426 | -| test.c:408:26:408:69 | ... ? ... : ... | 0.10597712 | 0.49311828 | 0.10597712 | -| test.c:408:30:408:56 | ... ? ... : ... | 0.49311828 | 0.49311828 | 0.90389911 | -| test.c:409:14:409:108 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.58440865 | -| test.c:409:18:409:95 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.34808892 | -| test.c:409:22:409:82 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.76164052 | -| test.c:409:26:409:69 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.11884576 | -| test.c:409:30:409:56 | ... ? ... : ... | 0.1078665 | 0.47452848 | 0.1078665 | -| test.c:410:14:410:108 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.36232384 | -| test.c:410:18:410:95 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.85235179 | -| test.c:410:22:410:82 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.12516558 | -| test.c:410:26:410:69 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.95823075 | -| test.c:410:30:410:56 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.82905046 | -| test.c:411:14:411:108 | ... ? ... : ... | 0.14963485 | 0.14963485 | 0.84331272 | -| test.c:411:18:411:95 | ... ? ... : ... | 0.14963485 | 0.14963485 | 0.48640909 | -| test.c:411:22:411:82 | ... ? ... : ... | 0.14963485 | 0.14963485 | 0.45041108 | -| test.c:411:26:411:69 | ... ? ... : ... | 0.14963485 | 0.32876044 | 0.14963485 | -| test.c:411:30:411:56 | ... ? ... : ... | 0.32876044 | 0.38708626 | 0.32876044 | -| test.c:412:14:412:108 | ... ? ... : ... | 0.05328182 | 0.14800508 | 0.05328182 | -| test.c:412:18:412:95 | ... ? ... : ... | 0.14800508 | 0.14800508 | 0.37428143 | -| test.c:412:22:412:82 | ... ? ... : ... | 0.14800508 | 0.15755063 | 0.14800508 | -| test.c:412:26:412:69 | ... ? ... : ... | 0.15755063 | 0.15755063 | 0.26428481 | -| test.c:412:30:412:56 | ... ? ... : ... | 0.15755063 | 0.15755063 | 0.77086833 | -| test.c:413:14:413:108 | ... ? ... : ... | 0.27643238 | 0.27643238 | 0.69072144 | -| test.c:413:18:413:95 | ... ? ... : ... | 0.27643238 | 0.27643238 | 0.39468857 | -| test.c:413:22:413:82 | ... ? ... : ... | 0.27643238 | 0.27643238 | 0.55679274 | -| test.c:413:26:413:69 | ... ? ... : ... | 0.27643238 | 0.41736536 | 0.27643238 | -| test.c:413:30:413:56 | ... ? ... : ... | 0.41736536 | 0.41736536 | 0.76826628 | -| test.c:414:14:414:108 | ... ? ... : ... | 0.2051911 | 0.2051911 | 0.81372798 | -| test.c:414:18:414:95 | ... ? ... : ... | 0.2051911 | 0.2051911 | 0.88745559 | -| test.c:414:22:414:82 | ... ? ... : ... | 0.2051911 | 0.29904824 | 0.2051911 | -| test.c:414:26:414:69 | ... ? ... : ... | 0.29904824 | 0.29904824 | 0.76242583 | -| test.c:414:30:414:56 | ... ? ... : ... | 0.29904824 | 0.88955345 | 0.29904824 | -| test.c:415:14:415:108 | ... ? ... : ... | 0.13204114 | 0.13204114 | 0.42762647 | -| test.c:415:18:415:95 | ... ? ... : ... | 0.13204114 | 0.13204114 | 0.52031241 | -| test.c:415:22:415:82 | ... ? ... : ... | 0.13204114 | 0.42186276 | 0.13204114 | -| test.c:415:26:415:69 | ... ? ... : ... | 0.42186276 | 0.42186276 | 0.44996679 | -| test.c:415:30:415:56 | ... ? ... : ... | 0.42186276 | 0.42186276 | 0.53843358 | -| test.c:457:4:631:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:457:5:459:49 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:460:6:542:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:461:8:479:41 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:464:10:468:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:464:31:464:79 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:466:13:468:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:473:12:478:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:474:12:474:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:476:15:478:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:480:6:499:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:483:8:487:19 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:483:29:483:77 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:485:11:487:19 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:488:6:488:54 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:492:10:496:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:492:31:492:79 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:494:13:496:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:497:9:499:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:501:10:520:43 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:504:12:509:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:505:12:505:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:507:15:509:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:514:14:519:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:515:14:515:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:517:17:519:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:521:9:542:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:524:14:529:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:525:14:525:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:527:17:529:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:530:12:530:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:534:12:539:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:535:12:535:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:537:15:539:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:540:11:542:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:543:9:545:51 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:546:9:631:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:547:14:566:47 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:550:16:555:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:551:16:551:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:553:19:555:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:560:18:565:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:561:18:561:66 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:563:21:565:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:567:12:588:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:570:14:575:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:571:14:571:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:573:17:575:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:576:12:576:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:580:16:585:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:581:16:581:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:583:19:585:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:586:15:588:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:590:12:609:45 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:593:14:598:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:594:14:594:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:596:17:598:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:603:16:608:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:604:16:604:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:606:19:608:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:610:11:631:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:613:16:618:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:614:16:614:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:616:19:618:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:619:14:619:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:623:14:628:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:624:14:624:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:626:17:628:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:629:13:631:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | -| test.c:657:20:657:36 | ... ? ... : ... | 0.0 | 0.0 | 100.0 | -| test.c:869:5:869:14 | ... ? ... : ... | 0.0 | 1.0 | 0.0 | -| test.c:870:5:870:14 | ... ? ... : ... | 0.0 | 0.0 | 1.0 | +| test.c:348:22:348:44 | ... ? ... : ... | 0.0 | 0.0 | 2.0 | +| test.c:349:20:349:43 | ... ? ... : ... | 0.0 | 0.0 | 2.0 | +| test.c:350:22:350:44 | ... ? ... : ... | 0.0 | 0.0 | 2.0 | +| test.c:351:22:351:44 | ... ? ... : ... | 0.0 | 0.0 | 2.0 | +| test.c:352:22:352:45 | ... ? ... : ... | 2.0 | 8.0 | 2.0 | +| test.c:378:8:378:23 | ... ? ... : ... | 0.0 | 0.0 | 10.0 | +| test.c:379:8:379:24 | ... ? ... : ... | 0.0 | 10.0 | 0.0 | +| test.c:387:10:387:15 | ... ? ... : ... | 0.0 | 0.0 | 5.0 | +| test.c:388:10:388:17 | ... ? ... : ... | 0.0 | 0.0 | 500.0 | +| test.c:389:10:389:21 | ... ? ... : ... | 1.0 | 1.0 | 500.0 | +| test.c:390:10:390:36 | ... ? ... : ... | 0.0 | 1.0 | 5.0 | +| test.c:391:10:391:38 | ... ? ... : ... | 0.0 | 1.0 | 500.0 | +| test.c:392:10:392:39 | ... ? ... : ... | 1.0 | 1.0 | 500.0 | +| test.c:400:8:400:24 | ... ? ... : ... | 101.0 | 101.0 | 110.0 | +| test.c:401:8:401:25 | ... ? ... : ... | 101.0 | 110.0 | 101.0 | +| test.c:406:10:406:21 | ... ? ... : ... | 0.0 | 0.0 | 5.0 | +| test.c:407:10:407:21 | ... ? ... : ... | 100.0 | 100.0 | 5.0 | +| test.c:408:10:408:38 | ... ? ... : ... | 0.0 | 100.0 | 5.0 | +| test.c:415:14:415:108 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.40496805 | +| test.c:415:18:415:95 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.21540225 | +| test.c:415:22:415:82 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.39206458 | +| test.c:415:26:415:69 | ... ? ... : ... | 0.14333887 | 0.14333887 | 0.35279203 | +| test.c:415:30:415:56 | ... ? ... : ... | 0.14333887 | 0.47438827 | 0.14333887 | +| test.c:416:14:416:108 | ... ? ... : ... | 0.22247853 | 0.22247853 | 0.5297741 | +| test.c:416:18:416:95 | ... ? ... : ... | 0.22247853 | 0.22247853 | 0.59270465 | +| test.c:416:22:416:82 | ... ? ... : ... | 0.22247853 | 0.22247853 | 0.32661893 | +| test.c:416:26:416:69 | ... ? ... : ... | 0.22247853 | 0.34183348 | 0.22247853 | +| test.c:416:30:416:56 | ... ? ... : ... | 0.34183348 | 0.34183348 | 0.3533464 | +| test.c:417:14:417:108 | ... ? ... : ... | 0.05121256 | 0.05121256 | 0.67981451 | +| test.c:417:18:417:95 | ... ? ... : ... | 0.05121256 | 0.05121256 | 0.79310745 | +| test.c:417:22:417:82 | ... ? ... : ... | 0.05121256 | 0.31235514 | 0.05121256 | +| test.c:417:26:417:69 | ... ? ... : ... | 0.31235514 | 0.31478084 | 0.31235514 | +| test.c:417:30:417:56 | ... ? ... : ... | 0.31478084 | 0.77429603 | 0.31478084 | +| test.c:418:14:418:108 | ... ? ... : ... | 0.36976948 | 0.36976948 | 0.83866835 | +| test.c:418:18:418:95 | ... ? ... : ... | 0.36976948 | 0.44729556 | 0.36976948 | +| test.c:418:22:418:82 | ... ? ... : ... | 0.44729556 | 0.44729556 | 0.59952732 | +| test.c:418:26:418:69 | ... ? ... : ... | 0.44729556 | 0.44729556 | 0.98997262 | +| test.c:418:30:418:56 | ... ? ... : ... | 0.44729556 | 0.44729556 | 0.80599202 | +| test.c:419:14:419:108 | ... ? ... : ... | 0.10597712 | 0.10597712 | 0.68734874 | +| test.c:419:18:419:95 | ... ? ... : ... | 0.10597712 | 0.10597712 | 0.72485966 | +| test.c:419:22:419:82 | ... ? ... : ... | 0.10597712 | 0.10597712 | 0.21778426 | +| test.c:419:26:419:69 | ... ? ... : ... | 0.10597712 | 0.49311828 | 0.10597712 | +| test.c:419:30:419:56 | ... ? ... : ... | 0.49311828 | 0.49311828 | 0.90389911 | +| test.c:420:14:420:108 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.58440865 | +| test.c:420:18:420:95 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.34808892 | +| test.c:420:22:420:82 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.76164052 | +| test.c:420:26:420:69 | ... ? ... : ... | 0.1078665 | 0.1078665 | 0.11884576 | +| test.c:420:30:420:56 | ... ? ... : ... | 0.1078665 | 0.47452848 | 0.1078665 | +| test.c:421:14:421:108 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.36232384 | +| test.c:421:18:421:95 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.85235179 | +| test.c:421:22:421:82 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.12516558 | +| test.c:421:26:421:69 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.95823075 | +| test.c:421:30:421:56 | ... ? ... : ... | 0.02524326 | 0.02524326 | 0.82905046 | +| test.c:422:14:422:108 | ... ? ... : ... | 0.14963485 | 0.14963485 | 0.84331272 | +| test.c:422:18:422:95 | ... ? ... : ... | 0.14963485 | 0.14963485 | 0.48640909 | +| test.c:422:22:422:82 | ... ? ... : ... | 0.14963485 | 0.14963485 | 0.45041108 | +| test.c:422:26:422:69 | ... ? ... : ... | 0.14963485 | 0.32876044 | 0.14963485 | +| test.c:422:30:422:56 | ... ? ... : ... | 0.32876044 | 0.38708626 | 0.32876044 | +| test.c:423:14:423:108 | ... ? ... : ... | 0.05328182 | 0.14800508 | 0.05328182 | +| test.c:423:18:423:95 | ... ? ... : ... | 0.14800508 | 0.14800508 | 0.37428143 | +| test.c:423:22:423:82 | ... ? ... : ... | 0.14800508 | 0.15755063 | 0.14800508 | +| test.c:423:26:423:69 | ... ? ... : ... | 0.15755063 | 0.15755063 | 0.26428481 | +| test.c:423:30:423:56 | ... ? ... : ... | 0.15755063 | 0.15755063 | 0.77086833 | +| test.c:424:14:424:108 | ... ? ... : ... | 0.27643238 | 0.27643238 | 0.69072144 | +| test.c:424:18:424:95 | ... ? ... : ... | 0.27643238 | 0.27643238 | 0.39468857 | +| test.c:424:22:424:82 | ... ? ... : ... | 0.27643238 | 0.27643238 | 0.55679274 | +| test.c:424:26:424:69 | ... ? ... : ... | 0.27643238 | 0.41736536 | 0.27643238 | +| test.c:424:30:424:56 | ... ? ... : ... | 0.41736536 | 0.41736536 | 0.76826628 | +| test.c:425:14:425:108 | ... ? ... : ... | 0.2051911 | 0.2051911 | 0.81372798 | +| test.c:425:18:425:95 | ... ? ... : ... | 0.2051911 | 0.2051911 | 0.88745559 | +| test.c:425:22:425:82 | ... ? ... : ... | 0.2051911 | 0.29904824 | 0.2051911 | +| test.c:425:26:425:69 | ... ? ... : ... | 0.29904824 | 0.29904824 | 0.76242583 | +| test.c:425:30:425:56 | ... ? ... : ... | 0.29904824 | 0.88955345 | 0.29904824 | +| test.c:426:14:426:108 | ... ? ... : ... | 0.13204114 | 0.13204114 | 0.42762647 | +| test.c:426:18:426:95 | ... ? ... : ... | 0.13204114 | 0.13204114 | 0.52031241 | +| test.c:426:22:426:82 | ... ? ... : ... | 0.13204114 | 0.42186276 | 0.13204114 | +| test.c:426:26:426:69 | ... ? ... : ... | 0.42186276 | 0.42186276 | 0.44996679 | +| test.c:426:30:426:56 | ... ? ... : ... | 0.42186276 | 0.42186276 | 0.53843358 | +| test.c:468:4:642:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:468:5:470:49 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:471:6:553:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:472:8:490:41 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:475:10:479:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:475:31:475:79 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:477:13:479:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:484:12:489:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:485:12:485:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:487:15:489:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:491:6:510:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:494:8:498:19 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:494:29:494:77 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:496:11:498:19 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:499:6:499:54 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:503:10:507:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:503:31:503:79 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:505:13:507:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:508:9:510:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:512:10:531:43 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:515:12:520:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:516:12:516:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:518:15:520:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:525:14:530:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:526:14:526:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:528:17:530:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:532:9:553:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:535:14:540:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:536:14:536:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:538:17:540:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:541:12:541:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:545:12:550:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:546:12:546:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:548:15:550:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:551:11:553:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:554:9:556:51 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:557:9:642:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:558:14:577:47 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:561:16:566:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:562:16:562:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:564:19:566:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:571:18:576:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:572:18:572:66 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:574:21:576:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:578:12:599:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:581:14:586:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:582:14:582:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:584:17:586:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:587:12:587:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:591:16:596:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:592:16:592:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:594:19:596:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:597:15:599:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:601:12:620:45 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:604:14:609:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:605:14:605:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:607:17:609:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:614:16:619:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:615:16:615:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:617:19:619:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:621:11:642:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:624:16:629:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:625:16:625:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:627:19:629:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:630:14:630:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:634:14:639:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:635:14:635:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:637:17:639:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:640:13:642:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:668:20:668:36 | ... ? ... : ... | 0.0 | 0.0 | 100.0 | +| test.c:880:5:880:14 | ... ? ... : ... | 0.0 | 1.0 | 0.0 | +| test.c:881:5:881:14 | ... ? ... : ... | 0.0 | 0.0 | 1.0 | | test.cpp:121:3:121:12 | ... ? ... : ... | 0.0 | 1.0 | 0.0 | | test.cpp:122:3:122:12 | ... ? ... : ... | 0.0 | 0.0 | 1.0 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected index 9ffdab9467c..3b3a00df6b9 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected @@ -1,148 +1,153 @@ | test.c:154:10:154:40 | ... ? ... : ... | 2.147483647E9 | 2.147483647E9 | -1.0 | -| test.c:367:8:367:23 | ... ? ... : ... | 99.0 | 99.0 | 10.0 | -| test.c:368:8:368:24 | ... ? ... : ... | 99.0 | 10.0 | 99.0 | -| test.c:376:10:376:15 | ... ? ... : ... | 299.0 | 299.0 | 5.0 | -| test.c:377:10:377:17 | ... ? ... : ... | 500.0 | 299.0 | 500.0 | -| test.c:378:10:378:21 | ... ? ... : ... | 300.0 | 300.0 | 500.0 | -| test.c:379:10:379:36 | ... ? ... : ... | 255.0 | 300.0 | 5.0 | -| test.c:380:10:380:38 | ... ? ... : ... | 500.0 | 300.0 | 500.0 | -| test.c:381:10:381:39 | ... ? ... : ... | 300.0 | 300.0 | 500.0 | -| test.c:389:8:389:24 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 110.0 | -| test.c:390:8:390:25 | ... ? ... : ... | 4.294967295E9 | 110.0 | 4.294967295E9 | -| test.c:395:10:395:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 5.0 | -| test.c:396:10:396:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 5.0 | -| test.c:397:10:397:38 | ... ? ... : ... | 255.0 | 4.294967295E9 | 5.0 | -| test.c:404:14:404:108 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.40496805 | -| test.c:404:18:404:95 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.21540225 | -| test.c:404:22:404:82 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.39206458 | -| test.c:404:26:404:69 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.35279203 | -| test.c:404:30:404:56 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.14333887 | -| test.c:405:14:405:108 | ... ? ... : ... | 0.59270465 | 0.59270465 | 0.5297741 | -| test.c:405:18:405:95 | ... ? ... : ... | 0.59270465 | 0.3533464 | 0.59270465 | -| test.c:405:22:405:82 | ... ? ... : ... | 0.3533464 | 0.3533464 | 0.32661893 | -| test.c:405:26:405:69 | ... ? ... : ... | 0.3533464 | 0.3533464 | 0.22247853 | -| test.c:405:30:405:56 | ... ? ... : ... | 0.3533464 | 0.34183348 | 0.3533464 | -| test.c:406:14:406:108 | ... ? ... : ... | 0.79310745 | 0.79310745 | 0.67981451 | -| test.c:406:18:406:95 | ... ? ... : ... | 0.79310745 | 0.77429603 | 0.79310745 | -| test.c:406:22:406:82 | ... ? ... : ... | 0.77429603 | 0.77429603 | 0.05121256 | -| test.c:406:26:406:69 | ... ? ... : ... | 0.77429603 | 0.77429603 | 0.31235514 | -| test.c:406:30:406:56 | ... ? ... : ... | 0.77429603 | 0.77429603 | 0.31478084 | -| test.c:407:14:407:108 | ... ? ... : ... | 0.98997262 | 0.98997262 | 0.83866835 | -| test.c:407:18:407:95 | ... ? ... : ... | 0.98997262 | 0.98997262 | 0.36976948 | -| test.c:407:22:407:82 | ... ? ... : ... | 0.98997262 | 0.98997262 | 0.59952732 | -| test.c:407:26:407:69 | ... ? ... : ... | 0.98997262 | 0.80599202 | 0.98997262 | -| test.c:407:30:407:56 | ... ? ... : ... | 0.80599202 | 0.44729556 | 0.80599202 | -| test.c:408:14:408:108 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.68734874 | -| test.c:408:18:408:95 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.72485966 | -| test.c:408:22:408:82 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.21778426 | -| test.c:408:26:408:69 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.10597712 | -| test.c:408:30:408:56 | ... ? ... : ... | 0.90389911 | 0.49311828 | 0.90389911 | -| test.c:409:14:409:108 | ... ? ... : ... | 0.76164052 | 0.76164052 | 0.58440865 | -| test.c:409:18:409:95 | ... ? ... : ... | 0.76164052 | 0.76164052 | 0.34808892 | -| test.c:409:22:409:82 | ... ? ... : ... | 0.76164052 | 0.47452848 | 0.76164052 | -| test.c:409:26:409:69 | ... ? ... : ... | 0.47452848 | 0.47452848 | 0.11884576 | -| test.c:409:30:409:56 | ... ? ... : ... | 0.47452848 | 0.47452848 | 0.1078665 | -| test.c:410:14:410:108 | ... ? ... : ... | 0.95823075 | 0.95823075 | 0.36232384 | -| test.c:410:18:410:95 | ... ? ... : ... | 0.95823075 | 0.95823075 | 0.85235179 | -| test.c:410:22:410:82 | ... ? ... : ... | 0.95823075 | 0.95823075 | 0.12516558 | -| test.c:410:26:410:69 | ... ? ... : ... | 0.95823075 | 0.82905046 | 0.95823075 | -| test.c:410:30:410:56 | ... ? ... : ... | 0.82905046 | 0.02524326 | 0.82905046 | -| test.c:411:14:411:108 | ... ? ... : ... | 0.84331272 | 0.48640909 | 0.84331272 | -| test.c:411:18:411:95 | ... ? ... : ... | 0.48640909 | 0.45041108 | 0.48640909 | -| test.c:411:22:411:82 | ... ? ... : ... | 0.45041108 | 0.38708626 | 0.45041108 | -| test.c:411:26:411:69 | ... ? ... : ... | 0.38708626 | 0.38708626 | 0.14963485 | -| test.c:411:30:411:56 | ... ? ... : ... | 0.38708626 | 0.38708626 | 0.32876044 | -| test.c:412:14:412:108 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.05328182 | -| test.c:412:18:412:95 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.37428143 | -| test.c:412:22:412:82 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.14800508 | -| test.c:412:26:412:69 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.26428481 | -| test.c:412:30:412:56 | ... ? ... : ... | 0.77086833 | 0.15755063 | 0.77086833 | -| test.c:413:14:413:108 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.69072144 | -| test.c:413:18:413:95 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.39468857 | -| test.c:413:22:413:82 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.55679274 | -| test.c:413:26:413:69 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.27643238 | -| test.c:413:30:413:56 | ... ? ... : ... | 0.76826628 | 0.41736536 | 0.76826628 | -| test.c:414:14:414:108 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.81372798 | -| test.c:414:18:414:95 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.88745559 | -| test.c:414:22:414:82 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.2051911 | -| test.c:414:26:414:69 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.76242583 | -| test.c:414:30:414:56 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.29904824 | -| test.c:415:14:415:108 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.42762647 | -| test.c:415:18:415:95 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.52031241 | -| test.c:415:22:415:82 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.13204114 | -| test.c:415:26:415:69 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.44996679 | -| test.c:415:30:415:56 | ... ? ... : ... | 0.53843358 | 0.42186276 | 0.53843358 | -| test.c:457:4:631:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:457:5:459:49 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:460:6:542:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:461:8:479:41 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:464:10:468:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:464:31:464:79 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:466:13:468:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:473:12:478:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:474:12:474:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:476:15:478:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:480:6:499:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:483:8:487:19 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:483:29:483:77 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:485:11:487:19 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:488:6:488:54 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:492:10:496:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:492:31:492:79 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:494:13:496:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:497:9:499:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:501:10:520:43 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:504:12:509:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:505:12:505:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:507:15:509:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:514:14:519:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:515:14:515:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:517:17:519:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:521:9:542:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:524:14:529:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:525:14:525:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:527:17:529:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:530:12:530:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:534:12:539:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:535:12:535:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:537:15:539:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:540:11:542:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:543:9:545:51 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:546:9:631:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:547:14:566:47 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:550:16:555:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:551:16:551:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:553:19:555:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:560:18:565:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:561:18:561:66 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:563:21:565:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:567:12:588:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:570:14:575:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:571:14:571:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:573:17:575:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:576:12:576:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:580:16:585:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:581:16:581:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:583:19:585:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:586:15:588:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:590:12:609:45 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:593:14:598:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:594:14:594:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:596:17:598:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:603:16:608:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:604:16:604:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:606:19:608:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:610:11:631:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:613:16:618:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:614:16:614:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:616:19:618:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:619:14:619:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:623:14:628:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:624:14:624:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:626:17:628:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:629:13:631:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | -| test.c:657:20:657:36 | ... ? ... : ... | 100.0 | 99.0 | 100.0 | -| test.c:869:5:869:14 | ... ? ... : ... | 32767.0 | 32767.0 | 0.0 | -| test.c:870:5:870:14 | ... ? ... : ... | 32767.0 | 0.0 | 32767.0 | +| test.c:348:22:348:44 | ... ? ... : ... | 2.147483647E9 | 2.147483647E9 | 2.0 | +| test.c:349:20:349:43 | ... ? ... : ... | 2.147483647E9 | 2.147483647E9 | 2.0 | +| test.c:350:22:350:44 | ... ? ... : ... | 1.431655764E9 | 1.431655764E9 | 2.0 | +| test.c:351:22:351:44 | ... ? ... : ... | 2.147483647E9 | 2.147483647E9 | 2.0 | +| test.c:352:22:352:45 | ... ? ... : ... | 2.147483647E9 | 2.147483647E9 | 2.0 | +| test.c:378:8:378:23 | ... ? ... : ... | 99.0 | 99.0 | 10.0 | +| test.c:379:8:379:24 | ... ? ... : ... | 99.0 | 10.0 | 99.0 | +| test.c:387:10:387:15 | ... ? ... : ... | 299.0 | 299.0 | 5.0 | +| test.c:388:10:388:17 | ... ? ... : ... | 500.0 | 299.0 | 500.0 | +| test.c:389:10:389:21 | ... ? ... : ... | 300.0 | 300.0 | 500.0 | +| test.c:390:10:390:36 | ... ? ... : ... | 255.0 | 300.0 | 5.0 | +| test.c:391:10:391:38 | ... ? ... : ... | 500.0 | 300.0 | 500.0 | +| test.c:392:10:392:39 | ... ? ... : ... | 300.0 | 300.0 | 500.0 | +| test.c:400:8:400:24 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 110.0 | +| test.c:401:8:401:25 | ... ? ... : ... | 4.294967295E9 | 110.0 | 4.294967295E9 | +| test.c:406:10:406:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 5.0 | +| test.c:407:10:407:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 5.0 | +| test.c:408:10:408:38 | ... ? ... : ... | 255.0 | 4.294967295E9 | 5.0 | +| test.c:415:14:415:108 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.40496805 | +| test.c:415:18:415:95 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.21540225 | +| test.c:415:22:415:82 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.39206458 | +| test.c:415:26:415:69 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.35279203 | +| test.c:415:30:415:56 | ... ? ... : ... | 0.47438827 | 0.47438827 | 0.14333887 | +| test.c:416:14:416:108 | ... ? ... : ... | 0.59270465 | 0.59270465 | 0.5297741 | +| test.c:416:18:416:95 | ... ? ... : ... | 0.59270465 | 0.3533464 | 0.59270465 | +| test.c:416:22:416:82 | ... ? ... : ... | 0.3533464 | 0.3533464 | 0.32661893 | +| test.c:416:26:416:69 | ... ? ... : ... | 0.3533464 | 0.3533464 | 0.22247853 | +| test.c:416:30:416:56 | ... ? ... : ... | 0.3533464 | 0.34183348 | 0.3533464 | +| test.c:417:14:417:108 | ... ? ... : ... | 0.79310745 | 0.79310745 | 0.67981451 | +| test.c:417:18:417:95 | ... ? ... : ... | 0.79310745 | 0.77429603 | 0.79310745 | +| test.c:417:22:417:82 | ... ? ... : ... | 0.77429603 | 0.77429603 | 0.05121256 | +| test.c:417:26:417:69 | ... ? ... : ... | 0.77429603 | 0.77429603 | 0.31235514 | +| test.c:417:30:417:56 | ... ? ... : ... | 0.77429603 | 0.77429603 | 0.31478084 | +| test.c:418:14:418:108 | ... ? ... : ... | 0.98997262 | 0.98997262 | 0.83866835 | +| test.c:418:18:418:95 | ... ? ... : ... | 0.98997262 | 0.98997262 | 0.36976948 | +| test.c:418:22:418:82 | ... ? ... : ... | 0.98997262 | 0.98997262 | 0.59952732 | +| test.c:418:26:418:69 | ... ? ... : ... | 0.98997262 | 0.80599202 | 0.98997262 | +| test.c:418:30:418:56 | ... ? ... : ... | 0.80599202 | 0.44729556 | 0.80599202 | +| test.c:419:14:419:108 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.68734874 | +| test.c:419:18:419:95 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.72485966 | +| test.c:419:22:419:82 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.21778426 | +| test.c:419:26:419:69 | ... ? ... : ... | 0.90389911 | 0.90389911 | 0.10597712 | +| test.c:419:30:419:56 | ... ? ... : ... | 0.90389911 | 0.49311828 | 0.90389911 | +| test.c:420:14:420:108 | ... ? ... : ... | 0.76164052 | 0.76164052 | 0.58440865 | +| test.c:420:18:420:95 | ... ? ... : ... | 0.76164052 | 0.76164052 | 0.34808892 | +| test.c:420:22:420:82 | ... ? ... : ... | 0.76164052 | 0.47452848 | 0.76164052 | +| test.c:420:26:420:69 | ... ? ... : ... | 0.47452848 | 0.47452848 | 0.11884576 | +| test.c:420:30:420:56 | ... ? ... : ... | 0.47452848 | 0.47452848 | 0.1078665 | +| test.c:421:14:421:108 | ... ? ... : ... | 0.95823075 | 0.95823075 | 0.36232384 | +| test.c:421:18:421:95 | ... ? ... : ... | 0.95823075 | 0.95823075 | 0.85235179 | +| test.c:421:22:421:82 | ... ? ... : ... | 0.95823075 | 0.95823075 | 0.12516558 | +| test.c:421:26:421:69 | ... ? ... : ... | 0.95823075 | 0.82905046 | 0.95823075 | +| test.c:421:30:421:56 | ... ? ... : ... | 0.82905046 | 0.02524326 | 0.82905046 | +| test.c:422:14:422:108 | ... ? ... : ... | 0.84331272 | 0.48640909 | 0.84331272 | +| test.c:422:18:422:95 | ... ? ... : ... | 0.48640909 | 0.45041108 | 0.48640909 | +| test.c:422:22:422:82 | ... ? ... : ... | 0.45041108 | 0.38708626 | 0.45041108 | +| test.c:422:26:422:69 | ... ? ... : ... | 0.38708626 | 0.38708626 | 0.14963485 | +| test.c:422:30:422:56 | ... ? ... : ... | 0.38708626 | 0.38708626 | 0.32876044 | +| test.c:423:14:423:108 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.05328182 | +| test.c:423:18:423:95 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.37428143 | +| test.c:423:22:423:82 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.14800508 | +| test.c:423:26:423:69 | ... ? ... : ... | 0.77086833 | 0.77086833 | 0.26428481 | +| test.c:423:30:423:56 | ... ? ... : ... | 0.77086833 | 0.15755063 | 0.77086833 | +| test.c:424:14:424:108 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.69072144 | +| test.c:424:18:424:95 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.39468857 | +| test.c:424:22:424:82 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.55679274 | +| test.c:424:26:424:69 | ... ? ... : ... | 0.76826628 | 0.76826628 | 0.27643238 | +| test.c:424:30:424:56 | ... ? ... : ... | 0.76826628 | 0.41736536 | 0.76826628 | +| test.c:425:14:425:108 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.81372798 | +| test.c:425:18:425:95 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.88745559 | +| test.c:425:22:425:82 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.2051911 | +| test.c:425:26:425:69 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.76242583 | +| test.c:425:30:425:56 | ... ? ... : ... | 0.88955345 | 0.88955345 | 0.29904824 | +| test.c:426:14:426:108 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.42762647 | +| test.c:426:18:426:95 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.52031241 | +| test.c:426:22:426:82 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.13204114 | +| test.c:426:26:426:69 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.44996679 | +| test.c:426:30:426:56 | ... ? ... : ... | 0.53843358 | 0.42186276 | 0.53843358 | +| test.c:468:4:642:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:468:5:470:49 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:471:6:553:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:472:8:490:41 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:475:10:479:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:475:31:475:79 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:477:13:479:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:484:12:489:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:485:12:485:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:487:15:489:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:491:6:510:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:494:8:498:19 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:494:29:494:77 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:496:11:498:19 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:499:6:499:54 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:503:10:507:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:503:31:503:79 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:505:13:507:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:508:9:510:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:512:10:531:43 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:515:12:520:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:516:12:516:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:518:15:520:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:525:14:530:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:526:14:526:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:528:17:530:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:532:9:553:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:535:14:540:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:536:14:536:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:538:17:540:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:541:12:541:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:545:12:550:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:546:12:546:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:548:15:550:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:551:11:553:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:554:9:556:51 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:557:9:642:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:558:14:577:47 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:561:16:566:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:562:16:562:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:564:19:566:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:571:18:576:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:572:18:572:66 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:574:21:576:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:578:12:599:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:581:14:586:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:582:14:582:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:584:17:586:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:587:12:587:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:591:16:596:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:592:16:592:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:594:19:596:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:597:15:599:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:601:12:620:45 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:604:14:609:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:605:14:605:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:607:17:609:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:614:16:619:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:615:16:615:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:617:19:619:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:621:11:642:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:624:16:629:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:625:16:625:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:627:19:629:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:630:14:630:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:634:14:639:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:635:14:635:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:637:17:639:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:640:13:642:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:668:20:668:36 | ... ? ... : ... | 100.0 | 99.0 | 100.0 | +| test.c:880:5:880:14 | ... ? ... : ... | 32767.0 | 32767.0 | 0.0 | +| test.c:881:5:881:14 | ... ? ... : ... | 32767.0 | 0.0 | 32767.0 | | test.cpp:121:3:121:12 | ... ? ... : ... | 32767.0 | 32767.0 | 0.0 | | test.cpp:122:3:122:12 | ... ? ... : ... | 32767.0 | 0.0 | 32767.0 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c index d59d20ecc9b..d394eb637ab 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c @@ -343,6 +343,17 @@ unsigned long long test_shift(unsigned long long a) { return shifted; } +// Tests for bounds on integers derived from inequalities. +unsigned int test_inequality_integer(unsigned int e) { + unsigned int bi1 = (2 * e + 1) > 0 ? e : 2; + signed int bi2 = (2 * e + 1) >= 0 ? e : 2; + unsigned int bi3 = (3 * e + 2) > 0 ? e : 2; + unsigned int bi4 = (2 * e + 1) > 0 ? e : 2; + unsigned int bi5 = (2 * e + 1) > 16 ? e : 2; + + return bi1 + bi2 + bi3 + bi4 + bi5; +} + int test16(int x) { int d, i = 0; if (x < 0) { diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected index b2591fb52f3..dd7fc398f0c 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected @@ -352,664 +352,679 @@ | test.c:333:10:333:14 | total | 2147483647 | | test.c:341:32:341:34 | odd | 9007199254740991 | | test.c:343:10:343:16 | shifted | 4503599627370495 | -| test.c:348:7:348:7 | x | 2147483647 | -| test.c:352:10:352:10 | i | 7 | -| test.c:353:5:353:5 | i | 2 | -| test.c:355:3:355:3 | d | 2147483647 | -| test.c:355:7:355:7 | i | 7 | -| test.c:356:7:356:7 | x | 2147483647 | -| test.c:357:9:357:9 | d | 7 | -| test.c:357:14:357:14 | x | -1 | -| test.c:367:3:367:4 | y1 | 4294967295 | -| test.c:367:8:367:8 | x | 4294967295 | -| test.c:367:18:367:18 | x | 99 | -| test.c:368:3:368:4 | y2 | 4294967295 | -| test.c:368:8:368:8 | x | 4294967295 | -| test.c:368:24:368:24 | x | 99 | -| test.c:369:3:369:4 | y3 | 4294967295 | -| test.c:370:3:370:4 | y4 | 4294967295 | -| test.c:371:3:371:4 | y5 | 4294967295 | -| test.c:372:3:372:4 | y6 | 4294967295 | -| test.c:373:3:373:4 | y7 | 4294967295 | -| test.c:374:3:374:4 | y8 | 4294967295 | -| test.c:375:7:375:7 | x | 4294967295 | -| test.c:376:5:376:6 | y3 | 4294967295 | -| test.c:376:10:376:10 | x | 299 | -| test.c:377:5:377:6 | y4 | 4294967295 | -| test.c:377:10:377:10 | x | 299 | -| test.c:378:5:378:6 | y5 | 4294967295 | -| test.c:378:11:378:11 | x | 299 | -| test.c:379:5:379:6 | y6 | 4294967295 | -| test.c:379:27:379:27 | x | 299 | -| test.c:380:5:380:6 | y7 | 4294967295 | -| test.c:380:27:380:27 | x | 299 | -| test.c:381:5:381:6 | y8 | 4294967295 | -| test.c:381:28:381:28 | x | 299 | -| test.c:383:10:383:11 | y1 | 99 | -| test.c:383:15:383:16 | y2 | 99 | -| test.c:383:20:383:21 | y3 | 299 | -| test.c:383:25:383:26 | y4 | 500 | -| test.c:383:30:383:31 | y5 | 300 | -| test.c:383:35:383:36 | y6 | 255 | -| test.c:383:40:383:41 | y7 | 500 | -| test.c:383:45:383:46 | y8 | 300 | -| test.c:389:3:389:4 | y1 | 4294967295 | -| test.c:389:8:389:8 | x | 4294967295 | -| test.c:389:18:389:18 | x | 4294967295 | -| test.c:390:3:390:4 | y2 | 4294967295 | -| test.c:390:8:390:8 | x | 4294967295 | -| test.c:390:25:390:25 | x | 4294967295 | -| test.c:391:3:391:4 | y3 | 4294967295 | -| test.c:392:3:392:4 | y4 | 4294967295 | -| test.c:393:3:393:4 | y5 | 4294967295 | -| test.c:394:7:394:7 | x | 4294967295 | -| test.c:395:5:395:6 | y3 | 4294967295 | -| test.c:395:11:395:11 | x | 4294967295 | -| test.c:396:5:396:6 | y4 | 4294967295 | -| test.c:396:11:396:11 | x | 4294967295 | -| test.c:397:5:397:6 | y5 | 4294967295 | -| test.c:397:27:397:27 | x | 4294967295 | -| test.c:399:10:399:11 | y1 | 4294967295 | -| test.c:399:15:399:16 | y2 | 4294967295 | -| test.c:399:20:399:21 | y3 | 4294967295 | -| test.c:399:25:399:26 | y4 | 4294967295 | -| test.c:399:30:399:31 | y5 | 1000 | -| test.c:404:14:404:14 | m | Infinity | -| test.c:404:18:404:18 | n | Infinity | -| test.c:404:22:404:22 | o | Infinity | -| test.c:404:26:404:26 | p | Infinity | -| test.c:404:30:404:30 | q | Infinity | -| test.c:405:14:405:14 | m | Infinity | -| test.c:405:18:405:18 | n | Infinity | -| test.c:405:22:405:22 | o | Infinity | -| test.c:405:26:405:26 | p | Infinity | -| test.c:405:30:405:30 | q | Infinity | -| test.c:406:14:406:14 | m | Infinity | -| test.c:406:18:406:18 | n | Infinity | -| test.c:406:22:406:22 | o | Infinity | -| test.c:406:26:406:26 | p | Infinity | -| test.c:406:30:406:30 | q | Infinity | -| test.c:407:14:407:14 | m | Infinity | -| test.c:407:18:407:18 | n | Infinity | -| test.c:407:22:407:22 | o | Infinity | -| test.c:407:26:407:26 | p | Infinity | -| test.c:407:30:407:30 | q | Infinity | -| test.c:408:14:408:14 | m | Infinity | -| test.c:408:18:408:18 | n | Infinity | -| test.c:408:22:408:22 | o | Infinity | -| test.c:408:26:408:26 | p | Infinity | -| test.c:408:30:408:30 | q | Infinity | -| test.c:409:14:409:14 | m | Infinity | -| test.c:409:18:409:18 | n | Infinity | -| test.c:409:22:409:22 | o | Infinity | -| test.c:409:26:409:26 | p | Infinity | -| test.c:409:30:409:30 | q | Infinity | -| test.c:410:14:410:14 | m | Infinity | -| test.c:410:18:410:18 | n | Infinity | -| test.c:410:22:410:22 | o | Infinity | -| test.c:410:26:410:26 | p | Infinity | -| test.c:410:30:410:30 | q | Infinity | -| test.c:411:14:411:14 | m | Infinity | -| test.c:411:18:411:18 | n | Infinity | -| test.c:411:22:411:22 | o | Infinity | -| test.c:411:26:411:26 | p | Infinity | -| test.c:411:30:411:30 | q | Infinity | -| test.c:412:14:412:14 | m | Infinity | -| test.c:412:18:412:18 | n | Infinity | -| test.c:412:22:412:22 | o | Infinity | -| test.c:412:26:412:26 | p | Infinity | -| test.c:412:30:412:30 | q | Infinity | -| test.c:413:14:413:14 | m | Infinity | -| test.c:413:18:413:18 | n | Infinity | -| test.c:413:22:413:22 | o | Infinity | -| test.c:413:26:413:26 | p | Infinity | -| test.c:413:30:413:30 | q | Infinity | -| test.c:414:14:414:14 | m | Infinity | -| test.c:414:18:414:18 | n | Infinity | -| test.c:414:22:414:22 | o | Infinity | -| test.c:414:26:414:26 | p | Infinity | -| test.c:414:30:414:30 | q | Infinity | +| test.c:348:27:348:27 | e | 4294967295 | +| test.c:348:40:348:40 | e | 2147483647 | +| test.c:349:25:349:25 | e | 4294967295 | +| test.c:349:39:349:39 | e | 2147483647 | +| test.c:350:27:350:27 | e | 4294967295 | +| test.c:350:40:350:40 | e | 1431655764 | +| test.c:351:27:351:27 | e | 4294967295 | +| test.c:351:40:351:40 | e | 2147483647 | +| test.c:352:27:352:27 | e | 4294967295 | +| test.c:352:41:352:41 | e | 2147483647 | +| test.c:354:10:354:12 | bi1 | 2147483647 | +| test.c:354:16:354:18 | bi2 | 2147483647 | +| test.c:354:22:354:24 | bi3 | 1431655764 | +| test.c:354:28:354:30 | bi4 | 2147483647 | +| test.c:354:34:354:36 | bi5 | 2147483647 | +| test.c:359:7:359:7 | x | 2147483647 | +| test.c:363:10:363:10 | i | 7 | +| test.c:364:5:364:5 | i | 2 | +| test.c:366:3:366:3 | d | 2147483647 | +| test.c:366:7:366:7 | i | 7 | +| test.c:367:7:367:7 | x | 2147483647 | +| test.c:368:9:368:9 | d | 7 | +| test.c:368:14:368:14 | x | -1 | +| test.c:378:3:378:4 | y1 | 4294967295 | +| test.c:378:8:378:8 | x | 4294967295 | +| test.c:378:18:378:18 | x | 99 | +| test.c:379:3:379:4 | y2 | 4294967295 | +| test.c:379:8:379:8 | x | 4294967295 | +| test.c:379:24:379:24 | x | 99 | +| test.c:380:3:380:4 | y3 | 4294967295 | +| test.c:381:3:381:4 | y4 | 4294967295 | +| test.c:382:3:382:4 | y5 | 4294967295 | +| test.c:383:3:383:4 | y6 | 4294967295 | +| test.c:384:3:384:4 | y7 | 4294967295 | +| test.c:385:3:385:4 | y8 | 4294967295 | +| test.c:386:7:386:7 | x | 4294967295 | +| test.c:387:5:387:6 | y3 | 4294967295 | +| test.c:387:10:387:10 | x | 299 | +| test.c:388:5:388:6 | y4 | 4294967295 | +| test.c:388:10:388:10 | x | 299 | +| test.c:389:5:389:6 | y5 | 4294967295 | +| test.c:389:11:389:11 | x | 299 | +| test.c:390:5:390:6 | y6 | 4294967295 | +| test.c:390:27:390:27 | x | 299 | +| test.c:391:5:391:6 | y7 | 4294967295 | +| test.c:391:27:391:27 | x | 299 | +| test.c:392:5:392:6 | y8 | 4294967295 | +| test.c:392:28:392:28 | x | 299 | +| test.c:394:10:394:11 | y1 | 99 | +| test.c:394:15:394:16 | y2 | 99 | +| test.c:394:20:394:21 | y3 | 299 | +| test.c:394:25:394:26 | y4 | 500 | +| test.c:394:30:394:31 | y5 | 300 | +| test.c:394:35:394:36 | y6 | 255 | +| test.c:394:40:394:41 | y7 | 500 | +| test.c:394:45:394:46 | y8 | 300 | +| test.c:400:3:400:4 | y1 | 4294967295 | +| test.c:400:8:400:8 | x | 4294967295 | +| test.c:400:18:400:18 | x | 4294967295 | +| test.c:401:3:401:4 | y2 | 4294967295 | +| test.c:401:8:401:8 | x | 4294967295 | +| test.c:401:25:401:25 | x | 4294967295 | +| test.c:402:3:402:4 | y3 | 4294967295 | +| test.c:403:3:403:4 | y4 | 4294967295 | +| test.c:404:3:404:4 | y5 | 4294967295 | +| test.c:405:7:405:7 | x | 4294967295 | +| test.c:406:5:406:6 | y3 | 4294967295 | +| test.c:406:11:406:11 | x | 4294967295 | +| test.c:407:5:407:6 | y4 | 4294967295 | +| test.c:407:11:407:11 | x | 4294967295 | +| test.c:408:5:408:6 | y5 | 4294967295 | +| test.c:408:27:408:27 | x | 4294967295 | +| test.c:410:10:410:11 | y1 | 4294967295 | +| test.c:410:15:410:16 | y2 | 4294967295 | +| test.c:410:20:410:21 | y3 | 4294967295 | +| test.c:410:25:410:26 | y4 | 4294967295 | +| test.c:410:30:410:31 | y5 | 1000 | | test.c:415:14:415:14 | m | Infinity | | test.c:415:18:415:18 | n | Infinity | | test.c:415:22:415:22 | o | Infinity | | test.c:415:26:415:26 | p | Infinity | | test.c:415:30:415:30 | q | Infinity | -| test.c:421:19:421:19 | a | 0.474388 | -| test.c:421:23:421:23 | b | 0.592705 | -| test.c:421:27:421:27 | c | 0.793107 | -| test.c:421:31:421:31 | d | 0.989973 | -| test.c:421:35:421:35 | e | 0.903899 | -| test.c:421:39:421:39 | f | 0.761641 | -| test.c:421:43:421:43 | g | 0.958231 | -| test.c:421:47:421:47 | h | 0.843313 | -| test.c:421:51:421:51 | i | 0.770868 | -| test.c:421:55:421:55 | j | 0.768266 | -| test.c:421:59:421:59 | k | 0.889553 | -| test.c:421:63:421:63 | l | 0.538434 | -| test.c:423:10:423:15 | output | 9.284378 | -| test.c:430:7:430:9 | rhs | 4294967295 | -| test.c:430:19:430:21 | rhs | 11 | -| test.c:431:7:431:9 | rhs | 4294967295 | -| test.c:431:19:431:21 | rhs | 12 | -| test.c:432:7:432:9 | rhs | 4294967295 | -| test.c:432:19:432:21 | rhs | 13 | -| test.c:433:7:433:9 | rhs | 4294967295 | -| test.c:433:19:433:21 | rhs | 14 | -| test.c:434:7:434:9 | rhs | 4294967295 | -| test.c:434:19:434:21 | rhs | 15 | -| test.c:435:10:435:12 | rhs | 4294967295 | -| test.c:439:7:439:7 | a | 2147483647 | -| test.c:440:9:440:9 | b | 2147483647 | -| test.c:441:7:441:7 | a | 17 | -| test.c:441:12:441:12 | b | 23 | -| test.c:443:9:443:9 | a | 40 | -| test.c:444:7:444:7 | b | 2147483647 | -| test.c:449:11:449:11 | a | 2147483647 | -| test.c:449:15:449:15 | b | 2147483647 | -| test.c:450:10:450:10 | a | 2147483647 | -| test.c:450:14:450:14 | b | 2147483647 | -| test.c:457:10:457:11 | ip | 4294967295 | -| test.c:457:20:457:21 | ip | 4294967295 | -| test.c:457:40:457:41 | ip | 4294967295 | -| test.c:458:14:458:15 | ip | 4294967295 | -| test.c:459:14:459:15 | ip | 4294967295 | -| test.c:459:34:459:35 | ip | 4294967295 | -| test.c:460:11:460:12 | ip | 4294967295 | -| test.c:461:13:461:14 | ip | 4294967295 | -| test.c:462:14:462:15 | ip | 4294967295 | -| test.c:463:14:463:15 | ip | 4294967295 | -| test.c:464:15:464:16 | ip | 4294967295 | -| test.c:464:41:464:42 | ip | 4294967295 | -| test.c:464:52:464:53 | ip | 4294967295 | -| test.c:464:67:464:68 | ip | 4294967295 | -| test.c:464:78:464:79 | ip | 4294967295 | -| test.c:465:18:465:19 | ip | 4294967295 | -| test.c:466:23:466:24 | ip | 4294967295 | -| test.c:466:34:466:35 | ip | 4294967295 | -| test.c:467:25:467:26 | ip | 4294967295 | +| test.c:416:14:416:14 | m | Infinity | +| test.c:416:18:416:18 | n | Infinity | +| test.c:416:22:416:22 | o | Infinity | +| test.c:416:26:416:26 | p | Infinity | +| test.c:416:30:416:30 | q | Infinity | +| test.c:417:14:417:14 | m | Infinity | +| test.c:417:18:417:18 | n | Infinity | +| test.c:417:22:417:22 | o | Infinity | +| test.c:417:26:417:26 | p | Infinity | +| test.c:417:30:417:30 | q | Infinity | +| test.c:418:14:418:14 | m | Infinity | +| test.c:418:18:418:18 | n | Infinity | +| test.c:418:22:418:22 | o | Infinity | +| test.c:418:26:418:26 | p | Infinity | +| test.c:418:30:418:30 | q | Infinity | +| test.c:419:14:419:14 | m | Infinity | +| test.c:419:18:419:18 | n | Infinity | +| test.c:419:22:419:22 | o | Infinity | +| test.c:419:26:419:26 | p | Infinity | +| test.c:419:30:419:30 | q | Infinity | +| test.c:420:14:420:14 | m | Infinity | +| test.c:420:18:420:18 | n | Infinity | +| test.c:420:22:420:22 | o | Infinity | +| test.c:420:26:420:26 | p | Infinity | +| test.c:420:30:420:30 | q | Infinity | +| test.c:421:14:421:14 | m | Infinity | +| test.c:421:18:421:18 | n | Infinity | +| test.c:421:22:421:22 | o | Infinity | +| test.c:421:26:421:26 | p | Infinity | +| test.c:421:30:421:30 | q | Infinity | +| test.c:422:14:422:14 | m | Infinity | +| test.c:422:18:422:18 | n | Infinity | +| test.c:422:22:422:22 | o | Infinity | +| test.c:422:26:422:26 | p | Infinity | +| test.c:422:30:422:30 | q | Infinity | +| test.c:423:14:423:14 | m | Infinity | +| test.c:423:18:423:18 | n | Infinity | +| test.c:423:22:423:22 | o | Infinity | +| test.c:423:26:423:26 | p | Infinity | +| test.c:423:30:423:30 | q | Infinity | +| test.c:424:14:424:14 | m | Infinity | +| test.c:424:18:424:18 | n | Infinity | +| test.c:424:22:424:22 | o | Infinity | +| test.c:424:26:424:26 | p | Infinity | +| test.c:424:30:424:30 | q | Infinity | +| test.c:425:14:425:14 | m | Infinity | +| test.c:425:18:425:18 | n | Infinity | +| test.c:425:22:425:22 | o | Infinity | +| test.c:425:26:425:26 | p | Infinity | +| test.c:425:30:425:30 | q | Infinity | +| test.c:426:14:426:14 | m | Infinity | +| test.c:426:18:426:18 | n | Infinity | +| test.c:426:22:426:22 | o | Infinity | +| test.c:426:26:426:26 | p | Infinity | +| test.c:426:30:426:30 | q | Infinity | +| test.c:432:19:432:19 | a | 0.474388 | +| test.c:432:23:432:23 | b | 0.592705 | +| test.c:432:27:432:27 | c | 0.793107 | +| test.c:432:31:432:31 | d | 0.989973 | +| test.c:432:35:432:35 | e | 0.903899 | +| test.c:432:39:432:39 | f | 0.761641 | +| test.c:432:43:432:43 | g | 0.958231 | +| test.c:432:47:432:47 | h | 0.843313 | +| test.c:432:51:432:51 | i | 0.770868 | +| test.c:432:55:432:55 | j | 0.768266 | +| test.c:432:59:432:59 | k | 0.889553 | +| test.c:432:63:432:63 | l | 0.538434 | +| test.c:434:10:434:15 | output | 9.284378 | +| test.c:441:7:441:9 | rhs | 4294967295 | +| test.c:441:19:441:21 | rhs | 11 | +| test.c:442:7:442:9 | rhs | 4294967295 | +| test.c:442:19:442:21 | rhs | 12 | +| test.c:443:7:443:9 | rhs | 4294967295 | +| test.c:443:19:443:21 | rhs | 13 | +| test.c:444:7:444:9 | rhs | 4294967295 | +| test.c:444:19:444:21 | rhs | 14 | +| test.c:445:7:445:9 | rhs | 4294967295 | +| test.c:445:19:445:21 | rhs | 15 | +| test.c:446:10:446:12 | rhs | 4294967295 | +| test.c:450:7:450:7 | a | 2147483647 | +| test.c:451:9:451:9 | b | 2147483647 | +| test.c:452:7:452:7 | a | 17 | +| test.c:452:12:452:12 | b | 23 | +| test.c:454:9:454:9 | a | 40 | +| test.c:455:7:455:7 | b | 2147483647 | +| test.c:460:11:460:11 | a | 2147483647 | +| test.c:460:15:460:15 | b | 2147483647 | +| test.c:461:10:461:10 | a | 2147483647 | +| test.c:461:14:461:14 | b | 2147483647 | +| test.c:468:10:468:11 | ip | 4294967295 | | test.c:468:20:468:21 | ip | 4294967295 | -| test.c:469:11:469:12 | ip | 4294967295 | -| test.c:469:26:469:27 | ip | 4294967295 | -| test.c:470:16:470:17 | ip | 4294967295 | -| test.c:471:16:471:17 | ip | 4294967295 | -| test.c:472:16:472:17 | ip | 4294967295 | -| test.c:473:17:473:18 | ip | 4294967295 | -| test.c:474:22:474:23 | ip | 4294967295 | -| test.c:474:33:474:34 | ip | 4294967295 | -| test.c:474:48:474:49 | ip | 4294967295 | -| test.c:474:59:474:60 | ip | 4294967295 | -| test.c:475:20:475:21 | ip | 4294967295 | -| test.c:476:25:476:26 | ip | 4294967295 | -| test.c:476:36:476:37 | ip | 4294967295 | -| test.c:477:27:477:28 | ip | 4294967295 | -| test.c:478:22:478:23 | ip | 4294967295 | -| test.c:479:15:479:16 | ip | 4294967295 | -| test.c:479:30:479:31 | ip | 4294967295 | +| test.c:468:40:468:41 | ip | 4294967295 | +| test.c:469:14:469:15 | ip | 4294967295 | +| test.c:470:14:470:15 | ip | 4294967295 | +| test.c:470:34:470:35 | ip | 4294967295 | +| test.c:471:11:471:12 | ip | 4294967295 | +| test.c:472:13:472:14 | ip | 4294967295 | +| test.c:473:14:473:15 | ip | 4294967295 | +| test.c:474:14:474:15 | ip | 4294967295 | +| test.c:475:15:475:16 | ip | 4294967295 | +| test.c:475:41:475:42 | ip | 4294967295 | +| test.c:475:52:475:53 | ip | 4294967295 | +| test.c:475:67:475:68 | ip | 4294967295 | +| test.c:475:78:475:79 | ip | 4294967295 | +| test.c:476:18:476:19 | ip | 4294967295 | +| test.c:477:23:477:24 | ip | 4294967295 | +| test.c:477:34:477:35 | ip | 4294967295 | +| test.c:478:25:478:26 | ip | 4294967295 | +| test.c:479:20:479:21 | ip | 4294967295 | | test.c:480:11:480:12 | ip | 4294967295 | -| test.c:481:12:481:13 | ip | 4294967295 | -| test.c:482:12:482:13 | ip | 4294967295 | -| test.c:483:13:483:14 | ip | 4294967295 | -| test.c:483:39:483:40 | ip | 4294967295 | -| test.c:483:50:483:51 | ip | 4294967295 | -| test.c:483:65:483:66 | ip | 4294967295 | -| test.c:483:76:483:77 | ip | 4294967295 | -| test.c:484:16:484:17 | ip | 4294967295 | -| test.c:485:21:485:22 | ip | 4294967295 | -| test.c:485:32:485:33 | ip | 4294967295 | -| test.c:486:23:486:24 | ip | 4294967295 | -| test.c:487:18:487:19 | ip | 4294967295 | -| test.c:488:11:488:12 | ip | 4294967295 | -| test.c:488:17:488:18 | ip | 4294967295 | -| test.c:488:37:488:38 | ip | 4294967295 | -| test.c:488:43:488:44 | ip | 4294967295 | -| test.c:489:14:489:15 | ip | 4294967295 | -| test.c:490:14:490:15 | ip | 4294967295 | -| test.c:491:14:491:15 | ip | 4294967295 | -| test.c:492:15:492:16 | ip | 4294967295 | -| test.c:492:41:492:42 | ip | 4294967295 | -| test.c:492:52:492:53 | ip | 4294967295 | -| test.c:492:67:492:68 | ip | 4294967295 | -| test.c:492:78:492:79 | ip | 4294967295 | -| test.c:493:18:493:19 | ip | 4294967295 | -| test.c:494:23:494:24 | ip | 4294967295 | -| test.c:494:34:494:35 | ip | 4294967295 | -| test.c:495:25:495:26 | ip | 4294967295 | -| test.c:496:20:496:21 | ip | 4294967295 | -| test.c:497:14:497:15 | ip | 4294967295 | -| test.c:497:20:497:21 | ip | 4294967295 | -| test.c:498:16:498:17 | ip | 4294967295 | -| test.c:499:12:499:13 | ip | 4294967295 | +| test.c:480:26:480:27 | ip | 4294967295 | +| test.c:481:16:481:17 | ip | 4294967295 | +| test.c:482:16:482:17 | ip | 4294967295 | +| test.c:483:16:483:17 | ip | 4294967295 | +| test.c:484:17:484:18 | ip | 4294967295 | +| test.c:485:22:485:23 | ip | 4294967295 | +| test.c:485:33:485:34 | ip | 4294967295 | +| test.c:485:48:485:49 | ip | 4294967295 | +| test.c:485:59:485:60 | ip | 4294967295 | +| test.c:486:20:486:21 | ip | 4294967295 | +| test.c:487:25:487:26 | ip | 4294967295 | +| test.c:487:36:487:37 | ip | 4294967295 | +| test.c:488:27:488:28 | ip | 4294967295 | +| test.c:489:22:489:23 | ip | 4294967295 | +| test.c:490:15:490:16 | ip | 4294967295 | +| test.c:490:30:490:31 | ip | 4294967295 | +| test.c:491:11:491:12 | ip | 4294967295 | +| test.c:492:12:492:13 | ip | 4294967295 | +| test.c:493:12:493:13 | ip | 4294967295 | +| test.c:494:13:494:14 | ip | 4294967295 | +| test.c:494:39:494:40 | ip | 4294967295 | +| test.c:494:50:494:51 | ip | 4294967295 | +| test.c:494:65:494:66 | ip | 4294967295 | +| test.c:494:76:494:77 | ip | 4294967295 | +| test.c:495:16:495:17 | ip | 4294967295 | +| test.c:496:21:496:22 | ip | 4294967295 | +| test.c:496:32:496:33 | ip | 4294967295 | +| test.c:497:23:497:24 | ip | 4294967295 | +| test.c:498:18:498:19 | ip | 4294967295 | +| test.c:499:11:499:12 | ip | 4294967295 | +| test.c:499:17:499:18 | ip | 4294967295 | +| test.c:499:37:499:38 | ip | 4294967295 | +| test.c:499:43:499:44 | ip | 4294967295 | | test.c:500:14:500:15 | ip | 4294967295 | -| test.c:501:15:501:16 | ip | 4294967295 | -| test.c:502:16:502:17 | ip | 4294967295 | -| test.c:503:16:503:17 | ip | 4294967295 | -| test.c:504:17:504:18 | ip | 4294967295 | -| test.c:505:22:505:23 | ip | 4294967295 | -| test.c:505:33:505:34 | ip | 4294967295 | -| test.c:505:48:505:49 | ip | 4294967295 | -| test.c:505:59:505:60 | ip | 4294967295 | -| test.c:506:20:506:21 | ip | 4294967295 | -| test.c:507:25:507:26 | ip | 4294967295 | -| test.c:507:36:507:37 | ip | 4294967295 | -| test.c:508:27:508:28 | ip | 4294967295 | -| test.c:509:22:509:23 | ip | 4294967295 | -| test.c:510:13:510:14 | ip | 4294967295 | -| test.c:510:28:510:29 | ip | 4294967295 | -| test.c:511:18:511:19 | ip | 4294967295 | -| test.c:512:18:512:19 | ip | 4294967295 | -| test.c:513:18:513:19 | ip | 4294967295 | -| test.c:514:19:514:20 | ip | 4294967295 | -| test.c:515:24:515:25 | ip | 4294967295 | -| test.c:515:35:515:36 | ip | 4294967295 | -| test.c:515:50:515:51 | ip | 4294967295 | -| test.c:515:61:515:62 | ip | 4294967295 | +| test.c:501:14:501:15 | ip | 4294967295 | +| test.c:502:14:502:15 | ip | 4294967295 | +| test.c:503:15:503:16 | ip | 4294967295 | +| test.c:503:41:503:42 | ip | 4294967295 | +| test.c:503:52:503:53 | ip | 4294967295 | +| test.c:503:67:503:68 | ip | 4294967295 | +| test.c:503:78:503:79 | ip | 4294967295 | +| test.c:504:18:504:19 | ip | 4294967295 | +| test.c:505:23:505:24 | ip | 4294967295 | +| test.c:505:34:505:35 | ip | 4294967295 | +| test.c:506:25:506:26 | ip | 4294967295 | +| test.c:507:20:507:21 | ip | 4294967295 | +| test.c:508:14:508:15 | ip | 4294967295 | +| test.c:508:20:508:21 | ip | 4294967295 | +| test.c:509:16:509:17 | ip | 4294967295 | +| test.c:510:12:510:13 | ip | 4294967295 | +| test.c:511:14:511:15 | ip | 4294967295 | +| test.c:512:15:512:16 | ip | 4294967295 | +| test.c:513:16:513:17 | ip | 4294967295 | +| test.c:514:16:514:17 | ip | 4294967295 | +| test.c:515:17:515:18 | ip | 4294967295 | | test.c:516:22:516:23 | ip | 4294967295 | -| test.c:517:27:517:28 | ip | 4294967295 | -| test.c:517:38:517:39 | ip | 4294967295 | -| test.c:518:29:518:30 | ip | 4294967295 | -| test.c:519:24:519:25 | ip | 4294967295 | -| test.c:520:17:520:18 | ip | 4294967295 | -| test.c:520:32:520:33 | ip | 4294967295 | -| test.c:521:14:521:15 | ip | 4294967295 | +| test.c:516:33:516:34 | ip | 4294967295 | +| test.c:516:48:516:49 | ip | 4294967295 | +| test.c:516:59:516:60 | ip | 4294967295 | +| test.c:517:20:517:21 | ip | 4294967295 | +| test.c:518:25:518:26 | ip | 4294967295 | +| test.c:518:36:518:37 | ip | 4294967295 | +| test.c:519:27:519:28 | ip | 4294967295 | +| test.c:520:22:520:23 | ip | 4294967295 | +| test.c:521:13:521:14 | ip | 4294967295 | +| test.c:521:28:521:29 | ip | 4294967295 | | test.c:522:18:522:19 | ip | 4294967295 | | test.c:523:18:523:19 | ip | 4294967295 | -| test.c:524:19:524:20 | ip | 4294967295 | -| test.c:525:24:525:25 | ip | 4294967295 | -| test.c:525:35:525:36 | ip | 4294967295 | -| test.c:525:50:525:51 | ip | 4294967295 | -| test.c:525:61:525:62 | ip | 4294967295 | -| test.c:526:22:526:23 | ip | 4294967295 | -| test.c:527:27:527:28 | ip | 4294967295 | -| test.c:527:38:527:39 | ip | 4294967295 | -| test.c:528:29:528:30 | ip | 4294967295 | -| test.c:529:24:529:25 | ip | 4294967295 | -| test.c:530:17:530:18 | ip | 4294967295 | -| test.c:530:23:530:24 | ip | 4294967295 | -| test.c:530:43:530:44 | ip | 4294967295 | -| test.c:530:49:530:50 | ip | 4294967295 | -| test.c:531:16:531:17 | ip | 4294967295 | -| test.c:532:16:532:17 | ip | 4294967295 | -| test.c:533:16:533:17 | ip | 4294967295 | -| test.c:534:17:534:18 | ip | 4294967295 | -| test.c:535:22:535:23 | ip | 4294967295 | -| test.c:535:33:535:34 | ip | 4294967295 | -| test.c:535:48:535:49 | ip | 4294967295 | -| test.c:535:59:535:60 | ip | 4294967295 | -| test.c:536:20:536:21 | ip | 4294967295 | -| test.c:537:25:537:26 | ip | 4294967295 | -| test.c:537:36:537:37 | ip | 4294967295 | +| test.c:524:18:524:19 | ip | 4294967295 | +| test.c:525:19:525:20 | ip | 4294967295 | +| test.c:526:24:526:25 | ip | 4294967295 | +| test.c:526:35:526:36 | ip | 4294967295 | +| test.c:526:50:526:51 | ip | 4294967295 | +| test.c:526:61:526:62 | ip | 4294967295 | +| test.c:527:22:527:23 | ip | 4294967295 | +| test.c:528:27:528:28 | ip | 4294967295 | +| test.c:528:38:528:39 | ip | 4294967295 | +| test.c:529:29:529:30 | ip | 4294967295 | +| test.c:530:24:530:25 | ip | 4294967295 | +| test.c:531:17:531:18 | ip | 4294967295 | +| test.c:531:32:531:33 | ip | 4294967295 | +| test.c:532:14:532:15 | ip | 4294967295 | +| test.c:533:18:533:19 | ip | 4294967295 | +| test.c:534:18:534:19 | ip | 4294967295 | +| test.c:535:19:535:20 | ip | 4294967295 | +| test.c:536:24:536:25 | ip | 4294967295 | +| test.c:536:35:536:36 | ip | 4294967295 | +| test.c:536:50:536:51 | ip | 4294967295 | +| test.c:536:61:536:62 | ip | 4294967295 | +| test.c:537:22:537:23 | ip | 4294967295 | | test.c:538:27:538:28 | ip | 4294967295 | -| test.c:539:22:539:23 | ip | 4294967295 | -| test.c:540:16:540:17 | ip | 4294967295 | -| test.c:540:22:540:23 | ip | 4294967295 | -| test.c:541:18:541:19 | ip | 4294967295 | -| test.c:542:14:542:15 | ip | 4294967295 | -| test.c:543:14:543:15 | ip | 4294967295 | -| test.c:543:24:543:25 | ip | 4294967295 | -| test.c:543:44:543:45 | ip | 4294967295 | +| test.c:538:38:538:39 | ip | 4294967295 | +| test.c:539:29:539:30 | ip | 4294967295 | +| test.c:540:24:540:25 | ip | 4294967295 | +| test.c:541:17:541:18 | ip | 4294967295 | +| test.c:541:23:541:24 | ip | 4294967295 | +| test.c:541:43:541:44 | ip | 4294967295 | +| test.c:541:49:541:50 | ip | 4294967295 | +| test.c:542:16:542:17 | ip | 4294967295 | +| test.c:543:16:543:17 | ip | 4294967295 | | test.c:544:16:544:17 | ip | 4294967295 | -| test.c:545:16:545:17 | ip | 4294967295 | -| test.c:545:36:545:37 | ip | 4294967295 | -| test.c:546:14:546:15 | ip | 4294967295 | -| test.c:547:19:547:20 | ip | 4294967295 | -| test.c:548:20:548:21 | ip | 4294967295 | -| test.c:549:20:549:21 | ip | 4294967295 | -| test.c:550:21:550:22 | ip | 4294967295 | -| test.c:551:26:551:27 | ip | 4294967295 | -| test.c:551:37:551:38 | ip | 4294967295 | -| test.c:551:52:551:53 | ip | 4294967295 | -| test.c:551:63:551:64 | ip | 4294967295 | -| test.c:552:24:552:25 | ip | 4294967295 | -| test.c:553:29:553:30 | ip | 4294967295 | -| test.c:553:40:553:41 | ip | 4294967295 | -| test.c:554:31:554:32 | ip | 4294967295 | -| test.c:555:26:555:27 | ip | 4294967295 | -| test.c:556:17:556:18 | ip | 4294967295 | -| test.c:556:32:556:33 | ip | 4294967295 | -| test.c:557:22:557:23 | ip | 4294967295 | -| test.c:558:22:558:23 | ip | 4294967295 | -| test.c:559:22:559:23 | ip | 4294967295 | -| test.c:560:23:560:24 | ip | 4294967295 | -| test.c:561:28:561:29 | ip | 4294967295 | -| test.c:561:39:561:40 | ip | 4294967295 | -| test.c:561:54:561:55 | ip | 4294967295 | -| test.c:561:65:561:66 | ip | 4294967295 | +| test.c:545:17:545:18 | ip | 4294967295 | +| test.c:546:22:546:23 | ip | 4294967295 | +| test.c:546:33:546:34 | ip | 4294967295 | +| test.c:546:48:546:49 | ip | 4294967295 | +| test.c:546:59:546:60 | ip | 4294967295 | +| test.c:547:20:547:21 | ip | 4294967295 | +| test.c:548:25:548:26 | ip | 4294967295 | +| test.c:548:36:548:37 | ip | 4294967295 | +| test.c:549:27:549:28 | ip | 4294967295 | +| test.c:550:22:550:23 | ip | 4294967295 | +| test.c:551:16:551:17 | ip | 4294967295 | +| test.c:551:22:551:23 | ip | 4294967295 | +| test.c:552:18:552:19 | ip | 4294967295 | +| test.c:553:14:553:15 | ip | 4294967295 | +| test.c:554:14:554:15 | ip | 4294967295 | +| test.c:554:24:554:25 | ip | 4294967295 | +| test.c:554:44:554:45 | ip | 4294967295 | +| test.c:555:16:555:17 | ip | 4294967295 | +| test.c:556:16:556:17 | ip | 4294967295 | +| test.c:556:36:556:37 | ip | 4294967295 | +| test.c:557:14:557:15 | ip | 4294967295 | +| test.c:558:19:558:20 | ip | 4294967295 | +| test.c:559:20:559:21 | ip | 4294967295 | +| test.c:560:20:560:21 | ip | 4294967295 | +| test.c:561:21:561:22 | ip | 4294967295 | | test.c:562:26:562:27 | ip | 4294967295 | -| test.c:563:31:563:32 | ip | 4294967295 | -| test.c:563:42:563:43 | ip | 4294967295 | -| test.c:564:33:564:34 | ip | 4294967295 | -| test.c:565:28:565:29 | ip | 4294967295 | -| test.c:566:21:566:22 | ip | 4294967295 | -| test.c:566:36:566:37 | ip | 4294967295 | +| test.c:562:37:562:38 | ip | 4294967295 | +| test.c:562:52:562:53 | ip | 4294967295 | +| test.c:562:63:562:64 | ip | 4294967295 | +| test.c:563:24:563:25 | ip | 4294967295 | +| test.c:564:29:564:30 | ip | 4294967295 | +| test.c:564:40:564:41 | ip | 4294967295 | +| test.c:565:31:565:32 | ip | 4294967295 | +| test.c:566:26:566:27 | ip | 4294967295 | | test.c:567:17:567:18 | ip | 4294967295 | -| test.c:568:18:568:19 | ip | 4294967295 | -| test.c:569:18:569:19 | ip | 4294967295 | -| test.c:570:19:570:20 | ip | 4294967295 | -| test.c:571:24:571:25 | ip | 4294967295 | -| test.c:571:35:571:36 | ip | 4294967295 | -| test.c:571:50:571:51 | ip | 4294967295 | -| test.c:571:61:571:62 | ip | 4294967295 | -| test.c:572:22:572:23 | ip | 4294967295 | -| test.c:573:27:573:28 | ip | 4294967295 | -| test.c:573:38:573:39 | ip | 4294967295 | -| test.c:574:29:574:30 | ip | 4294967295 | -| test.c:575:24:575:25 | ip | 4294967295 | -| test.c:576:17:576:18 | ip | 4294967295 | -| test.c:576:23:576:24 | ip | 4294967295 | -| test.c:576:43:576:44 | ip | 4294967295 | -| test.c:576:49:576:50 | ip | 4294967295 | -| test.c:577:20:577:21 | ip | 4294967295 | -| test.c:578:20:578:21 | ip | 4294967295 | -| test.c:579:20:579:21 | ip | 4294967295 | -| test.c:580:21:580:22 | ip | 4294967295 | -| test.c:581:26:581:27 | ip | 4294967295 | -| test.c:581:37:581:38 | ip | 4294967295 | -| test.c:581:52:581:53 | ip | 4294967295 | -| test.c:581:63:581:64 | ip | 4294967295 | +| test.c:567:32:567:33 | ip | 4294967295 | +| test.c:568:22:568:23 | ip | 4294967295 | +| test.c:569:22:569:23 | ip | 4294967295 | +| test.c:570:22:570:23 | ip | 4294967295 | +| test.c:571:23:571:24 | ip | 4294967295 | +| test.c:572:28:572:29 | ip | 4294967295 | +| test.c:572:39:572:40 | ip | 4294967295 | +| test.c:572:54:572:55 | ip | 4294967295 | +| test.c:572:65:572:66 | ip | 4294967295 | +| test.c:573:26:573:27 | ip | 4294967295 | +| test.c:574:31:574:32 | ip | 4294967295 | +| test.c:574:42:574:43 | ip | 4294967295 | +| test.c:575:33:575:34 | ip | 4294967295 | +| test.c:576:28:576:29 | ip | 4294967295 | +| test.c:577:21:577:22 | ip | 4294967295 | +| test.c:577:36:577:37 | ip | 4294967295 | +| test.c:578:17:578:18 | ip | 4294967295 | +| test.c:579:18:579:19 | ip | 4294967295 | +| test.c:580:18:580:19 | ip | 4294967295 | +| test.c:581:19:581:20 | ip | 4294967295 | | test.c:582:24:582:25 | ip | 4294967295 | -| test.c:583:29:583:30 | ip | 4294967295 | -| test.c:583:40:583:41 | ip | 4294967295 | -| test.c:584:31:584:32 | ip | 4294967295 | -| test.c:585:26:585:27 | ip | 4294967295 | -| test.c:586:20:586:21 | ip | 4294967295 | -| test.c:586:26:586:27 | ip | 4294967295 | -| test.c:587:22:587:23 | ip | 4294967295 | -| test.c:588:18:588:19 | ip | 4294967295 | -| test.c:589:16:589:17 | ip | 4294967295 | -| test.c:590:17:590:18 | ip | 4294967295 | -| test.c:591:18:591:19 | ip | 4294967295 | -| test.c:592:18:592:19 | ip | 4294967295 | -| test.c:593:19:593:20 | ip | 4294967295 | -| test.c:594:24:594:25 | ip | 4294967295 | -| test.c:594:35:594:36 | ip | 4294967295 | -| test.c:594:50:594:51 | ip | 4294967295 | -| test.c:594:61:594:62 | ip | 4294967295 | -| test.c:595:22:595:23 | ip | 4294967295 | -| test.c:596:27:596:28 | ip | 4294967295 | -| test.c:596:38:596:39 | ip | 4294967295 | -| test.c:597:29:597:30 | ip | 4294967295 | -| test.c:598:24:598:25 | ip | 4294967295 | -| test.c:599:15:599:16 | ip | 4294967295 | -| test.c:599:30:599:31 | ip | 4294967295 | -| test.c:600:20:600:21 | ip | 4294967295 | -| test.c:601:20:601:21 | ip | 4294967295 | -| test.c:602:20:602:21 | ip | 4294967295 | -| test.c:603:21:603:22 | ip | 4294967295 | -| test.c:604:26:604:27 | ip | 4294967295 | -| test.c:604:37:604:38 | ip | 4294967295 | -| test.c:604:52:604:53 | ip | 4294967295 | -| test.c:604:63:604:64 | ip | 4294967295 | +| test.c:582:35:582:36 | ip | 4294967295 | +| test.c:582:50:582:51 | ip | 4294967295 | +| test.c:582:61:582:62 | ip | 4294967295 | +| test.c:583:22:583:23 | ip | 4294967295 | +| test.c:584:27:584:28 | ip | 4294967295 | +| test.c:584:38:584:39 | ip | 4294967295 | +| test.c:585:29:585:30 | ip | 4294967295 | +| test.c:586:24:586:25 | ip | 4294967295 | +| test.c:587:17:587:18 | ip | 4294967295 | +| test.c:587:23:587:24 | ip | 4294967295 | +| test.c:587:43:587:44 | ip | 4294967295 | +| test.c:587:49:587:50 | ip | 4294967295 | +| test.c:588:20:588:21 | ip | 4294967295 | +| test.c:589:20:589:21 | ip | 4294967295 | +| test.c:590:20:590:21 | ip | 4294967295 | +| test.c:591:21:591:22 | ip | 4294967295 | +| test.c:592:26:592:27 | ip | 4294967295 | +| test.c:592:37:592:38 | ip | 4294967295 | +| test.c:592:52:592:53 | ip | 4294967295 | +| test.c:592:63:592:64 | ip | 4294967295 | +| test.c:593:24:593:25 | ip | 4294967295 | +| test.c:594:29:594:30 | ip | 4294967295 | +| test.c:594:40:594:41 | ip | 4294967295 | +| test.c:595:31:595:32 | ip | 4294967295 | +| test.c:596:26:596:27 | ip | 4294967295 | +| test.c:597:20:597:21 | ip | 4294967295 | +| test.c:597:26:597:27 | ip | 4294967295 | +| test.c:598:22:598:23 | ip | 4294967295 | +| test.c:599:18:599:19 | ip | 4294967295 | +| test.c:600:16:600:17 | ip | 4294967295 | +| test.c:601:17:601:18 | ip | 4294967295 | +| test.c:602:18:602:19 | ip | 4294967295 | +| test.c:603:18:603:19 | ip | 4294967295 | +| test.c:604:19:604:20 | ip | 4294967295 | | test.c:605:24:605:25 | ip | 4294967295 | -| test.c:606:29:606:30 | ip | 4294967295 | -| test.c:606:40:606:41 | ip | 4294967295 | -| test.c:607:31:607:32 | ip | 4294967295 | -| test.c:608:26:608:27 | ip | 4294967295 | -| test.c:609:19:609:20 | ip | 4294967295 | -| test.c:609:34:609:35 | ip | 4294967295 | -| test.c:610:16:610:17 | ip | 4294967295 | +| test.c:605:35:605:36 | ip | 4294967295 | +| test.c:605:50:605:51 | ip | 4294967295 | +| test.c:605:61:605:62 | ip | 4294967295 | +| test.c:606:22:606:23 | ip | 4294967295 | +| test.c:607:27:607:28 | ip | 4294967295 | +| test.c:607:38:607:39 | ip | 4294967295 | +| test.c:608:29:608:30 | ip | 4294967295 | +| test.c:609:24:609:25 | ip | 4294967295 | +| test.c:610:15:610:16 | ip | 4294967295 | +| test.c:610:30:610:31 | ip | 4294967295 | | test.c:611:20:611:21 | ip | 4294967295 | | test.c:612:20:612:21 | ip | 4294967295 | -| test.c:613:21:613:22 | ip | 4294967295 | -| test.c:614:26:614:27 | ip | 4294967295 | -| test.c:614:37:614:38 | ip | 4294967295 | -| test.c:614:52:614:53 | ip | 4294967295 | -| test.c:614:63:614:64 | ip | 4294967295 | -| test.c:615:24:615:25 | ip | 4294967295 | -| test.c:616:29:616:30 | ip | 4294967295 | -| test.c:616:40:616:41 | ip | 4294967295 | -| test.c:617:31:617:32 | ip | 4294967295 | -| test.c:618:26:618:27 | ip | 4294967295 | -| test.c:619:19:619:20 | ip | 4294967295 | -| test.c:619:25:619:26 | ip | 4294967295 | -| test.c:619:45:619:46 | ip | 4294967295 | -| test.c:619:51:619:52 | ip | 4294967295 | -| test.c:620:18:620:19 | ip | 4294967295 | -| test.c:621:18:621:19 | ip | 4294967295 | -| test.c:622:18:622:19 | ip | 4294967295 | -| test.c:623:19:623:20 | ip | 4294967295 | -| test.c:624:24:624:25 | ip | 4294967295 | -| test.c:624:35:624:36 | ip | 4294967295 | -| test.c:624:50:624:51 | ip | 4294967295 | -| test.c:624:61:624:62 | ip | 4294967295 | -| test.c:625:22:625:23 | ip | 4294967295 | -| test.c:626:27:626:28 | ip | 4294967295 | -| test.c:626:38:626:39 | ip | 4294967295 | +| test.c:613:20:613:21 | ip | 4294967295 | +| test.c:614:21:614:22 | ip | 4294967295 | +| test.c:615:26:615:27 | ip | 4294967295 | +| test.c:615:37:615:38 | ip | 4294967295 | +| test.c:615:52:615:53 | ip | 4294967295 | +| test.c:615:63:615:64 | ip | 4294967295 | +| test.c:616:24:616:25 | ip | 4294967295 | +| test.c:617:29:617:30 | ip | 4294967295 | +| test.c:617:40:617:41 | ip | 4294967295 | +| test.c:618:31:618:32 | ip | 4294967295 | +| test.c:619:26:619:27 | ip | 4294967295 | +| test.c:620:19:620:20 | ip | 4294967295 | +| test.c:620:34:620:35 | ip | 4294967295 | +| test.c:621:16:621:17 | ip | 4294967295 | +| test.c:622:20:622:21 | ip | 4294967295 | +| test.c:623:20:623:21 | ip | 4294967295 | +| test.c:624:21:624:22 | ip | 4294967295 | +| test.c:625:26:625:27 | ip | 4294967295 | +| test.c:625:37:625:38 | ip | 4294967295 | +| test.c:625:52:625:53 | ip | 4294967295 | +| test.c:625:63:625:64 | ip | 4294967295 | +| test.c:626:24:626:25 | ip | 4294967295 | | test.c:627:29:627:30 | ip | 4294967295 | -| test.c:628:24:628:25 | ip | 4294967295 | -| test.c:629:18:629:19 | ip | 4294967295 | -| test.c:629:24:629:25 | ip | 4294967295 | -| test.c:630:20:630:21 | ip | 4294967295 | -| test.c:631:16:631:17 | ip | 4294967295 | -| test.c:632:10:632:23 | special_number | 4294967295 | -| test.c:640:7:640:8 | c1 | 2147483647 | -| test.c:640:13:640:13 | x | 0 | -| test.c:641:7:641:8 | c2 | 2147483647 | -| test.c:641:13:641:13 | x | 748596 | -| test.c:642:7:642:8 | c3 | 2147483647 | -| test.c:642:13:642:13 | x | 85400991 | -| test.c:643:7:643:8 | c4 | 2147483647 | -| test.c:643:13:643:13 | x | 89076886 | -| test.c:644:7:644:8 | c5 | 2147483647 | -| test.c:644:13:644:13 | x | 89175520 | -| test.c:645:7:645:8 | c1 | 2147483647 | -| test.c:645:13:645:14 | c2 | 2147483647 | -| test.c:645:19:645:19 | x | 97010505 | -| test.c:646:7:646:8 | c1 | 2147483647 | -| test.c:646:13:646:14 | c3 | 2147483647 | -| test.c:646:19:646:19 | x | 1035467903 | -| test.c:647:7:647:8 | c1 | 2147483647 | -| test.c:647:13:647:14 | c4 | 2147483647 | -| test.c:647:19:647:19 | x | 1109363551 | -| test.c:648:7:648:8 | c1 | 2147483647 | -| test.c:648:13:648:14 | c5 | 2147483647 | -| test.c:648:19:648:19 | x | 1121708983 | -| test.c:649:7:649:8 | c2 | 2147483647 | -| test.c:649:13:649:14 | c3 | 2147483647 | -| test.c:649:19:649:19 | x | 1121747830 | -| test.c:651:11:651:11 | x | 2147483647 | -| test.c:651:15:651:15 | x | 2147483647 | -| test.c:651:19:651:19 | x | 2147483647 | -| test.c:651:23:651:23 | x | 2147483647 | -| test.c:651:27:651:27 | x | 2147483647 | -| test.c:651:31:651:31 | x | 2147483647 | -| test.c:651:35:651:35 | x | 2147483647 | -| test.c:651:39:651:39 | x | 2147483647 | -| test.c:651:43:651:43 | x | 2147483647 | -| test.c:651:47:651:47 | x | 2147483647 | -| test.c:651:51:651:51 | x | 2147483647 | -| test.c:651:55:651:55 | x | 2147483647 | -| test.c:652:10:652:10 | y | 2147483647 | -| test.c:657:20:657:20 | x | 4294967295 | -| test.c:657:30:657:30 | x | 99 | -| test.c:660:3:660:4 | y1 | 4294967295 | -| test.c:660:11:660:11 | y | 100 | -| test.c:660:14:660:14 | y | 101 | -| test.c:661:3:661:4 | y2 | 4294967295 | -| test.c:661:9:661:9 | y | 101 | -| test.c:661:14:661:14 | y | 102 | -| test.c:661:22:661:22 | y | 105 | -| test.c:662:10:662:11 | y1 | 101 | -| test.c:662:15:662:16 | y2 | 105 | -| test.c:670:3:670:3 | i | 2147483647 | -| test.c:671:7:671:7 | i | 10 | -| test.c:673:3:673:3 | i | 2147483647 | -| test.c:674:3:674:3 | i | 10 | -| test.c:675:7:675:7 | i | 20 | -| test.c:677:3:677:3 | i | 2147483647 | -| test.c:678:3:678:3 | i | 40 | -| test.c:679:7:679:7 | i | 30 | +| test.c:627:40:627:41 | ip | 4294967295 | +| test.c:628:31:628:32 | ip | 4294967295 | +| test.c:629:26:629:27 | ip | 4294967295 | +| test.c:630:19:630:20 | ip | 4294967295 | +| test.c:630:25:630:26 | ip | 4294967295 | +| test.c:630:45:630:46 | ip | 4294967295 | +| test.c:630:51:630:52 | ip | 4294967295 | +| test.c:631:18:631:19 | ip | 4294967295 | +| test.c:632:18:632:19 | ip | 4294967295 | +| test.c:633:18:633:19 | ip | 4294967295 | +| test.c:634:19:634:20 | ip | 4294967295 | +| test.c:635:24:635:25 | ip | 4294967295 | +| test.c:635:35:635:36 | ip | 4294967295 | +| test.c:635:50:635:51 | ip | 4294967295 | +| test.c:635:61:635:62 | ip | 4294967295 | +| test.c:636:22:636:23 | ip | 4294967295 | +| test.c:637:27:637:28 | ip | 4294967295 | +| test.c:637:38:637:39 | ip | 4294967295 | +| test.c:638:29:638:30 | ip | 4294967295 | +| test.c:639:24:639:25 | ip | 4294967295 | +| test.c:640:18:640:19 | ip | 4294967295 | +| test.c:640:24:640:25 | ip | 4294967295 | +| test.c:641:20:641:21 | ip | 4294967295 | +| test.c:642:16:642:17 | ip | 4294967295 | +| test.c:643:10:643:23 | special_number | 4294967295 | +| test.c:651:7:651:8 | c1 | 2147483647 | +| test.c:651:13:651:13 | x | 0 | +| test.c:652:7:652:8 | c2 | 2147483647 | +| test.c:652:13:652:13 | x | 748596 | +| test.c:653:7:653:8 | c3 | 2147483647 | +| test.c:653:13:653:13 | x | 85400991 | +| test.c:654:7:654:8 | c4 | 2147483647 | +| test.c:654:13:654:13 | x | 89076886 | +| test.c:655:7:655:8 | c5 | 2147483647 | +| test.c:655:13:655:13 | x | 89175520 | +| test.c:656:7:656:8 | c1 | 2147483647 | +| test.c:656:13:656:14 | c2 | 2147483647 | +| test.c:656:19:656:19 | x | 97010505 | +| test.c:657:7:657:8 | c1 | 2147483647 | +| test.c:657:13:657:14 | c3 | 2147483647 | +| test.c:657:19:657:19 | x | 1035467903 | +| test.c:658:7:658:8 | c1 | 2147483647 | +| test.c:658:13:658:14 | c4 | 2147483647 | +| test.c:658:19:658:19 | x | 1109363551 | +| test.c:659:7:659:8 | c1 | 2147483647 | +| test.c:659:13:659:14 | c5 | 2147483647 | +| test.c:659:19:659:19 | x | 1121708983 | +| test.c:660:7:660:8 | c2 | 2147483647 | +| test.c:660:13:660:14 | c3 | 2147483647 | +| test.c:660:19:660:19 | x | 1121747830 | +| test.c:662:11:662:11 | x | 2147483647 | +| test.c:662:15:662:15 | x | 2147483647 | +| test.c:662:19:662:19 | x | 2147483647 | +| test.c:662:23:662:23 | x | 2147483647 | +| test.c:662:27:662:27 | x | 2147483647 | +| test.c:662:31:662:31 | x | 2147483647 | +| test.c:662:35:662:35 | x | 2147483647 | +| test.c:662:39:662:39 | x | 2147483647 | +| test.c:662:43:662:43 | x | 2147483647 | +| test.c:662:47:662:47 | x | 2147483647 | +| test.c:662:51:662:51 | x | 2147483647 | +| test.c:662:55:662:55 | x | 2147483647 | +| test.c:663:10:663:10 | y | 2147483647 | +| test.c:668:20:668:20 | x | 4294967295 | +| test.c:668:30:668:30 | x | 99 | +| test.c:671:3:671:4 | y1 | 4294967295 | +| test.c:671:11:671:11 | y | 100 | +| test.c:671:14:671:14 | y | 101 | +| test.c:672:3:672:4 | y2 | 4294967295 | +| test.c:672:9:672:9 | y | 101 | +| test.c:672:14:672:14 | y | 102 | +| test.c:672:22:672:22 | y | 105 | +| test.c:673:10:673:11 | y1 | 101 | +| test.c:673:15:673:16 | y2 | 105 | | test.c:681:3:681:3 | i | 2147483647 | -| test.c:681:7:681:7 | j | 2147483647 | -| test.c:682:7:682:7 | i | 40 | +| test.c:682:7:682:7 | i | 10 | | test.c:684:3:684:3 | i | 2147483647 | -| test.c:684:8:684:8 | j | 40 | -| test.c:685:7:685:7 | i | 50 | -| test.c:687:3:687:3 | i | 2147483647 | -| test.c:687:13:687:13 | j | 50 | -| test.c:688:7:688:7 | i | 60 | -| test.c:695:12:695:12 | a | 4294967295 | -| test.c:695:17:695:17 | a | 4294967295 | -| test.c:695:33:695:33 | b | 4294967295 | -| test.c:695:38:695:38 | b | 4294967295 | -| test.c:696:13:696:13 | a | 11 | -| test.c:696:15:696:15 | b | 23 | -| test.c:697:5:697:9 | total | 0 | -| test.c:697:14:697:14 | r | 253 | -| test.c:699:12:699:12 | a | 4294967295 | -| test.c:699:17:699:17 | a | 4294967295 | -| test.c:699:33:699:33 | b | 4294967295 | -| test.c:699:38:699:38 | b | 4294967295 | -| test.c:700:13:700:13 | a | 11 | -| test.c:700:15:700:15 | b | 23 | -| test.c:701:5:701:9 | total | 253 | -| test.c:701:14:701:14 | r | 253 | -| test.c:703:12:703:12 | a | 4294967295 | -| test.c:703:17:703:17 | a | 4294967295 | -| test.c:703:34:703:34 | b | 4294967295 | -| test.c:703:39:703:39 | b | 4294967295 | -| test.c:704:13:704:13 | a | 11 | -| test.c:704:15:704:15 | b | 23 | -| test.c:705:5:705:9 | total | 506 | -| test.c:705:14:705:14 | r | 253 | -| test.c:708:10:708:14 | total | 759 | -| test.c:714:12:714:12 | b | 4294967295 | -| test.c:714:17:714:17 | b | 4294967295 | -| test.c:715:16:715:16 | b | 23 | -| test.c:716:5:716:9 | total | 0 | +| test.c:685:3:685:3 | i | 10 | +| test.c:686:7:686:7 | i | 20 | +| test.c:688:3:688:3 | i | 2147483647 | +| test.c:689:3:689:3 | i | 40 | +| test.c:690:7:690:7 | i | 30 | +| test.c:692:3:692:3 | i | 2147483647 | +| test.c:692:7:692:7 | j | 2147483647 | +| test.c:693:7:693:7 | i | 40 | +| test.c:695:3:695:3 | i | 2147483647 | +| test.c:695:8:695:8 | j | 40 | +| test.c:696:7:696:7 | i | 50 | +| test.c:698:3:698:3 | i | 2147483647 | +| test.c:698:13:698:13 | j | 50 | +| test.c:699:7:699:7 | i | 60 | +| test.c:706:12:706:12 | a | 4294967295 | +| test.c:706:17:706:17 | a | 4294967295 | +| test.c:706:33:706:33 | b | 4294967295 | +| test.c:706:38:706:38 | b | 4294967295 | +| test.c:707:13:707:13 | a | 11 | +| test.c:707:15:707:15 | b | 23 | +| test.c:708:5:708:9 | total | 0 | +| test.c:708:14:708:14 | r | 253 | +| test.c:710:12:710:12 | a | 4294967295 | +| test.c:710:17:710:17 | a | 4294967295 | +| test.c:710:33:710:33 | b | 4294967295 | +| test.c:710:38:710:38 | b | 4294967295 | +| test.c:711:13:711:13 | a | 11 | +| test.c:711:15:711:15 | b | 23 | +| test.c:712:5:712:9 | total | 253 | +| test.c:712:14:712:14 | r | 253 | +| test.c:714:12:714:12 | a | 4294967295 | +| test.c:714:17:714:17 | a | 4294967295 | +| test.c:714:34:714:34 | b | 4294967295 | +| test.c:714:39:714:39 | b | 4294967295 | +| test.c:715:13:715:13 | a | 11 | +| test.c:715:15:715:15 | b | 23 | +| test.c:716:5:716:9 | total | 506 | | test.c:716:14:716:14 | r | 253 | -| test.c:718:12:718:12 | b | 4294967295 | -| test.c:718:17:718:17 | b | 4294967295 | -| test.c:719:16:719:16 | b | 23 | -| test.c:720:5:720:9 | total | 253 | -| test.c:720:14:720:14 | r | 253 | -| test.c:722:13:722:13 | b | 4294967295 | -| test.c:722:18:722:18 | b | 4294967295 | -| test.c:723:16:723:16 | b | 23 | -| test.c:724:5:724:9 | total | 506 | -| test.c:724:14:724:14 | r | 253 | -| test.c:727:10:727:14 | total | 759 | -| test.c:732:3:732:3 | x | 18446744073709551616 | -| test.c:732:7:732:7 | y | 18446744073709551616 | -| test.c:733:3:733:4 | xy | 18446744073709551616 | -| test.c:733:8:733:8 | x | 1000000003 | -| test.c:733:12:733:12 | y | 1000000003 | -| test.c:734:10:734:11 | xy | 1000000006000000000 | -| test.c:739:3:739:3 | x | 18446744073709551616 | -| test.c:740:3:740:3 | y | 18446744073709551616 | -| test.c:741:3:741:4 | xy | 18446744073709551616 | -| test.c:741:8:741:8 | x | 274177 | -| test.c:741:12:741:12 | y | 67280421310721 | -| test.c:742:10:742:11 | xy | 18446744073709551616 | -| test.c:746:7:746:8 | ui | 4294967295 | -| test.c:747:43:747:44 | ui | 4294967295 | -| test.c:747:48:747:49 | ui | 4294967295 | -| test.c:748:12:748:17 | result | 18446744065119617024 | -| test.c:750:7:750:8 | ul | 18446744073709551616 | -| test.c:751:28:751:29 | ul | 18446744073709551616 | -| test.c:751:33:751:34 | ul | 18446744073709551616 | -| test.c:752:12:752:17 | result | 18446744073709551616 | -| test.c:758:7:758:8 | ui | 4294967295 | -| test.c:758:19:758:20 | ui | 10 | -| test.c:759:5:759:6 | ui | 10 | -| test.c:759:11:759:12 | ui | 10 | -| test.c:760:12:760:13 | ui | 100 | -| test.c:764:3:764:9 | uiconst | 10 | -| test.c:767:3:767:9 | ulconst | 10 | -| test.c:768:10:768:16 | uiconst | 40 | -| test.c:768:20:768:26 | ulconst | 40 | -| test.c:772:7:772:7 | i | 2147483647 | -| test.c:772:18:772:18 | i | 2147483647 | -| test.c:773:5:773:5 | i | 2147483647 | -| test.c:773:13:773:13 | i | 2 | -| test.c:774:9:774:9 | i | 10 | -| test.c:776:5:776:5 | i | 2147483647 | -| test.c:776:9:776:9 | i | 10 | -| test.c:777:9:777:9 | i | 15 | -| test.c:779:5:779:5 | i | 15 | -| test.c:780:9:780:9 | i | 105 | -| test.c:782:5:782:5 | i | 105 | -| test.c:783:9:783:9 | i | 2310 | -| test.c:785:7:785:7 | i | 2147483647 | -| test.c:786:5:786:5 | i | 2147483647 | -| test.c:786:9:786:9 | i | -1 | -| test.c:787:9:787:9 | i | 1 | -| test.c:789:3:789:3 | i | 2147483647 | -| test.c:789:7:789:7 | i | 2147483647 | -| test.c:790:10:790:10 | i | 2147483647 | -| test.c:793:3:793:3 | i | 2147483647 | -| test.c:793:10:793:11 | sc | 1 | -| test.c:795:7:795:7 | i | 127 | -| test.c:802:7:802:7 | n | 4294967295 | -| test.c:804:7:804:7 | n | 4294967295 | -| test.c:805:9:805:9 | n | 4294967295 | -| test.c:808:7:808:7 | n | 4294967295 | -| test.c:809:9:809:9 | n | 4294967295 | -| test.c:811:9:811:9 | n | 0 | -| test.c:814:8:814:8 | n | 4294967295 | -| test.c:815:9:815:9 | n | 0 | -| test.c:817:9:817:9 | n | 4294967295 | -| test.c:820:10:820:10 | n | 4294967295 | -| test.c:821:5:821:5 | n | 4294967295 | -| test.c:824:7:824:7 | n | 0 | -| test.c:828:7:828:7 | n | 32767 | -| test.c:831:7:831:7 | n | 32767 | -| test.c:832:9:832:9 | n | 0 | -| test.c:834:9:834:9 | n | 32767 | -| test.c:837:7:837:7 | n | 32767 | -| test.c:838:9:838:9 | n | 32767 | -| test.c:840:9:840:9 | n | 0 | -| test.c:843:10:843:10 | n | 32767 | -| test.c:844:5:844:5 | n | 32767 | -| test.c:847:7:847:7 | n | 0 | -| test.c:851:7:851:7 | n | 32767 | -| test.c:852:9:852:9 | n | 32767 | -| test.c:853:11:853:11 | n | 32767 | -| test.c:857:7:857:7 | n | 32767 | -| test.c:858:13:858:13 | n | 32767 | -| test.c:861:9:861:9 | n | 32767 | -| test.c:864:7:864:7 | n | 32767 | -| test.c:864:22:864:22 | n | 32767 | -| test.c:865:9:865:9 | n | 32767 | +| test.c:719:10:719:14 | total | 759 | +| test.c:725:12:725:12 | b | 4294967295 | +| test.c:725:17:725:17 | b | 4294967295 | +| test.c:726:16:726:16 | b | 23 | +| test.c:727:5:727:9 | total | 0 | +| test.c:727:14:727:14 | r | 253 | +| test.c:729:12:729:12 | b | 4294967295 | +| test.c:729:17:729:17 | b | 4294967295 | +| test.c:730:16:730:16 | b | 23 | +| test.c:731:5:731:9 | total | 253 | +| test.c:731:14:731:14 | r | 253 | +| test.c:733:13:733:13 | b | 4294967295 | +| test.c:733:18:733:18 | b | 4294967295 | +| test.c:734:16:734:16 | b | 23 | +| test.c:735:5:735:9 | total | 506 | +| test.c:735:14:735:14 | r | 253 | +| test.c:738:10:738:14 | total | 759 | +| test.c:743:3:743:3 | x | 18446744073709551616 | +| test.c:743:7:743:7 | y | 18446744073709551616 | +| test.c:744:3:744:4 | xy | 18446744073709551616 | +| test.c:744:8:744:8 | x | 1000000003 | +| test.c:744:12:744:12 | y | 1000000003 | +| test.c:745:10:745:11 | xy | 1000000006000000000 | +| test.c:750:3:750:3 | x | 18446744073709551616 | +| test.c:751:3:751:3 | y | 18446744073709551616 | +| test.c:752:3:752:4 | xy | 18446744073709551616 | +| test.c:752:8:752:8 | x | 274177 | +| test.c:752:12:752:12 | y | 67280421310721 | +| test.c:753:10:753:11 | xy | 18446744073709551616 | +| test.c:757:7:757:8 | ui | 4294967295 | +| test.c:758:43:758:44 | ui | 4294967295 | +| test.c:758:48:758:49 | ui | 4294967295 | +| test.c:759:12:759:17 | result | 18446744065119617024 | +| test.c:761:7:761:8 | ul | 18446744073709551616 | +| test.c:762:28:762:29 | ul | 18446744073709551616 | +| test.c:762:33:762:34 | ul | 18446744073709551616 | +| test.c:763:12:763:17 | result | 18446744073709551616 | +| test.c:769:7:769:8 | ui | 4294967295 | +| test.c:769:19:769:20 | ui | 10 | +| test.c:770:5:770:6 | ui | 10 | +| test.c:770:11:770:12 | ui | 10 | +| test.c:771:12:771:13 | ui | 100 | +| test.c:775:3:775:9 | uiconst | 10 | +| test.c:778:3:778:9 | ulconst | 10 | +| test.c:779:10:779:16 | uiconst | 40 | +| test.c:779:20:779:26 | ulconst | 40 | +| test.c:783:7:783:7 | i | 2147483647 | +| test.c:783:18:783:18 | i | 2147483647 | +| test.c:784:5:784:5 | i | 2147483647 | +| test.c:784:13:784:13 | i | 2 | +| test.c:785:9:785:9 | i | 10 | +| test.c:787:5:787:5 | i | 2147483647 | +| test.c:787:9:787:9 | i | 10 | +| test.c:788:9:788:9 | i | 15 | +| test.c:790:5:790:5 | i | 15 | +| test.c:791:9:791:9 | i | 105 | +| test.c:793:5:793:5 | i | 105 | +| test.c:794:9:794:9 | i | 2310 | +| test.c:796:7:796:7 | i | 2147483647 | +| test.c:797:5:797:5 | i | 2147483647 | +| test.c:797:9:797:9 | i | -1 | +| test.c:798:9:798:9 | i | 1 | +| test.c:800:3:800:3 | i | 2147483647 | +| test.c:800:7:800:7 | i | 2147483647 | +| test.c:801:10:801:10 | i | 2147483647 | +| test.c:804:3:804:3 | i | 2147483647 | +| test.c:804:10:804:11 | sc | 1 | +| test.c:806:7:806:7 | i | 127 | +| test.c:813:7:813:7 | n | 4294967295 | +| test.c:815:7:815:7 | n | 4294967295 | +| test.c:816:9:816:9 | n | 4294967295 | +| test.c:819:7:819:7 | n | 4294967295 | +| test.c:820:9:820:9 | n | 4294967295 | +| test.c:822:9:822:9 | n | 0 | +| test.c:825:8:825:8 | n | 4294967295 | +| test.c:826:9:826:9 | n | 0 | +| test.c:828:9:828:9 | n | 4294967295 | +| test.c:831:10:831:10 | n | 4294967295 | +| test.c:832:5:832:5 | n | 4294967295 | +| test.c:835:7:835:7 | n | 0 | +| test.c:839:7:839:7 | n | 32767 | +| test.c:842:7:842:7 | n | 32767 | +| test.c:843:9:843:9 | n | 0 | +| test.c:845:9:845:9 | n | 32767 | +| test.c:848:7:848:7 | n | 32767 | +| test.c:849:9:849:9 | n | 32767 | +| test.c:851:9:851:9 | n | 0 | +| test.c:854:10:854:10 | n | 32767 | +| test.c:855:5:855:5 | n | 32767 | +| test.c:858:7:858:7 | n | 0 | +| test.c:862:7:862:7 | n | 32767 | +| test.c:863:9:863:9 | n | 32767 | +| test.c:864:11:864:11 | n | 32767 | | test.c:868:7:868:7 | n | 32767 | -| test.c:869:5:869:5 | n | 32767 | -| test.c:869:10:869:10 | n | 32767 | -| test.c:869:14:869:14 | n | 0 | -| test.c:870:6:870:6 | n | 32767 | -| test.c:870:10:870:10 | n | 0 | -| test.c:870:14:870:14 | n | 32767 | -| test.c:881:7:881:8 | ss | 32767 | -| test.c:882:9:882:10 | ss | 3 | -| test.c:885:7:885:8 | ss | 32767 | -| test.c:886:9:886:10 | ss | 32767 | -| test.c:889:14:889:15 | us | 65535 | -| test.c:890:9:890:10 | us | 32767 | -| test.c:893:14:893:15 | us | 65535 | -| test.c:894:9:894:10 | us | 65535 | -| test.c:897:7:897:8 | ss | 32767 | -| test.c:898:9:898:10 | ss | 32767 | -| test.c:901:7:901:8 | ss | 32767 | -| test.c:902:9:902:10 | ss | 2 | -| test.c:908:8:908:8 | s | 2147483647 | -| test.c:908:15:908:15 | s | 127 | -| test.c:908:23:908:23 | s | 9 | -| test.c:909:18:909:18 | s | 9 | -| test.c:909:22:909:22 | s | 9 | -| test.c:910:9:910:14 | result | 127 | -| test.c:916:7:916:7 | i | 0 | -| test.c:917:9:917:9 | i | 2147483647 | -| test.c:921:7:921:7 | u | 0 | -| test.c:922:9:922:9 | u | 4294967295 | -| test.c:927:12:927:12 | s | 2147483647 | -| test.c:928:7:928:8 | s2 | 4 | -| test.c:933:7:933:7 | x | 2147483647 | -| test.c:934:9:934:9 | y | 2147483647 | -| test.c:938:7:938:7 | y | 2147483647 | -| test.c:947:7:947:7 | x | 2147483647 | -| test.c:952:7:952:7 | x | 15 | -| test.c:959:8:959:8 | x | 2147483647 | -| test.c:959:12:959:12 | y | 256 | -| test.c:960:9:960:9 | x | 2147483647 | -| test.c:961:9:961:9 | y | 256 | +| test.c:869:13:869:13 | n | 32767 | +| test.c:872:9:872:9 | n | 32767 | +| test.c:875:7:875:7 | n | 32767 | +| test.c:875:22:875:22 | n | 32767 | +| test.c:876:9:876:9 | n | 32767 | +| test.c:879:7:879:7 | n | 32767 | +| test.c:880:5:880:5 | n | 32767 | +| test.c:880:10:880:10 | n | 32767 | +| test.c:880:14:880:14 | n | 0 | +| test.c:881:6:881:6 | n | 32767 | +| test.c:881:10:881:10 | n | 0 | +| test.c:881:14:881:14 | n | 32767 | +| test.c:892:7:892:8 | ss | 32767 | +| test.c:893:9:893:10 | ss | 3 | +| test.c:896:7:896:8 | ss | 32767 | +| test.c:897:9:897:10 | ss | 32767 | +| test.c:900:14:900:15 | us | 65535 | +| test.c:901:9:901:10 | us | 32767 | +| test.c:904:14:904:15 | us | 65535 | +| test.c:905:9:905:10 | us | 65535 | +| test.c:908:7:908:8 | ss | 32767 | +| test.c:909:9:909:10 | ss | 32767 | +| test.c:912:7:912:8 | ss | 32767 | +| test.c:913:9:913:10 | ss | 2 | +| test.c:919:8:919:8 | s | 2147483647 | +| test.c:919:15:919:15 | s | 127 | +| test.c:919:23:919:23 | s | 9 | +| test.c:920:18:920:18 | s | 9 | +| test.c:920:22:920:22 | s | 9 | +| test.c:921:9:921:14 | result | 127 | +| test.c:927:7:927:7 | i | 0 | +| test.c:928:9:928:9 | i | 2147483647 | +| test.c:932:7:932:7 | u | 0 | +| test.c:933:9:933:9 | u | 4294967295 | +| test.c:938:12:938:12 | s | 2147483647 | +| test.c:939:7:939:8 | s2 | 4 | +| test.c:944:7:944:7 | x | 2147483647 | +| test.c:945:9:945:9 | y | 2147483647 | +| test.c:949:7:949:7 | y | 2147483647 | +| test.c:958:7:958:7 | x | 2147483647 | +| test.c:963:7:963:7 | x | 15 | +| test.c:970:8:970:8 | x | 2147483647 | +| test.c:970:12:970:12 | y | 256 | +| test.c:971:9:971:9 | x | 2147483647 | +| test.c:972:9:972:9 | y | 256 | | test.cpp:10:7:10:7 | b | 2147483647 | | test.cpp:11:5:11:5 | x | 2147483647 | | test.cpp:13:10:13:10 | x | 2147483647 | diff --git a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md index 73990a2c6fd..6f9460e613c 100644 --- a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.56 + +No user-facing changes. + ## 1.7.55 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.56.md b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.56.md new file mode 100644 index 00000000000..495cde9379d --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.56.md @@ -0,0 +1,3 @@ +## 1.7.56 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml index 26e02fb41f4..c228b5e0e71 100644 --- a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.55 +lastReleaseVersion: 1.7.56 diff --git a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml index 46f964a1bae..2e3b6a3a72d 100644 --- a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-all -version: 1.7.56-dev +version: 1.7.57-dev groups: - csharp - solorigate diff --git a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md index 73990a2c6fd..6f9460e613c 100644 --- a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.56 + +No user-facing changes. + ## 1.7.55 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.56.md b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.56.md new file mode 100644 index 00000000000..495cde9379d --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.56.md @@ -0,0 +1,3 @@ +## 1.7.56 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml index 26e02fb41f4..c228b5e0e71 100644 --- a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.55 +lastReleaseVersion: 1.7.56 diff --git a/csharp/ql/campaigns/Solorigate/src/qlpack.yml b/csharp/ql/campaigns/Solorigate/src/qlpack.yml index cb91019ff14..48e68f99dfa 100644 --- a/csharp/ql/campaigns/Solorigate/src/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-queries -version: 1.7.56-dev +version: 1.7.57-dev groups: - csharp - solorigate diff --git a/csharp/ql/lib/CHANGELOG.md b/csharp/ql/lib/CHANGELOG.md index 59eb2a98cf0..346d48fca29 100644 --- a/csharp/ql/lib/CHANGELOG.md +++ b/csharp/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.4.4 + +No user-facing changes. + ## 5.4.3 No user-facing changes. diff --git a/csharp/ql/lib/change-notes/released/5.4.4.md b/csharp/ql/lib/change-notes/released/5.4.4.md new file mode 100644 index 00000000000..88aaa5cc6bd --- /dev/null +++ b/csharp/ql/lib/change-notes/released/5.4.4.md @@ -0,0 +1,3 @@ +## 5.4.4 + +No user-facing changes. diff --git a/csharp/ql/lib/codeql-pack.release.yml b/csharp/ql/lib/codeql-pack.release.yml index dc2d3dec96c..cb0e3d32e76 100644 --- a/csharp/ql/lib/codeql-pack.release.yml +++ b/csharp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.4.3 +lastReleaseVersion: 5.4.4 diff --git a/csharp/ql/lib/ext/System.Web.model.yml b/csharp/ql/lib/ext/System.Web.model.yml index ba644e1cc70..6d05cdae75b 100644 --- a/csharp/ql/lib/ext/System.Web.model.yml +++ b/csharp/ql/lib/ext/System.Web.model.yml @@ -1,4 +1,10 @@ extensions: + - addsTo: + pack: codeql/csharp-all + extensible: barrierModel + data: + # The RawUrl property is considered to be safe for URL redirects + - ["System.Web", "HttpRequest", False, "get_RawUrl", "()", "", "ReturnValue", "url-redirection", "manual"] - addsTo: pack: codeql/csharp-all extensible: sinkModel diff --git a/csharp/ql/lib/ext/System.model.yml b/csharp/ql/lib/ext/System.model.yml index 870413e7569..963b37887ee 100644 --- a/csharp/ql/lib/ext/System.model.yml +++ b/csharp/ql/lib/ext/System.model.yml @@ -11,6 +11,11 @@ extensions: - ["System", "Environment", False, "get_CommandLine", "()", "", "ReturnValue", "commandargs", "manual"] - ["System", "Environment", False, "GetEnvironmentVariable", "", "", "ReturnValue", "environment", "manual"] - ["System", "Environment", False, "GetEnvironmentVariables", "", "", "ReturnValue", "environment", "manual"] + - addsTo: + pack: codeql/csharp-all + extensible: barrierGuardModel + data: + - ["System", "Uri", False, "get_IsAbsoluteUri", "()", "", "Argument[this]", "false", "url-redirection", "manual"] - addsTo: pack: codeql/csharp-all extensible: summaryModel diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index 527e890f47b..a524b9cefbc 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-all -version: 5.4.4-dev +version: 5.4.5-dev groups: csharp dbscheme: semmlecode.csharp.dbscheme extractor: csharp diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPublic.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPublic.qll index 4023d6c4597..f4d24fdb510 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPublic.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPublic.qll @@ -197,6 +197,42 @@ module BarrierGuard { } } +bindingset[this] +private signature class ParamSig; + +private module WithParam { + /** + * Holds if the guard `g` validates the expression `e` upon evaluating to `gv`. + * + * The expression `e` is expected to be a syntactic part of the guard `g`. + * For example, the guard `g` might be a call `isSafe(x)` and the expression `e` + * the argument `x`. + */ + signature predicate guardChecksSig(Guard g, Expr e, GuardValue gv, P param); +} + +/** + * Provides a set of barrier nodes for a guard that validates an expression. + * + * This is expected to be used in `isBarrier`/`isSanitizer` definitions + * in data flow and taint tracking. + */ +module ParameterizedBarrierGuard::guardChecksSig/4 guardChecks> { + private import SsaImpl as SsaImpl + + /** Gets a node that is safely guarded by the given guard check. */ + pragma[nomagic] + Node getABarrierNode(P param) { + SsaFlow::asNode(result) = + SsaImpl::DataFlowIntegration::ParameterizedBarrierGuard::getABarrierNode(param) + or + exists(Guard g, Expr e, GuardValue v | + guardChecks(g, e, v, param) and + g.controlsNode(result.getControlFlowNode(), e, v) + ) + } +} + /** * A reference contained in an object. This is either a field, a property, * or an element in a collection. diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/ExternalFlow.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/ExternalFlow.qll index 75d14034e00..1e6fed03d5c 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/ExternalFlow.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/ExternalFlow.qll @@ -97,6 +97,7 @@ private import FlowSummaryImpl::Public private import FlowSummaryImpl::Private private import FlowSummaryImpl::Private::External private import semmle.code.csharp.commons.QualifiedName +private import semmle.code.csharp.controlflow.Guards private import semmle.code.csharp.dispatch.OverridableCallable private import semmle.code.csharp.frameworks.System private import codeql.dataflow.internal.AccessPathSyntax as AccessPathSyntax @@ -115,7 +116,9 @@ module ModelValidation { summaryModel(_, _, _, _, _, _, path, _, _, _, _) or summaryModel(_, _, _, _, _, _, _, path, _, _, _) or sinkModel(_, _, _, _, _, _, path, _, _, _) or - sourceModel(_, _, _, _, _, _, path, _, _, _) + sourceModel(_, _, _, _, _, _, path, _, _, _) or + barrierModel(_, _, _, _, _, _, path, _, _, _) or + barrierGuardModel(_, _, _, _, _, _, path, _, _, _, _) } private module MkAccessPath = AccessPathSyntax::AccessPath; @@ -128,6 +131,8 @@ module ModelValidation { exists(string pred, AccessPath input, AccessPathToken part | sinkModel(_, _, _, _, _, _, input, _, _, _) and pred = "sink" or + barrierGuardModel(_, _, _, _, _, _, input, _, _, _, _) and pred = "barrier guard" + or summaryModel(_, _, _, _, _, _, input, _, _, _, _) and pred = "summary" | ( @@ -150,6 +155,8 @@ module ModelValidation { exists(string pred, AccessPath output, AccessPathToken part | sourceModel(_, _, _, _, _, _, output, _, _, _) and pred = "source" or + barrierModel(_, _, _, _, _, _, output, _, _, _) and pred = "barrier" + or summaryModel(_, _, _, _, _, _, _, output, _, _, _) and pred = "summary" | ( @@ -167,7 +174,13 @@ module ModelValidation { private module KindValConfig implements SharedModelVal::KindValidationConfigSig { predicate summaryKind(string kind) { summaryModel(_, _, _, _, _, _, _, _, kind, _, _) } - predicate sinkKind(string kind) { sinkModel(_, _, _, _, _, _, _, kind, _, _) } + predicate sinkKind(string kind) { + sinkModel(_, _, _, _, _, _, _, kind, _, _) + or + barrierModel(_, _, _, _, _, _, _, kind, _, _) + or + barrierGuardModel(_, _, _, _, _, _, _, _, kind, _, _) + } predicate sourceKind(string kind) { sourceModel(_, _, _, _, _, _, _, kind, _, _) } @@ -185,6 +198,12 @@ module ModelValidation { or sinkModel(namespace, type, _, name, signature, ext, _, _, provenance, _) and pred = "sink" or + barrierModel(namespace, type, _, name, signature, ext, _, _, provenance, _) and + pred = "barrier" + or + barrierGuardModel(namespace, type, _, name, signature, ext, _, _, _, provenance, _) and + pred = "barrier guard" + or summaryModel(namespace, type, _, name, signature, ext, _, _, _, provenance, _) and pred = "summary" or @@ -210,6 +229,14 @@ module ModelValidation { invalidProvenance(provenance) and result = "Unrecognized provenance description \"" + provenance + "\" in " + pred + " model." ) + or + exists(string acceptingvalue | + barrierGuardModel(_, _, _, _, _, _, _, acceptingvalue, _, _, _) and + invalidAcceptingValue(acceptingvalue) and + result = + "Unrecognized accepting value description \"" + acceptingvalue + + "\" in barrier guard model." + ) } /** Holds if some row in a MaD flow model appears to contain typos. */ @@ -229,6 +256,10 @@ private predicate elementSpec( or sinkModel(namespace, type, subtypes, name, signature, ext, _, _, _, _) or + barrierModel(namespace, type, subtypes, name, signature, ext, _, _, _, _) + or + barrierGuardModel(namespace, type, subtypes, name, signature, ext, _, _, _, _, _) + or summaryModel(namespace, type, subtypes, name, signature, ext, _, _, _, _, _) or Extensions::neutralModel(namespace, type, name, signature, _, _) and ext = "" and subtypes = true @@ -372,7 +403,9 @@ Declaration interpretElement( private predicate relevantExt(string ext) { summaryModel(_, _, _, _, _, ext, _, _, _, _, _) or sourceModel(_, _, _, _, _, ext, _, _, _, _) or - sinkModel(_, _, _, _, _, ext, _, _, _, _) + sinkModel(_, _, _, _, _, ext, _, _, _, _) or + barrierModel(_, _, _, _, _, ext, _, _, _, _) or + barrierGuardModel(_, _, _, _, _, ext, _, _, _, _, _) } private class ExtPath = AccessPathSyntax::AccessPath::AccessPath; @@ -411,6 +444,53 @@ private module Cached { isSinkNode(n, kind, model) and n.asNode() = node ) } + + private newtype TKindModelPair = + TMkPair(string kind, string model) { isBarrierGuardNode(_, _, kind, model) } + + private GuardValue convertAcceptingValue(AcceptingValue av) { + av.isTrue() and result.asBooleanValue() = true + or + av.isFalse() and result.asBooleanValue() = false + or + av.isNoException() and result.getDualValue().isThrowsException() + or + av.isZero() and result.asIntValue() = 0 + or + av.isNotZero() and result.getDualValue().asIntValue() = 0 + or + av.isNull() and result.isNullValue() + or + av.isNotNull() and result.isNonNullValue() + } + + private predicate barrierGuardChecks(Guard g, Expr e, GuardValue gv, TKindModelPair kmp) { + exists( + SourceSinkInterpretationInput::InterpretNode n, AcceptingValue acceptingvalue, string kind, + string model + | + isBarrierGuardNode(n, acceptingvalue, kind, model) and + n.asNode().asExpr() = e and + kmp = TMkPair(kind, model) and + gv = convertAcceptingValue(acceptingvalue) + | + g.(Call).getAnArgument() = e or g.(QualifiableExpr).getQualifier() = e + ) + } + + /** + * Holds if `node` is specified as a barrier with the given kind in a MaD flow + * model. + */ + cached + predicate barrierNode(Node node, string kind, string model) { + exists(SourceSinkInterpretationInput::InterpretNode n | + isBarrierNode(n, kind, model) and n.asNode() = node + ) + or + ParameterizedBarrierGuard::getABarrierNode(TMkPair(kind, + model)) = node + } } import Cached @@ -427,6 +507,12 @@ predicate sourceNode(Node node, string kind) { sourceNode(node, kind, _) } */ predicate sinkNode(Node node, string kind) { sinkNode(node, kind, _) } +/** + * Holds if `node` is specified as a barrier with the given kind in a MaD flow + * model. + */ +predicate barrierNode(Node node, string kind) { barrierNode(node, kind, _) } + private predicate isOverridableCallable(OverridableCallable c) { not exists(Type t, Callable base | c.getOverridee+() = base and t = base.getDeclaringType() | t instanceof SystemObjectClass or diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll index 56278b9ef95..fd1bbebd3e4 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/FlowSummaryImpl.qll @@ -232,16 +232,27 @@ module SourceSinkInterpretationInput implements } predicate barrierElement( - Element n, string output, string kind, Public::Provenance provenance, string model + Element e, string output, string kind, Public::Provenance provenance, string model ) { - none() + exists( + string namespace, string type, boolean subtypes, string name, string signature, string ext + | + barrierModel(namespace, type, subtypes, name, signature, ext, output, kind, provenance, model) and + e = interpretElement(namespace, type, subtypes, name, signature, ext) + ) } predicate barrierGuardElement( - Element n, string input, Public::AcceptingValue acceptingvalue, string kind, + Element e, string input, Public::AcceptingValue acceptingvalue, string kind, Public::Provenance provenance, string model ) { - none() + exists( + string namespace, string type, boolean subtypes, string name, string signature, string ext + | + barrierGuardModel(namespace, type, subtypes, name, signature, ext, input, acceptingvalue, + kind, provenance, model) and + e = interpretElement(namespace, type, subtypes, name, signature, ext) + ) } class SourceOrSinkElement = Element; diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 277abd1d26e..7a592bebff0 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -987,6 +987,36 @@ private module Cached { predicate getABarrierNode = getABarrierNodeImpl/0; } + + bindingset[this] + private signature class ParamSig; + + private module WithParam { + signature predicate guardChecksSig(Guards::Guard g, Expr e, Guards::GuardValue gv, P param); + } + + cached // nothing is actually cached + module ParameterizedBarrierGuard::guardChecksSig/4 guardChecks> { + private predicate guardChecksAdjTypes( + Guards::Guards::Guard g, Expr e, Guards::GuardValue gv, P param + ) { + guardChecks(g, e, gv, param) + } + + private predicate guardChecksWithWrappers( + DataFlowIntegrationInput::Guard g, Definition def, Guards::GuardValue val, P param + ) { + Guards::Guards::ParameterizedValidationWrapper::guardChecksDef(g, + def, val, param) + } + + private Node getABarrierNodeImpl(P param) { + result = + DataFlowIntegrationImpl::BarrierGuardDefWithState::getABarrierNode(param) + } + + predicate getABarrierNode = getABarrierNodeImpl/1; + } } } diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/CleartextStorageQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/CleartextStorageQuery.qll index 3e4642411f0..bf79523f50f 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/CleartextStorageQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/CleartextStorageQuery.qll @@ -4,6 +4,7 @@ import csharp private import semmle.code.csharp.security.dataflow.flowsources.Remote +private import semmle.code.csharp.dataflow.internal.ExternalFlow private import semmle.code.csharp.frameworks.system.Web private import semmle.code.csharp.security.SensitiveActions private import semmle.code.csharp.security.dataflow.flowsinks.ExternalLocationSink @@ -62,3 +63,5 @@ class ProtectSanitizer extends Sanitizer { * An external location sink. */ class ExternalSink extends Sink instanceof ExternalLocationSink { } + +private class ExternalSanitizer extends Sanitizer instanceof ExternalLocationSanitizer { } diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/CodeInjectionQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/CodeInjectionQuery.qll index 20d5bbe10ca..f567e3cbc02 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/CodeInjectionQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/CodeInjectionQuery.qll @@ -95,7 +95,12 @@ class RoslynCSharpScriptSink extends Sink { } } -/** Code injection sinks defined through CSV models. */ +/** A code injection sink defined through Models as Data. */ private class ExternalCodeInjectionExprSink extends Sink { ExternalCodeInjectionExprSink() { sinkNode(this, "code-injection") } } + +/** A sanitizer for code injection defined through Models as Data. */ +private class ExternalCodeInjectionSanitizer extends Sanitizer { + ExternalCodeInjectionSanitizer() { barrierNode(this, "code-injection") } +} diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/CommandInjectionQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/CommandInjectionQuery.qll index 9528676af8e..b8c37d602b9 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/CommandInjectionQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/CommandInjectionQuery.qll @@ -61,11 +61,16 @@ deprecated class RemoteSource extends DataFlow::Node instanceof RemoteFlowSource /** A source supported by the current threat model. */ class ThreatModelSource extends Source instanceof ActiveThreatModelSource { } -/** Command Injection sinks defined through Models as Data. */ +/** A Command Injection sink defined through Models as Data. */ private class ExternalCommandInjectionExprSink extends Sink { ExternalCommandInjectionExprSink() { sinkNode(this, "command-injection") } } +/** A sanitizer for command injection defined through Models as Data. */ +private class ExternalCommandInjectionSanitizer extends Sanitizer { + ExternalCommandInjectionSanitizer() { barrierNode(this, "command-injection") } +} + /** * A sink in `System.Diagnostic.Process` or its related classes. */ diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/ExposureOfPrivateInformationQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/ExposureOfPrivateInformationQuery.qll index 85782fe4936..b5b95902d8a 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/ExposureOfPrivateInformationQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/ExposureOfPrivateInformationQuery.qll @@ -46,3 +46,5 @@ private class PrivateDataSource extends Source { } private class ExternalLocation extends Sink instanceof ExternalLocationSink { } + +private class ExternalSanitizer extends Sanitizer instanceof ExternalLocationSanitizer { } diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/LDAPInjectionQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/LDAPInjectionQuery.qll index c2e25f0e522..06bfac6c545 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/LDAPInjectionQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/LDAPInjectionQuery.qll @@ -64,11 +64,16 @@ deprecated class RemoteSource extends DataFlow::Node instanceof RemoteFlowSource /** A source supported by the current threat model. */ class ThreatModelSource extends Source instanceof ActiveThreatModelSource { } -/** LDAP sinks defined through Models as Data. */ +/** An LDAP sink defined through Models as Data. */ private class ExternalLdapExprSink extends Sink { ExternalLdapExprSink() { sinkNode(this, "ldap-injection") } } +/** A sanitizer for LDAP injection defined through Models as Data. */ +private class ExternalLdapInjectionSanitizer extends Sanitizer { + ExternalLdapInjectionSanitizer() { barrierNode(this, "ldap-injection") } +} + /** * An argument that sets the `Path` property of a `DirectoryEntry` object that is a sink for LDAP * injection. diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/LogForgingQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/LogForgingQuery.qll index e06e728514d..22023ebc409 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/LogForgingQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/LogForgingQuery.qll @@ -61,11 +61,16 @@ private class LogForgingLogMessageSink extends Sink, LogMessageSink { } */ private class LogForgingTraceMessageSink extends Sink, TraceMessageSink { } -/** Log Forging sinks defined through Models as Data. */ +/** A Log Forging sink defined through Models as Data. */ private class ExternalLoggingExprSink extends Sink { ExternalLoggingExprSink() { sinkNode(this, "log-injection") } } +/** A sanitizer for log forging defined through Models as Data. */ +private class ExternalLogForgingSanitizer extends Sanitizer { + ExternalLogForgingSanitizer() { barrierNode(this, "log-injection") } +} + /** * A call to String replace or remove that is considered to sanitize replaced string. */ diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/SqlInjectionQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/SqlInjectionQuery.qll index 510b0381143..addc1932177 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/SqlInjectionQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/SqlInjectionQuery.qll @@ -74,11 +74,16 @@ class SqlInjectionExprSink extends Sink { SqlInjectionExprSink() { exists(SqlExpr s | this.getExpr() = s.getSql()) } } -/** SQL sinks defined through CSV models. */ +/** An SQL sink defined through CSV models. */ private class ExternalSqlInjectionExprSink extends Sink { ExternalSqlInjectionExprSink() { sinkNode(this, "sql-injection") } } +/** A sanitizer for SQL injection defined through Models as Data. */ +private class ExternalSqlInjectionSanitizer extends Sanitizer { + ExternalSqlInjectionSanitizer() { barrierNode(this, "sql-injection") } +} + private class SimpleTypeSanitizer extends Sanitizer, SimpleTypeSanitizedExpr { } private class GuidSanitizer extends Sanitizer, GuidSanitizedExpr { } diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/UrlRedirectQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/UrlRedirectQuery.qll index 15ba99aedf0..bad6c990fa7 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/UrlRedirectQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/UrlRedirectQuery.qll @@ -56,11 +56,16 @@ deprecated class RemoteSource extends DataFlow::Node instanceof RemoteFlowSource /** A source supported by the current threat model. */ class ThreatModelSource extends Source instanceof ActiveThreatModelSource { } -/** URL Redirection sinks defined through Models as Data. */ +/** A URL Redirection sink defined through Models as Data. */ private class ExternalUrlRedirectExprSink extends Sink { ExternalUrlRedirectExprSink() { sinkNode(this, "url-redirection") } } +/** A sanitizer for URL redirection defined through Models as Data. */ +private class ExternalUrlRedirectSanitizer extends Sanitizer { + ExternalUrlRedirectSanitizer() { barrierNode(this, "url-redirection") } +} + /** * A URL argument to a call to `HttpResponse.Redirect()` or `Controller.Redirect()`, that is a * sink for URL redirects. @@ -160,27 +165,6 @@ class ContainsUrlSanitizer extends Sanitizer { } } -/** - * A check that the URL is relative, and therefore safe for URL redirects. - */ -private predicate isRelativeUrlSanitizer(Guard guard, Expr e, GuardValue v) { - guard = - any(PropertyAccess access | - access.getProperty().hasFullyQualifiedName("System", "Uri", "IsAbsoluteUri") and - e = access.getQualifier() and - v.asBooleanValue() = false - ) -} - -/** - * A check that the URL is relative, and therefore safe for URL redirects. - */ -class RelativeUrlSanitizer extends Sanitizer { - RelativeUrlSanitizer() { - this = DataFlow::BarrierGuard::getABarrierNode() - } -} - /** * A comparison on the `Host` property of a url, that is a sanitizer for URL redirects. * E.g. `url.Host == "example.org"` @@ -205,16 +189,6 @@ class HostComparisonSanitizer extends Sanitizer { } } -/** - * A call to the getter of the RawUrl property, whose value is considered to be safe for URL - * redirects. - */ -class RawUrlSanitizer extends Sanitizer { - RawUrlSanitizer() { - this.getExpr() = any(SystemWebHttpRequestClass r).getRawUrlProperty().getGetter().getACall() - } -} - /** * A string concatenation expression, where the left hand side contains the character "?". * diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/XSSQuery.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/XSSQuery.qll index 2d687b51d67..b084905ddad 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/XSSQuery.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/XSSQuery.qll @@ -7,6 +7,7 @@ import csharp private import XSSSinks private import semmle.code.csharp.security.Sanitizers private import semmle.code.csharp.security.dataflow.flowsources.FlowSources +private import semmle.code.csharp.dataflow.internal.ExternalFlow /** * Holds if there is tainted flow from `source` to `sink` that may lead to a @@ -169,6 +170,11 @@ private class SimpleTypeSanitizer extends Sanitizer, SimpleTypeSanitizedExpr { } private class GuidSanitizer extends Sanitizer, GuidSanitizedExpr { } +/** A sanitizer for XSS defined through Models as Data. */ +private class ExternalXssSanitizer extends Sanitizer { + ExternalXssSanitizer() { barrierNode(this, ["html-injection", "js-injection"]) } +} + /** A call to an HTML encoder. */ private class HtmlEncodeSanitizer extends Sanitizer { HtmlEncodeSanitizer() { this.getExpr() instanceof HtmlSanitizedExpr } diff --git a/csharp/ql/lib/semmle/code/csharp/security/dataflow/flowsinks/ExternalLocationSink.qll b/csharp/ql/lib/semmle/code/csharp/security/dataflow/flowsinks/ExternalLocationSink.qll index 3bcfdde669a..4ee02416961 100644 --- a/csharp/ql/lib/semmle/code/csharp/security/dataflow/flowsinks/ExternalLocationSink.qll +++ b/csharp/ql/lib/semmle/code/csharp/security/dataflow/flowsinks/ExternalLocationSink.qll @@ -126,3 +126,11 @@ class LocalFileOutputSink extends ExternalLocationSink { ) } } + +/** + * A sanitizer for writing data to locations that are external to the + * application, defined through Models as Data. + */ +class ExternalLocationSanitizer extends DataFlow::Node { + ExternalLocationSanitizer() { barrierNode(this, "file-content-store") } +} diff --git a/csharp/ql/src/CHANGELOG.md b/csharp/ql/src/CHANGELOG.md index e91f882b9ed..3ac11a9af34 100644 --- a/csharp/ql/src/CHANGELOG.md +++ b/csharp/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.5.4 + +No user-facing changes. + ## 1.5.3 No user-facing changes. diff --git a/csharp/ql/src/change-notes/released/1.5.4.md b/csharp/ql/src/change-notes/released/1.5.4.md new file mode 100644 index 00000000000..5ff5ac8ebb7 --- /dev/null +++ b/csharp/ql/src/change-notes/released/1.5.4.md @@ -0,0 +1,3 @@ +## 1.5.4 + +No user-facing changes. diff --git a/csharp/ql/src/codeql-pack.release.yml b/csharp/ql/src/codeql-pack.release.yml index 232224b0e26..c216828ee1c 100644 --- a/csharp/ql/src/codeql-pack.release.yml +++ b/csharp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.5.3 +lastReleaseVersion: 1.5.4 diff --git a/csharp/ql/src/qlpack.yml b/csharp/ql/src/qlpack.yml index efe787aaae5..b54e4d5c367 100644 --- a/csharp/ql/src/qlpack.yml +++ b/csharp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-queries -version: 1.5.4-dev +version: 1.5.5-dev groups: - csharp - queries diff --git a/docs/codeql/_static/custom.css_t b/docs/codeql/_static/custom.css_t index b05c5120398..6a7fadc8d41 100644 --- a/docs/codeql/_static/custom.css_t +++ b/docs/codeql/_static/custom.css_t @@ -14,6 +14,18 @@ code { font-size: 0.9em !important; /* makes code snippets in headings the correct size */ } +/* -- HEADER ------------------------------------------------------------------------------- */ + +/* Override alabaster.css purple link color for header links to match the rest of the site */ +.Header .Header-link { + color: #fff; +} + +.Header .Header-link:hover, +.Header .Header-link:focus { + color: rgba(255, 255, 255, 0.7); +} + /* -- MAIN BODY ---------------------------------------------------------------------------- */ main { diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.5.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.5.rst index 9022a09444f..d317551d344 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.5.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.5.rst @@ -33,7 +33,7 @@ Minor Analysis Improvements C# "" -* the :code:`cs/web/missing-x-frame-options` query now correctly handles configuration nested in root :code:`` elements. +* The :code:`cs/web/missing-x-frame-options` query now correctly handles configuration nested in root :code:`` elements. Java/Kotlin """"""""""" @@ -80,7 +80,7 @@ Major Analysis Improvements C# "" -* The representation of the C# control-flow graph has been significantly changed. This has minor effects on a wide range of queries including both minor improvements and minor regressions, for example, improved precision has been observed for :code:`cs/inefficient-containskey` and :code:`cs/stringbuilder-creation-in-loop`. Two queries stand out as being significantly affected with great improvements: :code:`cs/dereferenced-value-may-be-null` has been completely rewritten which removes a very significant number of false positives. Furthermore, :code:`cs/constant-condition` has been updated to report many new results - these new results are primarily expected to be true positives, but a few new false positives are expected as well. As part of these changes, :code:`cs/dereferenced-value-may-be-null` has been changed from a :code:`path-problem` query to a :code:`problem` query, so paths are no longer reported for this query. +* The representation of the C# control-flow graph has been significantly changed. This has minor effects on a wide range of queries including both minor improvements and minor regressions. For example, improved precision has been observed for :code:`cs/inefficient-containskey` and :code:`cs/stringbuilder-creation-in-loop`. Two queries stand out as being significantly affected with great improvements: :code:`cs/dereferenced-value-may-be-null` has been completely rewritten which removes a very significant number of false positives. Furthermore, :code:`cs/constant-condition` has been updated to report many new results - these new results are primarily expected to be true positives, but a few new false positives are expected as well. As part of these changes, :code:`cs/dereferenced-value-may-be-null` has been changed from a :code:`path-problem` query to a :code:`problem` query, so paths are no longer reported for this query. Swift """"" diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.6.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.6.rst index 67fe1ed487f..dc0239a1f6c 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.6.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.6.rst @@ -9,7 +9,7 @@ CodeQL 2.23.6 (2025-11-24) :local: :backlinks: none -This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog `__, `relevant GitHub Changelog updates `__, `changes in the CodeQL extension for Visual Studio Code `__, and the `CodeQL Action changelog `__. +This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog `__, `relevant GitHub Changelog updates `__, `changes in the CodeQL extension for Visual Studio Code `__, and the `CodeQL Action changelog `__. Security Coverage ----------------- diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.7.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.7.rst new file mode 100644 index 00000000000..01312548aaf --- /dev/null +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.7.rst @@ -0,0 +1,116 @@ +.. _codeql-cli-2.23.7: + +========================== +CodeQL 2.23.7 (2025-12-05) +========================== + +.. contents:: Contents + :depth: 2 + :local: + :backlinks: none + +This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog `__, `relevant GitHub Changelog updates `__, `changes in the CodeQL extension for Visual Studio Code `__, and the `CodeQL Action changelog `__. + +Security Coverage +----------------- + +CodeQL 2.23.7 runs a total of 491 security queries when configured with the Default suite (covering 166 CWE). The Extended suite enables an additional 135 queries (covering 35 more CWE). 6 security queries have been added with this release. + +CodeQL CLI +---------- + +Deprecations +~~~~~~~~~~~~ + +* The :code:`--save-cache` flag to :code:`codeql database run-queries` and other commands that execute queries has been deprecated. This flag previously instructed the evaluator to aggressively write intermediate results to the disk cache, but now has no effect. + +Query Packs +----------- + +Minor Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Java/Kotlin +""""""""""" + +* Operations that extract only a fixed-length prefix or suffix of a string (for example, :code:`substring` in Java or :code:`take` in Kotlin), when limited to a length of at most 7 characters, are now treated as sanitizers for the :code:`java/sensitive-log` query. + +JavaScript/TypeScript +""""""""""""""""""""" + +* Fixed a bug in the Next.js model that would cause the analysis to miss server-side taint sources in the :code:`app/pages` folder. + +Rust +"""" + +* The :code:`rust/access-invalid-pointer` query has been improved with new flow sources and barriers. + +New Queries +~~~~~~~~~~~ + +Golang +"""""" + +* The :code:`go/cookie-http-only-not-set` query has been promoted from the experimental query pack. This query was originally contributed to the experimental query pack by @edvraa. +* A new query :code:`go/cookie-secure-not-set` has been added to detect cookies without the :code:`Secure` flag set. +* Added a new query, :code:`go/weak-crypto-algorithm`, to detect the use of a broken or weak cryptographic algorithm. A very simple version of this query was originally contributed as an `experimental query by @dilanbhalla `__. +* Added a new query, :code:`go/weak-sensitive-data-hashing`, to detect the use of a broken or weak cryptographic hash algorithm on sensitive data. + +Rust +"""" + +* Added a new query :code:`rust/xss`, to detect cross-site scripting security vulnerabilities. +* Added a new query :code:`rust/disabled-certificate-check`, to detect disabled TLS certificate checks. +* Added three example queries (:code:`rust/examples/empty-if`, :code:`rust/examples/simple-sql-injection` and :code:`rust/examples/simple-constant-password`) to help developers learn to write CodeQL queries for Rust. + +Language Libraries +------------------ + +Bug Fixes +~~~~~~~~~ + +Python +"""""" + +* Fixed a bug in the Python extractor's import handling where failing to find an import in :code:`find_module` would cause a :code:`KeyError` to be raised. (Contributed by @akoeplinger.) + +Breaking Changes +~~~~~~~~~~~~~~~~ + +Rust +"""" + +* The type :code:`DataFlow::Node` is now based directly on the AST instead of the CFG, which means that predicates like :code:`asExpr()` return AST nodes instead of CFG nodes. + +Minor Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +C/C++ +""""" + +* The class :code:`DataFlow::FieldContent` now covers both :code:`union` and :code:`struct`\ /\ :code:`class` types. A new predicate :code:`FieldContent.getAField` has been added to access the union members associated with the :code:`FieldContent`. The old :code:`FieldContent` has been renamed to :code:`NonUnionFieldContent`. + +C# +"" + +* Improved stability when downloading .NET versions by setting appropriate environment variables for :code:`dotnet` commands. The correct architecture-specific version of .NET is now downloaded on ARM runners. +* Compilation errors are now included in the debug log when using build-mode none. +* Added a new extractor option to specify a custom directory for dependency downloads in buildless mode. Use :code:`-O buildless_dependency_dir=` to configure the target directory. + +JavaScript/TypeScript +""""""""""""""""""""" + +* JavaScript :code:`DataFlow::globalVarRef` now recognizes :code:`document.defaultView` as an alias of :code:`window`, allowing flows such as :code:`document.defaultView.history.pushState(...)` to be modeled and found by queries relying on :code:`globalVarRef("history")`. + +Rust +"""" + +* Added more detailed models for :code:`std::fs` and :code:`std::path`. + +Deprecated APIs +~~~~~~~~~~~~~~~ + +Java/Kotlin +""""""""""" + +* The SSA interface has been updated and all classes and several predicates have been renamed. See the qldoc for more specific migration information. diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.8.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.8.rst new file mode 100644 index 00000000000..be32da0df0e --- /dev/null +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.23.8.rst @@ -0,0 +1,33 @@ +.. _codeql-cli-2.23.8: + +========================== +CodeQL 2.23.8 (2025-12-10) +========================== + +.. contents:: Contents + :depth: 2 + :local: + :backlinks: none + +This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog `__, `relevant GitHub Changelog updates `__, `changes in the CodeQL extension for Visual Studio Code `__, and the `CodeQL Action changelog `__. + +Security Coverage +----------------- + +CodeQL 2.23.8 runs a total of 491 security queries when configured with the Default suite (covering 166 CWE). The Extended suite enables an additional 135 queries (covering 35 more CWE). + +CodeQL CLI +---------- + +There are no user-facing CLI changes in this release. + +Query Packs +----------- + +Minor Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Java/Kotlin +""""""""""" + +* Java analysis no longer forces :code:`--source` and :code:`--target` compiler flags for Maven builds. This allows Maven to use the project's own compiler configuration, improving build compatibility. diff --git a/docs/codeql/codeql-overview/codeql-changelog/index.rst b/docs/codeql/codeql-overview/codeql-changelog/index.rst index 195a9782088..8eb59792af4 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/index.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/index.rst @@ -11,6 +11,8 @@ A list of queries for each suite and language `is available here ; @@ -142,6 +144,8 @@ module ModelValidation { exists(string pred, AccessPath input, AccessPathToken part | sinkModel(_, _, _, _, _, _, input, _, _, _) and pred = "sink" or + barrierGuardModel(_, _, _, _, _, _, input, _, _, _, _) and pred = "barrier guard" + or summaryModel(_, _, _, _, _, _, input, _, _, _, _) and pred = "summary" | ( @@ -164,6 +168,8 @@ module ModelValidation { exists(string pred, AccessPath output, AccessPathToken part | sourceModel(_, _, _, _, _, _, output, _, _, _) and pred = "source" or + barrierModel(_, _, _, _, _, _, output, _, _, _) and pred = "barrier" + or summaryModel(_, _, _, _, _, _, _, output, _, _, _) and pred = "summary" | ( @@ -181,7 +187,13 @@ module ModelValidation { private module KindValConfig implements SharedModelVal::KindValidationConfigSig { predicate summaryKind(string kind) { summaryModel(_, _, _, _, _, _, _, _, kind, _, _) } - predicate sinkKind(string kind) { sinkModel(_, _, _, _, _, _, _, kind, _, _) } + predicate sinkKind(string kind) { + sinkModel(_, _, _, _, _, _, _, kind, _, _) + or + barrierModel(_, _, _, _, _, _, _, kind, _, _) + or + barrierGuardModel(_, _, _, _, _, _, _, _, kind, _, _) + } predicate sourceKind(string kind) { sourceModel(_, _, _, _, _, _, _, kind, _, _) } @@ -199,6 +211,11 @@ module ModelValidation { or sinkModel(package, type, _, name, signature, ext, _, _, provenance, _) and pred = "sink" or + barrierModel(package, type, _, name, signature, ext, _, _, provenance, _) and pred = "barrier" + or + barrierGuardModel(package, type, _, name, signature, ext, _, _, _, provenance, _) and + pred = "barrier guard" + or summaryModel(package, type, _, name, signature, ext, _, _, _, provenance, _) and pred = "summary" or @@ -224,6 +241,14 @@ module ModelValidation { invalidProvenance(provenance) and result = "Unrecognized provenance description \"" + provenance + "\" in " + pred + " model." ) + or + exists(string acceptingvalue | + barrierGuardModel(_, _, _, _, _, _, _, acceptingvalue, _, _, _) and + invalidAcceptingValue(acceptingvalue) and + result = + "Unrecognized accepting value description \"" + acceptingvalue + + "\" in barrier guard model." + ) } private string getInvalidPackageGroup() { @@ -232,6 +257,11 @@ module ModelValidation { or FlowExtensions::sinkModel(package, _, _, _, _, _, _, _, _, _) and pred = "sink" or + FlowExtensions::barrierModel(package, _, _, _, _, _, _, _, _, _) and pred = "barrier" + or + FlowExtensions::barrierGuardModel(package, _, _, _, _, _, _, _, _, _, _) and + pred = "barrier guard" + or FlowExtensions::summaryModel(package, _, _, _, _, _, _, _, _, _, _) and pred = "summary" or @@ -262,6 +292,10 @@ private predicate elementSpec( or sinkModel(package, type, subtypes, name, signature, ext, _, _, _, _) or + barrierModel(package, type, subtypes, name, signature, ext, _, _, _, _) + or + barrierGuardModel(package, type, subtypes, name, signature, ext, _, _, _, _, _) + or summaryModel(package, type, subtypes, name, signature, ext, _, _, _, _, _) or neutralModel(package, type, name, signature, _, _) and ext = "" and subtypes = false @@ -397,6 +431,54 @@ private module Cached { isSinkNode(n, kind, model) and n.asNode() = node ) } + + private newtype TKindModelPair = + TMkPair(string kind, string model) { isBarrierGuardNode(_, _, kind, model) } + + private boolean convertAcceptingValue(Public::AcceptingValue av) { + av.isTrue() and result = true + or + av.isFalse() and result = false + // Remaining cases are not supported yet, they depend on the shared Guards library. + // or + // av.isNoException() and result.getDualValue().isThrowsException() + // or + // av.isZero() and result.asIntValue() = 0 + // or + // av.isNotZero() and result.getDualValue().asIntValue() = 0 + // or + // av.isNull() and result.isNullValue() + // or + // av.isNotNull() and result.isNonNullValue() + } + + private predicate barrierGuardChecks(DataFlow::Node g, Expr e, boolean gv, TKindModelPair kmp) { + exists( + SourceSinkInterpretationInput::InterpretNode n, Public::AcceptingValue acceptingvalue, + string kind, string model + | + isBarrierGuardNode(n, acceptingvalue, kind, model) and + n.asNode().asExpr() = e and + kmp = TMkPair(kind, model) and + gv = convertAcceptingValue(acceptingvalue) + | + g.asExpr().(CallExpr).getAnArgument() = e // TODO: qualifier? + ) + } + + /** + * Holds if `node` is specified as a barrier with the given kind in a MaD flow + * model. + */ + cached + predicate barrierNode(DataFlow::Node node, string kind, string model) { + exists(SourceSinkInterpretationInput::InterpretNode n | + isBarrierNode(n, kind, model) and n.asNode() = node + ) + or + DataFlow::ParameterizedBarrierGuard::getABarrierNode(TMkPair(kind, + model)) = node + } } import Cached @@ -413,6 +495,12 @@ predicate sourceNode(DataFlow::Node node, string kind) { sourceNode(node, kind, */ predicate sinkNode(DataFlow::Node node, string kind) { sinkNode(node, kind, _) } +/** + * Holds if `node` is specified as a barrier with the given kind in a MaD flow + * model. + */ +predicate barrierNode(DataFlow::Node node, string kind) { barrierNode(node, kind, _) } + // adapter class for converting Mad summaries to `SummarizedCallable`s private class SummarizedCallableAdapter extends Public::SummarizedCallable { SummarizedCallableAdapter() { summaryElement(this, _, _, _, _, _) } diff --git a/go/ql/lib/semmle/go/dataflow/internal/DataFlowUtil.qll b/go/ql/lib/semmle/go/dataflow/internal/DataFlowUtil.qll index 14ff455646c..404eca4b4a2 100644 --- a/go/ql/lib/semmle/go/dataflow/internal/DataFlowUtil.qll +++ b/go/ql/lib/semmle/go/dataflow/internal/DataFlowUtil.qll @@ -339,6 +339,20 @@ class ContentSet instanceof TContentSet { */ signature predicate guardChecksSig(Node g, Expr e, boolean branch); +bindingset[this] +private signature class ParamSig; + +private module WithParam { + /** + * Holds if the guard `g` validates the expression `e` upon evaluating to `branch`. + * + * The expression `e` is expected to be a syntactic part of the guard `g`. + * For example, the guard `g` might be a call `isSafe(x)` and the expression `e` + * the argument `x`. + */ + signature predicate guardChecksSig(Node g, Expr e, boolean branch, P param); +} + /** * Provides a set of barrier nodes for a guard that validates an expression. * @@ -346,12 +360,36 @@ signature predicate guardChecksSig(Node g, Expr e, boolean branch); * in data flow and taint tracking. */ module BarrierGuard { + private predicate guardChecks(Node g, Expr e, boolean branch, Unit param) { + guardChecks(g, e, branch) and exists(param) + } + + private module B = ParameterizedBarrierGuard; + /** Gets a node that is safely guarded by the given guard check. */ - Node getABarrierNode() { + Node getABarrierNode() { result = B::getABarrierNode(_) } + + /** + * Gets a node that is safely guarded by the given guard check. + */ + Node getABarrierNodeForGuard(Node guardCheck) { + result = B::getABarrierNodeForGuard(guardCheck, _) + } +} + +/** + * Provides a set of barrier nodes for a guard that validates an expression. + * + * This is expected to be used in `isBarrier`/`isSanitizer` definitions + * in data flow and taint tracking. + */ +module ParameterizedBarrierGuard::guardChecksSig/4 guardChecks> { + /** Gets a node that is safely guarded by the given guard check. */ + Node getABarrierNode(P param) { exists(ControlFlow::ConditionGuardNode guard, SsaWithFields var | result = pragma[only_bind_out](var).getAUse() | - guards(_, guard, _, var) and + guards(_, guard, _, var, param) and pragma[only_bind_out](guard).dominates(result.getBasicBlock()) ) } @@ -359,9 +397,9 @@ module BarrierGuard { /** * Gets a node that is safely guarded by the given guard check. */ - Node getABarrierNodeForGuard(Node guardCheck) { + Node getABarrierNodeForGuard(Node guardCheck, P param) { exists(ControlFlow::ConditionGuardNode guard, SsaWithFields var | result = var.getAUse() | - guards(guardCheck, guard, _, var) and + guards(guardCheck, guard, _, var, param) and guard.dominates(result.getBasicBlock()) ) } @@ -373,22 +411,24 @@ module BarrierGuard { * This predicate exists to enforce a good join order in `getAGuardedNode`. */ pragma[noinline] - private predicate guards(Node g, ControlFlow::ConditionGuardNode guard, Node nd, SsaWithFields ap) { - guards(g, guard, nd) and nd = ap.getAUse() + private predicate guards( + Node g, ControlFlow::ConditionGuardNode guard, Node nd, SsaWithFields ap, P param + ) { + guards(g, guard, nd, param) and nd = ap.getAUse() } /** * Holds if `guard` marks a point in the control-flow graph where `g` * is known to validate `nd`. */ - private predicate guards(Node g, ControlFlow::ConditionGuardNode guard, Node nd) { + private predicate guards(Node g, ControlFlow::ConditionGuardNode guard, Node nd, P param) { exists(boolean branch | - guardChecks(g, nd.asExpr(), branch) and + guardChecks(g, nd.asExpr(), branch, param) and guard.ensures(g, branch) ) or exists(DataFlow::Property p, Node resNode, Node check, boolean outcome | - guardingCall(g, _, _, _, p, _, nd, resNode) and + guardingCall(g, _, _, _, p, _, nd, resNode, param) and p.checkOn(check, outcome, resNode) and guard.ensures(pragma[only_bind_into](check), outcome) ) @@ -405,9 +445,9 @@ module BarrierGuard { pragma[noinline] private predicate guardingCall( Node g, Function f, FunctionInput inp, FunctionOutput outp, DataFlow::Property p, CallNode c, - Node nd, Node resNode + Node nd, Node resNode, P param ) { - guardingFunction(g, f, inp, outp, p) and + guardingFunction(g, f, inp, outp, p, param) and c = f.getACall() and nd = getInputNode(inp, c) and localFlow(getOutputNode(outp, c), resNode) @@ -438,7 +478,7 @@ module BarrierGuard { * `false`, `nil` or a non-`nil` value.) */ private predicate guardingFunction( - Node g, Function f, FunctionInput inp, FunctionOutput outp, DataFlow::Property p + Node g, Function f, FunctionInput inp, FunctionOutput outp, DataFlow::Property p, P param ) { exists(FuncDecl fd, Node arg, Node ret | fd.getFunction() = f and @@ -446,7 +486,7 @@ module BarrierGuard { ( // Case: a function like "if someBarrierGuard(arg) { return true } else { return false }" exists(ControlFlow::ConditionGuardNode guard | - guards(g, pragma[only_bind_out](guard), arg) and + guards(g, pragma[only_bind_out](guard), arg, param) and guard.dominates(pragma[only_bind_out](ret).getBasicBlock()) | onlyPossibleReturnSatisfyingProperty(fd, outp, ret, p) @@ -456,7 +496,7 @@ module BarrierGuard { // or "return !someBarrierGuard(arg) && otherCond(...)" exists(boolean outcome | ret = getUniqueOutputNode(fd, outp) and - guardChecks(g, arg.asExpr(), outcome) and + guardChecks(g, arg.asExpr(), outcome, param) and // This predicate's contract is (p holds of ret ==> arg is checked), // (and we have (this has outcome ==> arg is checked)) // but p.checkOn(ret, outcome, this) gives us (ret has outcome ==> p holds of this), @@ -471,7 +511,7 @@ module BarrierGuard { DataFlow::Property outpProp | ret = getUniqueOutputNode(fd, outp) and - guardingFunction(g, f2, inp2, outp2, outpProp) and + guardingFunction(g, f2, inp2, outp2, outpProp, param) and c = f2.getACall() and arg = inp2.getNode(c) and ( diff --git a/go/ql/lib/semmle/go/dataflow/internal/FlowSummaryImpl.qll b/go/ql/lib/semmle/go/dataflow/internal/FlowSummaryImpl.qll index 6c49cb75bd3..633864fbf8c 100644 --- a/go/ql/lib/semmle/go/dataflow/internal/FlowSummaryImpl.qll +++ b/go/ql/lib/semmle/go/dataflow/internal/FlowSummaryImpl.qll @@ -160,16 +160,27 @@ module SourceSinkInterpretationInput implements } predicate barrierElement( - Element n, string output, string kind, Public::Provenance provenance, string model + Element e, string output, string kind, Public::Provenance provenance, string model ) { - none() + exists( + string package, string type, boolean subtypes, string name, string signature, string ext + | + barrierModel(package, type, subtypes, name, signature, ext, output, kind, provenance, model) and + e = interpretElement(package, type, subtypes, name, signature, ext) + ) } predicate barrierGuardElement( - Element n, string input, Public::AcceptingValue acceptingvalue, string kind, + Element e, string input, Public::AcceptingValue acceptingvalue, string kind, Public::Provenance provenance, string model ) { - none() + exists( + string package, string type, boolean subtypes, string name, string signature, string ext + | + barrierGuardModel(package, type, subtypes, name, signature, ext, input, acceptingvalue, kind, + provenance, model) and + e = interpretElement(package, type, subtypes, name, signature, ext) + ) } // Note that due to embedding, which is currently implemented via some diff --git a/go/ql/lib/semmle/go/frameworks/Beego.qll b/go/ql/lib/semmle/go/frameworks/Beego.qll index 952958cebf0..383be8ec42a 100644 --- a/go/ql/lib/semmle/go/frameworks/Beego.qll +++ b/go/ql/lib/semmle/go/frameworks/Beego.qll @@ -165,14 +165,6 @@ module Beego { override string getAContentType() { none() } } - private class HtmlQuoteSanitizer extends SharedXss::Sanitizer { - HtmlQuoteSanitizer() { - exists(DataFlow::CallNode c | c.getTarget().hasQualifiedName(packagePath(), "Htmlquote") | - this = c.getArgument(0) - ) - } - } - private class UtilsTaintPropagators extends TaintTracking::FunctionModel { UtilsTaintPropagators() { this.hasQualifiedName(utilsPackagePath(), "GetDisplayString") } diff --git a/go/ql/lib/semmle/go/frameworks/NoSQL.qll b/go/ql/lib/semmle/go/frameworks/NoSQL.qll index 5fa155395fc..2772182f4fc 100644 --- a/go/ql/lib/semmle/go/frameworks/NoSQL.qll +++ b/go/ql/lib/semmle/go/frameworks/NoSQL.qll @@ -24,8 +24,8 @@ module NoSql { */ abstract class Range extends DataFlow::Node { } - private class DefaultQueryString extends Range { - DefaultQueryString() { + private class ExternalQueryString extends Range { + ExternalQueryString() { exists(DataFlow::ArgumentNode arg | sinkNode(arg, "nosql-injection") | this = arg.getACorrespondingSyntacticArgument() ) diff --git a/go/ql/lib/semmle/go/frameworks/SQL.qll b/go/ql/lib/semmle/go/frameworks/SQL.qll index a0e80fde1c9..c5cf4989d1a 100644 --- a/go/ql/lib/semmle/go/frameworks/SQL.qll +++ b/go/ql/lib/semmle/go/frameworks/SQL.qll @@ -67,8 +67,8 @@ module SQL { */ abstract class Range extends DataFlow::Node { } - private class DefaultQueryString extends Range { - DefaultQueryString() { + private class ExternalQueryString extends Range { + ExternalQueryString() { exists(DataFlow::ArgumentNode arg | sinkNode(arg, "sql-injection") | not arg instanceof DataFlow::ImplicitVarargsSlice and this = arg diff --git a/go/ql/lib/semmle/go/frameworks/SystemCommandExecutors.qll b/go/ql/lib/semmle/go/frameworks/SystemCommandExecutors.qll index 1bd7054d5c3..8abf2bbd368 100644 --- a/go/ql/lib/semmle/go/frameworks/SystemCommandExecutors.qll +++ b/go/ql/lib/semmle/go/frameworks/SystemCommandExecutors.qll @@ -5,12 +5,12 @@ import go -private class DefaultSystemCommandExecution extends SystemCommandExecution::Range, +private class ExternalSystemCommandExecution extends SystemCommandExecution::Range, DataFlow::CallNode { DataFlow::ArgumentNode commandName; - DefaultSystemCommandExecution() { + ExternalSystemCommandExecution() { sinkNode(commandName, "command-injection") and this = commandName.getCall() } diff --git a/go/ql/lib/semmle/go/frameworks/XPath.qll b/go/ql/lib/semmle/go/frameworks/XPath.qll index 3123d129c09..0d8dc5d8176 100644 --- a/go/ql/lib/semmle/go/frameworks/XPath.qll +++ b/go/ql/lib/semmle/go/frameworks/XPath.qll @@ -25,10 +25,17 @@ module XPath { */ abstract class Range extends DataFlow::Node { } - private class DefaultXPathExpressionString extends Range { - DefaultXPathExpressionString() { sinkNode(this, "xpath-injection") } + private class ExternalXPathExpressionString extends Range { + ExternalXPathExpressionString() { sinkNode(this, "xpath-injection") } } } + + /** A sanitizer for XPath injection. */ + abstract class Sanitizer extends DataFlow::Node { } + + private class ExternalSanitizer extends Sanitizer { + ExternalSanitizer() { barrierNode(this, "xpath-injection") } + } } /** diff --git a/go/ql/lib/semmle/go/frameworks/stdlib/Regexp.qll b/go/ql/lib/semmle/go/frameworks/stdlib/Regexp.qll index 525eb73d5b9..b8ab8cb9cd3 100644 --- a/go/ql/lib/semmle/go/frameworks/stdlib/Regexp.qll +++ b/go/ql/lib/semmle/go/frameworks/stdlib/Regexp.qll @@ -39,10 +39,10 @@ module Regexp { ) } - private class DefaultRegexpPattern extends RegexpPattern::Range, DataFlow::ArgumentNode { + private class ExternalRegexpPattern extends RegexpPattern::Range, DataFlow::ArgumentNode { int strArg; - DefaultRegexpPattern() { + ExternalRegexpPattern() { exists(string kind | regexSinkKindInfo(kind, strArg) and sinkNode(this, kind) @@ -61,12 +61,12 @@ module Regexp { } } - private class DefaultRegexpMatchFunction extends RegexpMatchFunction::Range, Function { + private class ExternalRegexpMatchFunction extends RegexpMatchFunction::Range, Function { int patArg; int strArg; - DefaultRegexpMatchFunction() { - exists(DefaultRegexpPattern drp, string kind | + ExternalRegexpMatchFunction() { + exists(ExternalRegexpPattern drp, string kind | drp.getCall() = this.getACall() and sinkNode(drp, kind) | diff --git a/go/ql/lib/semmle/go/security/CommandInjectionCustomizations.qll b/go/ql/lib/semmle/go/security/CommandInjectionCustomizations.qll index c2874d7cdac..bc42a5e59f0 100644 --- a/go/ql/lib/semmle/go/security/CommandInjectionCustomizations.qll +++ b/go/ql/lib/semmle/go/security/CommandInjectionCustomizations.qll @@ -47,6 +47,10 @@ module CommandInjection { override predicate doubleDashIsSanitizing() { exec.doubleDashIsSanitizing() } } + private class ExternalSanitizer extends Sanitizer { + ExternalSanitizer() { barrierNode(this, "command-injection") } + } + /** * A call to a regexp match function, considered as a barrier guard for command injection. */ diff --git a/go/ql/lib/semmle/go/security/HardcodedCredentials.qll b/go/ql/lib/semmle/go/security/HardcodedCredentials.qll index 877a2b4570e..1802d48cdd7 100644 --- a/go/ql/lib/semmle/go/security/HardcodedCredentials.qll +++ b/go/ql/lib/semmle/go/security/HardcodedCredentials.qll @@ -43,8 +43,15 @@ module HardcodedCredentials { } /** A use of a credential. */ - private class CredentialsSink extends Sink { - CredentialsSink() { exists(string s | s.matches("credentials-%") | sinkNode(this, s)) } + private class ExternalCredentialsSink extends Sink { + ExternalCredentialsSink() { exists(string s | s.matches("credentials-%") | sinkNode(this, s)) } + } + + /** A use of a credential. */ + private class ExternalCredentialsSanitizer extends Sanitizer { + ExternalCredentialsSanitizer() { + exists(string s | s.matches("credentials-%") | barrierNode(this, s)) + } } /** diff --git a/go/ql/lib/semmle/go/security/MissingJwtSignatureCheck.qll b/go/ql/lib/semmle/go/security/MissingJwtSignatureCheck.qll index 1f8185d4397..ae101fe8a83 100644 --- a/go/ql/lib/semmle/go/security/MissingJwtSignatureCheck.qll +++ b/go/ql/lib/semmle/go/security/MissingJwtSignatureCheck.qll @@ -20,6 +20,8 @@ module MissingJwtSignatureCheck { predicate isSink(DataFlow::Node sink) { sink instanceof Sink } + predicate isBarrier(DataFlow::Node node) { node instanceof Sanitizer } + predicate isAdditionalFlowStep(DataFlow::Node nodeFrom, DataFlow::Node nodeTo) { any(AdditionalFlowStep s).step(nodeFrom, nodeTo) } diff --git a/go/ql/lib/semmle/go/security/MissingJwtSignatureCheckCustomizations.qll b/go/ql/lib/semmle/go/security/MissingJwtSignatureCheckCustomizations.qll index e1b153da24a..24c3550450a 100644 --- a/go/ql/lib/semmle/go/security/MissingJwtSignatureCheckCustomizations.qll +++ b/go/ql/lib/semmle/go/security/MissingJwtSignatureCheckCustomizations.qll @@ -51,7 +51,11 @@ module MissingJwtSignatureCheck { private class DefaultSource extends Source instanceof ActiveThreatModelSource { } - private class DefaultSink extends Sink { - DefaultSink() { sinkNode(this, "jwt") } + private class ExternalSink extends Sink { + ExternalSink() { sinkNode(this, "jwt") } + } + + private class ExternalSanitizer extends Sanitizer { + ExternalSanitizer() { barrierNode(this, "jwt") } } } diff --git a/go/ql/lib/semmle/go/security/OpenUrlRedirectCustomizations.qll b/go/ql/lib/semmle/go/security/OpenUrlRedirectCustomizations.qll index 248276ba396..8dbcee8170d 100644 --- a/go/ql/lib/semmle/go/security/OpenUrlRedirectCustomizations.qll +++ b/go/ql/lib/semmle/go/security/OpenUrlRedirectCustomizations.qll @@ -75,6 +75,10 @@ module OpenUrlRedirect { } } + private class ExternalBarrier extends Barrier { + ExternalBarrier() { barrierNode(this, "url-redirection") } + } + /** * An assignment of a safe value to the field `Path`, considered as a barrier for sanitizing * untrusted URLs. diff --git a/go/ql/lib/semmle/go/security/RequestForgeryCustomizations.qll b/go/ql/lib/semmle/go/security/RequestForgeryCustomizations.qll index 82f9df4b506..d80026aeed5 100644 --- a/go/ql/lib/semmle/go/security/RequestForgeryCustomizations.qll +++ b/go/ql/lib/semmle/go/security/RequestForgeryCustomizations.qll @@ -44,10 +44,10 @@ module RequestForgery { */ private class ThreatModelFlowAsSource extends Source instanceof ActiveThreatModelSource { } - private class DefaultRequestForgerySink extends Sink { + private class ExternalRequestForgerySink extends Sink { string kind; - DefaultRequestForgerySink() { + ExternalRequestForgerySink() { exists(string modelKind | sinkNode(this, modelKind) | modelKind = "request-forgery" and kind = "URL" or @@ -94,6 +94,10 @@ module RequestForgery { HostnameSanitizer() { hostnameSanitizingPrefixEdge(this, _) } } + private class ExternalRequestForgerySanitizer extends Sanitizer { + ExternalRequestForgerySanitizer() { barrierNode(this, "request-forgery") } + } + /** * A call to a function called `isLocalUrl`, `isValidRedirect`, or similar, which is * considered a barrier guard. diff --git a/go/ql/lib/semmle/go/security/SqlInjectionCustomizations.qll b/go/ql/lib/semmle/go/security/SqlInjectionCustomizations.qll index f26168ad1d7..5d813bcbdac 100644 --- a/go/ql/lib/semmle/go/security/SqlInjectionCustomizations.qll +++ b/go/ql/lib/semmle/go/security/SqlInjectionCustomizations.qll @@ -43,6 +43,10 @@ module SqlInjection { /** DEPRECATED: Use `SimpleTypeSanitizer` from semmle.go.security.Sanitizers instead. */ deprecated class NumericOrBooleanSanitizer = SimpleTypeSanitizer; + private class ExternalSanitizer extends Sanitizer { + ExternalSanitizer() { barrierNode(this, ["nosql-injection", "sql-injection"]) } + } + /** * A numeric- or boolean-typed node, considered a sanitizer for sql injection. */ diff --git a/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll b/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll index 747f2ab0d08..20341159c64 100644 --- a/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll +++ b/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll @@ -57,6 +57,10 @@ module TaintedPath { PathAsSink() { this = any(FileSystemAccess fsa).getAPathArgument() } } + private class ExternalSanitizer extends Sanitizer { + ExternalSanitizer() { barrierNode(this, "path-injection") } + } + /** * A numeric- or boolean-typed node, considered a sanitizer for path traversal. */ @@ -66,19 +70,6 @@ module TaintedPath { } } - /** - * A call to `filepath.Rel`, considered as a sanitizer for path traversal. - */ - class FilepathRelSanitizer extends Sanitizer { - FilepathRelSanitizer() { - exists(Function f, FunctionOutput outp | - f.hasQualifiedName("path/filepath", "Rel") and - outp.isResult(0) and - this = outp.getNode(f.getACall()) - ) - } - } - /** * A call to `filepath.Clean("/" + e)`, considered to sanitize `e` against path traversal. */ @@ -112,44 +103,6 @@ module TaintedPath { } } - /** - * A read from the field `Filename` of the type `mime/multipart.FileHeader`, - * considered as a sanitizer for path traversal. - * - * The only way to create a `mime/multipart.FileHeader` is to create a - * `mime/multipart.Form`, which creates the `Filename` field of each - * `mime/multipart.FileHeader` by calling `Part.FileName`, which calls - * `path/filepath.Base` on its return value. In general `path/filepath.Base` - * is not a sanitizer for path traversal, but in this specific case where the - * output is going to be used as a filename rather than a directory name, it - * is adequate. - */ - class MimeMultipartFileHeaderFilenameSanitizer extends Sanitizer { - MimeMultipartFileHeaderFilenameSanitizer() { - this.(DataFlow::FieldReadNode) - .getField() - .hasQualifiedName("mime/multipart", "FileHeader", "Filename") - } - } - - /** - * A call to `mime/multipart.Part.FileName`, considered as a sanitizer - * against path traversal. - * - * `Part.FileName` calls `path/filepath.Base` on its return value. In - * general `path/filepath.Base` is not a sanitizer for path traversal, but in - * this specific case where the output is going to be used as a filename - * rather than a directory name, it is adequate. - */ - class MimeMultipartPartFileNameSanitizer extends Sanitizer { - MimeMultipartPartFileNameSanitizer() { - this = - any(Method m | m.hasQualifiedName("mime/multipart", "Part", "FileName")) - .getACall() - .getResult() - } - } - /** * A check of the form `!strings.Contains(nd, "..")`, considered as a sanitizer guard for * path traversal. diff --git a/go/ql/lib/semmle/go/security/XPathInjectionCustomizations.qll b/go/ql/lib/semmle/go/security/XPathInjectionCustomizations.qll index 472ed041ea1..baf4706e863 100644 --- a/go/ql/lib/semmle/go/security/XPathInjectionCustomizations.qll +++ b/go/ql/lib/semmle/go/security/XPathInjectionCustomizations.qll @@ -34,4 +34,7 @@ module XPathInjection { /** An XPath expression string, considered as a taint sink for XPath injection. */ class XPathExpressionStringAsSink extends Sink instanceof XPath::XPathExpressionString { } + + /** A sanitizer for XPath injection. */ + class XPathSanitizer extends Sanitizer instanceof XPath::Sanitizer { } } diff --git a/go/ql/lib/semmle/go/security/Xss.qll b/go/ql/lib/semmle/go/security/Xss.qll index f11dc12bf76..6ab9f7321f6 100644 --- a/go/ql/lib/semmle/go/security/Xss.qll +++ b/go/ql/lib/semmle/go/security/Xss.qll @@ -49,8 +49,8 @@ module SharedXss { override Locatable getAssociatedLoc() { result = this.getRead().getEnclosingTextNode() } } - private class DefaultSink extends Sink { - DefaultSink() { sinkNode(this, ["html-injection", "js-injection"]) } + private class ExternalSink extends Sink { + ExternalSink() { sinkNode(this, ["html-injection", "js-injection"]) } } /** @@ -88,6 +88,10 @@ module SharedXss { body.getAContentType().regexpMatch("(?i).*html.*") } + private class ExternalSanitizer extends Sanitizer { + ExternalSanitizer() { barrierNode(this, ["html-injection", "js-injection"]) } + } + /** * A JSON marshaler, acting to sanitize a possible XSS vulnerability because the * marshaled value is very unlikely to be returned as an HTML content-type. diff --git a/go/ql/src/CHANGELOG.md b/go/ql/src/CHANGELOG.md index 126e2b8583c..1f4ae4f3a57 100644 --- a/go/ql/src/CHANGELOG.md +++ b/go/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.5.3 + +No user-facing changes. + ## 1.5.2 No user-facing changes. diff --git a/go/ql/src/change-notes/released/1.5.3.md b/go/ql/src/change-notes/released/1.5.3.md new file mode 100644 index 00000000000..2e9bcb5e663 --- /dev/null +++ b/go/ql/src/change-notes/released/1.5.3.md @@ -0,0 +1,3 @@ +## 1.5.3 + +No user-facing changes. diff --git a/go/ql/src/codeql-pack.release.yml b/go/ql/src/codeql-pack.release.yml index 7eb901bae56..232224b0e26 100644 --- a/go/ql/src/codeql-pack.release.yml +++ b/go/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.5.2 +lastReleaseVersion: 1.5.3 diff --git a/go/ql/src/qlpack.yml b/go/ql/src/qlpack.yml index d0c0874c987..1545b6b7195 100644 --- a/go/ql/src/qlpack.yml +++ b/go/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-queries -version: 1.5.3-dev +version: 1.5.4-dev groups: - go - queries diff --git a/java/ql/lib/CHANGELOG.md b/java/ql/lib/CHANGELOG.md index ee076ba77a7..1180f563d23 100644 --- a/java/ql/lib/CHANGELOG.md +++ b/java/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.8.3 + +No user-facing changes. + ## 7.8.2 No user-facing changes. diff --git a/java/ql/lib/change-notes/released/7.8.3.md b/java/ql/lib/change-notes/released/7.8.3.md new file mode 100644 index 00000000000..1e36fb05f08 --- /dev/null +++ b/java/ql/lib/change-notes/released/7.8.3.md @@ -0,0 +1,3 @@ +## 7.8.3 + +No user-facing changes. diff --git a/java/ql/lib/codeql-pack.release.yml b/java/ql/lib/codeql-pack.release.yml index 40a3d24f296..41a48ad0ff8 100644 --- a/java/ql/lib/codeql-pack.release.yml +++ b/java/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.8.2 +lastReleaseVersion: 7.8.3 diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index f0f57e7150d..4cf6e5e75f4 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-all -version: 7.8.3-dev +version: 7.8.4-dev groups: java dbscheme: config/semmlecode.dbscheme extractor: java diff --git a/java/ql/lib/semmle/code/java/dataflow/TypeFlow.qll b/java/ql/lib/semmle/code/java/dataflow/TypeFlow.qll index 21cfc54fdf8..361b4feb54a 100644 --- a/java/ql/lib/semmle/code/java/dataflow/TypeFlow.qll +++ b/java/ql/lib/semmle/code/java/dataflow/TypeFlow.qll @@ -202,6 +202,13 @@ private module Input implements TypeFlowInput { t1e = t2e and unbound(t2) and not unbound(t1) + or + t1e = t2e and + exists(int pos | + partiallyUnbound(t2, pos) and + not partiallyUnbound(t1, pos) and + not unbound(t1) + ) ) } @@ -370,6 +377,11 @@ private module Input implements TypeFlowInput { ) } + /** Holds if `t` is a parameterised type with unrestricted type argument at position `pos`. */ + private predicate partiallyUnbound(ParameterizedType t, int pos) { + unconstrained(t.getTypeArgument(pos)) + } + Type getErasure(Type t) { result = t.getErasure() } Type getAnAncestor(Type sub) { result = sub.getAnAncestor() } diff --git a/java/ql/src/CHANGELOG.md b/java/ql/src/CHANGELOG.md index a30e72bfaef..be5a172bb6c 100644 --- a/java/ql/src/CHANGELOG.md +++ b/java/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.10.4 + +No user-facing changes. + ## 1.10.3 ### Minor Analysis Improvements diff --git a/java/ql/src/change-notes/released/1.10.4.md b/java/ql/src/change-notes/released/1.10.4.md new file mode 100644 index 00000000000..b7255ea60f7 --- /dev/null +++ b/java/ql/src/change-notes/released/1.10.4.md @@ -0,0 +1,3 @@ +## 1.10.4 + +No user-facing changes. diff --git a/java/ql/src/codeql-pack.release.yml b/java/ql/src/codeql-pack.release.yml index d3e15295550..35049ec188b 100644 --- a/java/ql/src/codeql-pack.release.yml +++ b/java/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.10.3 +lastReleaseVersion: 1.10.4 diff --git a/java/ql/src/qlpack.yml b/java/ql/src/qlpack.yml index d5ab0a6cc4a..cfff0aa4e78 100644 --- a/java/ql/src/qlpack.yml +++ b/java/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-queries -version: 1.10.4-dev +version: 1.10.5-dev groups: - java - queries diff --git a/java/ql/test/library-tests/typeflow/A.java b/java/ql/test/library-tests/typeflow/A.java index ad19901f151..751ad525d15 100644 --- a/java/ql/test/library-tests/typeflow/A.java +++ b/java/ql/test/library-tests/typeflow/A.java @@ -118,4 +118,12 @@ public class A extends ArrayList { default -> { } } } + + private static T lookupFoo(Map m) { + return m.get("foo"); + } + + public void m11(Map m) { + lookupFoo(m); + } } diff --git a/java/ql/test/library-tests/typeflow/typeflow.expected b/java/ql/test/library-tests/typeflow/typeflow.expected index f0cb2356cb8..03dcb0e0766 100644 --- a/java/ql/test/library-tests/typeflow/typeflow.expected +++ b/java/ql/test/library-tests/typeflow/typeflow.expected @@ -18,5 +18,6 @@ | A.java:112:23:112:24 | cs | String | false | | A.java:116:13:116:14 | o2 | String | false | | A.java:117:49:117:50 | cs | String | false | +| A.java:123:12:123:12 | m | Map | false | | UnionTypes.java:45:7:45:7 | x | Inter | false | | UnionTypes.java:48:23:48:23 | x | Inter | false | diff --git a/javascript/ql/lib/CHANGELOG.md b/javascript/ql/lib/CHANGELOG.md index b36b8f521a0..88fd8b8ea01 100644 --- a/javascript/ql/lib/CHANGELOG.md +++ b/javascript/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.6.19 + +No user-facing changes. + ## 2.6.18 No user-facing changes. diff --git a/javascript/ql/lib/change-notes/released/2.6.19.md b/javascript/ql/lib/change-notes/released/2.6.19.md new file mode 100644 index 00000000000..f4f993bfa15 --- /dev/null +++ b/javascript/ql/lib/change-notes/released/2.6.19.md @@ -0,0 +1,3 @@ +## 2.6.19 + +No user-facing changes. diff --git a/javascript/ql/lib/codeql-pack.release.yml b/javascript/ql/lib/codeql-pack.release.yml index ce85aee60d1..679db550b20 100644 --- a/javascript/ql/lib/codeql-pack.release.yml +++ b/javascript/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.6.18 +lastReleaseVersion: 2.6.19 diff --git a/javascript/ql/lib/qlpack.yml b/javascript/ql/lib/qlpack.yml index 88072819279..889177c61b7 100644 --- a/javascript/ql/lib/qlpack.yml +++ b/javascript/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-all -version: 2.6.19-dev +version: 2.6.20-dev groups: javascript dbscheme: semmlecode.javascript.dbscheme extractor: javascript diff --git a/javascript/ql/lib/semmle/javascript/frameworks/WebResponse.qll b/javascript/ql/lib/semmle/javascript/frameworks/WebResponse.qll index dfdee73c9d9..c8a450e5cff 100644 --- a/javascript/ql/lib/semmle/javascript/frameworks/WebResponse.qll +++ b/javascript/ql/lib/semmle/javascript/frameworks/WebResponse.qll @@ -45,6 +45,10 @@ private class ResponseArgumentHeaders extends Http::HeaderDefinition { ResponseArgumentHeaders() { headerNode = response.getParameter(1).getMember("headers") and this = headerNode.asSink() + or + not exists(response.getParameter(1).getMember("headers")) and + headerNode = API::root() and // just bind 'headerNode' to something + this = response } ResponseCall getResponse() { result = response } @@ -80,9 +84,14 @@ private class ResponseArgumentHeaders extends Http::HeaderDefinition { override predicate defines(string headerName, string headerValue) { this.getHeaderNode(headerName).getAValueReachingSink().getStringValue() = headerValue + or + // If no 'content-type' header is defined, a default one is sent in the HTTP response. + not exists(this.getHeaderNode("content-type")) and + headerName = "content-type" and + headerValue = "text/plain;charset=utf-8" } - override string getAHeaderName() { exists(this.getHeaderNode(result)) } + override string getAHeaderName() { exists(this.getHeaderNode(result)) or result = "content-type" } override Http::RouteHandler getRouteHandler() { none() } } diff --git a/javascript/ql/src/CHANGELOG.md b/javascript/ql/src/CHANGELOG.md index 11b27f044cf..8c7ad99925a 100644 --- a/javascript/ql/src/CHANGELOG.md +++ b/javascript/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.2.4 + +No user-facing changes. + ## 2.2.3 No user-facing changes. diff --git a/javascript/ql/src/change-notes/2025-11-26-response-default-content-type.md b/javascript/ql/src/change-notes/2025-11-26-response-default-content-type.md new file mode 100644 index 00000000000..67ece0e5353 --- /dev/null +++ b/javascript/ql/src/change-notes/2025-11-26-response-default-content-type.md @@ -0,0 +1,5 @@ +--- +category: minorAnalysis +--- +* `new Response(x)` is no longer seen as a reflected XSS sink when no `content-type` header + is set, since the content type defaults to `text/plain`. diff --git a/javascript/ql/src/change-notes/released/2.2.4.md b/javascript/ql/src/change-notes/released/2.2.4.md new file mode 100644 index 00000000000..cfdc1fea47f --- /dev/null +++ b/javascript/ql/src/change-notes/released/2.2.4.md @@ -0,0 +1,3 @@ +## 2.2.4 + +No user-facing changes. diff --git a/javascript/ql/src/codeql-pack.release.yml b/javascript/ql/src/codeql-pack.release.yml index 5ee5c5be7fc..5d34f486fd4 100644 --- a/javascript/ql/src/codeql-pack.release.yml +++ b/javascript/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.2.3 +lastReleaseVersion: 2.2.4 diff --git a/javascript/ql/src/qlpack.yml b/javascript/ql/src/qlpack.yml index 1ef59ad1834..3b73d75ad23 100644 --- a/javascript/ql/src/qlpack.yml +++ b/javascript/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-queries -version: 2.2.4-dev +version: 2.2.5-dev groups: - javascript - queries diff --git a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected index b488018d09d..e24a3319e16 100644 --- a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected +++ b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected @@ -50,15 +50,10 @@ | partial.js:28:14:28:18 | x + y | partial.js:31:47:31:53 | req.url | partial.js:28:14:28:18 | x + y | Cross-site scripting vulnerability due to a $@. | partial.js:31:47:31:53 | req.url | user-provided value | | partial.js:37:14:37:18 | x + y | partial.js:40:43:40:49 | req.url | partial.js:37:14:37:18 | x + y | Cross-site scripting vulnerability due to a $@. | partial.js:40:43:40:49 | req.url | user-provided value | | promises.js:6:25:6:25 | x | promises.js:5:44:5:57 | req.query.data | promises.js:6:25:6:25 | x | Cross-site scripting vulnerability due to a $@. | promises.js:5:44:5:57 | req.query.data | user-provided value | -| response-object.js:9:18:9:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:9:18:9:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:10:18:10:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:10:18:10:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:11:18:11:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:11:18:11:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:14:18:14:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:14:18:14:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:17:18:17:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:17:18:17:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:23:18:23:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:23:18:23:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:26:18:26:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:26:18:26:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:34:18:34:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:34:18:34:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:38:18:38:21 | data | response-object.js:7:18:7:25 | req.body | response-object.js:38:18:38:21 | data | Cross-site scripting vulnerability due to a $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | tst2.js:7:12:7:12 | p | tst2.js:6:9:6:9 | p | tst2.js:7:12:7:12 | p | Cross-site scripting vulnerability due to a $@. | tst2.js:6:9:6:9 | p | user-provided value | | tst2.js:8:12:8:12 | r | tst2.js:6:12:6:15 | q: r | tst2.js:8:12:8:12 | r | Cross-site scripting vulnerability due to a $@. | tst2.js:6:12:6:15 | q: r | user-provided value | | tst2.js:18:12:18:12 | p | tst2.js:14:9:14:9 | p | tst2.js:18:12:18:12 | p | Cross-site scripting vulnerability due to a $@. | tst2.js:14:9:14:9 | p | user-provided value | @@ -184,15 +179,10 @@ edges | promises.js:5:36:5:42 | [post update] resolve [resolve-value] | promises.js:5:16:5:22 | resolve [Return] [resolve-value] | provenance | | | promises.js:5:44:5:57 | req.query.data | promises.js:5:36:5:42 | [post update] resolve [resolve-value] | provenance | | | promises.js:6:11:6:11 | x | promises.js:6:25:6:25 | x | provenance | | -| response-object.js:7:11:7:14 | data | response-object.js:9:18:9:21 | data | provenance | | -| response-object.js:7:11:7:14 | data | response-object.js:10:18:10:21 | data | provenance | | -| response-object.js:7:11:7:14 | data | response-object.js:11:18:11:21 | data | provenance | | | response-object.js:7:11:7:14 | data | response-object.js:14:18:14:21 | data | provenance | | | response-object.js:7:11:7:14 | data | response-object.js:17:18:17:21 | data | provenance | | | response-object.js:7:11:7:14 | data | response-object.js:23:18:23:21 | data | provenance | | -| response-object.js:7:11:7:14 | data | response-object.js:26:18:26:21 | data | provenance | | | response-object.js:7:11:7:14 | data | response-object.js:34:18:34:21 | data | provenance | | -| response-object.js:7:11:7:14 | data | response-object.js:38:18:38:21 | data | provenance | | | response-object.js:7:18:7:25 | req.body | response-object.js:7:11:7:14 | data | provenance | | | tst2.js:6:9:6:9 | p | tst2.js:6:9:6:9 | p | provenance | | | tst2.js:6:9:6:9 | p | tst2.js:7:12:7:12 | p | provenance | | @@ -413,15 +403,10 @@ nodes | promises.js:6:25:6:25 | x | semmle.label | x | | response-object.js:7:11:7:14 | data | semmle.label | data | | response-object.js:7:18:7:25 | req.body | semmle.label | req.body | -| response-object.js:9:18:9:21 | data | semmle.label | data | -| response-object.js:10:18:10:21 | data | semmle.label | data | -| response-object.js:11:18:11:21 | data | semmle.label | data | | response-object.js:14:18:14:21 | data | semmle.label | data | | response-object.js:17:18:17:21 | data | semmle.label | data | | response-object.js:23:18:23:21 | data | semmle.label | data | -| response-object.js:26:18:26:21 | data | semmle.label | data | | response-object.js:34:18:34:21 | data | semmle.label | data | -| response-object.js:38:18:38:21 | data | semmle.label | data | | tst2.js:6:9:6:9 | p | semmle.label | p | | tst2.js:6:9:6:9 | p | semmle.label | p | | tst2.js:6:12:6:15 | q: r | semmle.label | q: r | diff --git a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected index 2dceb5fa807..dee99b1490c 100644 --- a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected +++ b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected @@ -48,15 +48,10 @@ | partial.js:28:14:28:18 | x + y | Cross-site scripting vulnerability due to $@. | partial.js:31:47:31:53 | req.url | user-provided value | | partial.js:37:14:37:18 | x + y | Cross-site scripting vulnerability due to $@. | partial.js:40:43:40:49 | req.url | user-provided value | | promises.js:6:25:6:25 | x | Cross-site scripting vulnerability due to $@. | promises.js:5:44:5:57 | req.query.data | user-provided value | -| response-object.js:9:18:9:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:10:18:10:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:11:18:11:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:14:18:14:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:17:18:17:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:23:18:23:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:26:18:26:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | response-object.js:34:18:34:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | -| response-object.js:38:18:38:21 | data | Cross-site scripting vulnerability due to $@. | response-object.js:7:18:7:25 | req.body | user-provided value | | tst2.js:7:12:7:12 | p | Cross-site scripting vulnerability due to $@. | tst2.js:6:9:6:9 | p | user-provided value | | tst2.js:8:12:8:12 | r | Cross-site scripting vulnerability due to $@. | tst2.js:6:12:6:15 | q: r | user-provided value | | tst2.js:18:12:18:12 | p | Cross-site scripting vulnerability due to $@. | tst2.js:14:9:14:9 | p | user-provided value | diff --git a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/response-object.js b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/response-object.js index 030cff46733..87ed6d826a6 100644 --- a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/response-object.js +++ b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/response-object.js @@ -1,14 +1,14 @@ const express = require('express'); -// Note: We're using using express for the taint source in order to to test 'Response' +// Note: We're using express for the taint source in order to test 'Response' // in isolation from the more complicated http frameworks. express().get('/foo', (req) => { const data = req.body; // $ Source - new Response(data); // $ Alert - new Response(data, {}); // $ Alert - new Response(data, { headers: null }); // $ Alert + new Response(data); + new Response(data, {}); + new Response(data, { headers: null }); new Response(data, { headers: { 'content-type': 'text/plain'}}); new Response(data, { headers: { 'content-type': 'text/html'}}); // $ Alert @@ -23,7 +23,7 @@ express().get('/foo', (req) => { new Response(data, { headers: headers2 }); // $ Alert const headers3 = new Headers(); - new Response(data, { headers: headers3 }); // $ Alert + new Response(data, { headers: headers3 }); const headers4 = new Headers(); headers4.set('content-type', 'text/plain'); @@ -35,5 +35,9 @@ express().get('/foo', (req) => { const headers6 = new Headers(); headers6.set('unrelated-header', 'text/plain'); - new Response(data, { headers: headers6 }); // $ Alert + new Response(data, { headers: headers6 }); + + const headers7 = new Headers(); + headers7.set('unrelated-header', 'text/html'); + new Response(data, { headers: headers7 }); }); diff --git a/misc/scripts/create-change-note.py b/misc/scripts/create-change-note.py index 1de42126c90..acaf0794c86 100755 --- a/misc/scripts/create-change-note.py +++ b/misc/scripts/create-change-note.py @@ -9,6 +9,8 @@ # - The name of the change note (in kebab-case) # - The category of the change (see https://github.com/github/codeql/blob/main/docs/change-notes.md#change-categories). +# Alternatively, run without arguments for interactive mode. + # The change note will be created in the `{language}/ql/{subdir}/change-notes` directory, where `subdir` is either `src` or `lib`. # The format of the change note filename is `{current_date}-{change_note_name}.md` with the date in @@ -17,11 +19,111 @@ import sys import os -# Read the given arguments -language = sys.argv[1] -subdir = sys.argv[2] -change_note_name = sys.argv[3] -change_category = sys.argv[4] +LANGUAGES = [ + "actions", + "cpp", + "csharp", + "go", + "java", + "javascript", + "python", + "ruby", + "rust", + "swift", +] + +SUBDIRS = { + "src": "query", + "lib": "library", +} + +CATEGORIES_QUERY = [ + "breaking", + "deprecated", + "newQuery", + "queryMetadata", + "majorAnalysis", + "minorAnalysis", + "fix", +] + +CATEGORIES_LIBRARY = [ + "breaking", + "deprecated", + "feature", + "majorAnalysis", + "minorAnalysis", + "fix", +] + + +def is_subsequence(needle: str, haystack: str) -> bool: + """Check if needle is a subsequence of haystack (case-insensitive).""" + it = iter(haystack.lower()) + return all(c in it for c in needle.lower()) + + +def pick_option(prompt: str, options: list[str]) -> str: + """Display options and let the user pick by subsequence match.""" + print(f"\n{prompt}") + print(f" Options: {', '.join(options)}") + while True: + choice = input("Choice: ").strip() + if not choice: + continue + # Try exact match first + for o in options: + if o.lower() == choice.lower(): + return o + # Try subsequence match + matches = [o for o in options if is_subsequence(choice, o)] + if len(matches) == 1: + return matches[0] + if len(matches) > 1: + print(f" Ambiguous: {', '.join(matches)}") + continue + print(f" No match for '{choice}'. Try again.") + + +def prompt_string(prompt: str) -> str: + """Prompt the user for a string value.""" + while True: + value = input(f"\n{prompt}: ").strip() + if value: + return value + print("Value cannot be empty.") + + +def interactive_mode() -> tuple[str, str, str, str]: + """Run interactive mode to gather all required inputs.""" + print("=== Create Change Note (Interactive Mode) ===") + + language = pick_option("Select language:", LANGUAGES) + subdir = pick_option("Change type:", list(SUBDIRS.keys())) + + change_note_name = prompt_string("Short name (kebab-case)") + + if subdir == "src": + categories = CATEGORIES_QUERY + else: + categories = CATEGORIES_LIBRARY + change_category = pick_option("Select category:", categories) + + return language, subdir, change_note_name, change_category + + +# Check if running in interactive mode (no arguments) or with arguments +if len(sys.argv) == 1: + language, subdir, change_note_name, change_category = interactive_mode() +elif len(sys.argv) == 5: + language = sys.argv[1] + subdir = sys.argv[2] + change_note_name = sys.argv[3] + change_category = sys.argv[4] +else: + print("Usage: create-change-note.py [language subdir name category]") + print(" Run without arguments for interactive mode.") + sys.exit(1) # Find the root of the repository. The current script should be located in `misc/scripts`. root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) diff --git a/misc/suite-helpers/CHANGELOG.md b/misc/suite-helpers/CHANGELOG.md index 5e5c3c37bae..61f60bfdac2 100644 --- a/misc/suite-helpers/CHANGELOG.md +++ b/misc/suite-helpers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/misc/suite-helpers/change-notes/released/1.0.39.md b/misc/suite-helpers/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/misc/suite-helpers/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/misc/suite-helpers/codeql-pack.release.yml b/misc/suite-helpers/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/misc/suite-helpers/codeql-pack.release.yml +++ b/misc/suite-helpers/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/misc/suite-helpers/qlpack.yml b/misc/suite-helpers/qlpack.yml index 3a79aea9f46..fd26cf0f007 100644 --- a/misc/suite-helpers/qlpack.yml +++ b/misc/suite-helpers/qlpack.yml @@ -1,4 +1,4 @@ name: codeql/suite-helpers -version: 1.0.39-dev +version: 1.0.40-dev groups: shared warnOnImplicitThis: true diff --git a/python/extractor/tests/parser/exception_groups_new.expected b/python/extractor/tests/parser/exception_groups_new.expected index a70bf1b2485..337d12f6339 100644 --- a/python/extractor/tests/parser/exception_groups_new.expected +++ b/python/extractor/tests/parser/exception_groups_new.expected @@ -1,4 +1,4 @@ -Module: [1, 0] - [27, 0] +Module: [1, 0] - [32, 0] body: [ Try: [1, 0] - [1, 4] body: [ @@ -153,4 +153,28 @@ Module: [1, 0] - [27, 0] ] ] finalbody: [] + Try: [28, 0] - [28, 4] + body: [ + Pass: [29, 4] - [29, 8] + ] + orelse: [] + handlers: [ + ExceptGroupStmt: [30, 0] - [31, 8] + type: + Tuple: [30, 8] - [30, 12] + elts: [ + Name: [30, 8] - [30, 9] + variable: Variable('x', None) + ctx: Load + Name: [30, 11] - [30, 12] + variable: Variable('y', None) + ctx: Load + ] + ctx: Load + name: None + body: [ + Pass: [31, 4] - [31, 8] + ] + ] + finalbody: [] ] diff --git a/python/extractor/tests/parser/exception_groups_new.py b/python/extractor/tests/parser/exception_groups_new.py index 01fe58b9a98..e16ca18be35 100644 --- a/python/extractor/tests/parser/exception_groups_new.py +++ b/python/extractor/tests/parser/exception_groups_new.py @@ -24,3 +24,8 @@ try: pass except *foo as e: pass + +try: + pass +except* x, y: + pass diff --git a/python/extractor/tests/parser/exceptions_new.expected b/python/extractor/tests/parser/exceptions_new.expected new file mode 100644 index 00000000000..ca713146e50 --- /dev/null +++ b/python/extractor/tests/parser/exceptions_new.expected @@ -0,0 +1,64 @@ +Module: [1, 0] - [9, 0] + body: [ + Try: [1, 0] - [1, 4] + body: [ + Pass: [2, 4] - [2, 8] + ] + orelse: [] + handlers: [ + ExceptStmt: [3, 0] - [3, 12] + type: + Tuple: [3, 7] - [3, 11] + elts: [ + Name: [3, 7] - [3, 8] + variable: Variable('a', None) + ctx: Load + Name: [3, 10] - [3, 11] + variable: Variable('b', None) + ctx: Load + ] + ctx: Load + name: None + body: [ + Pass: [4, 4] - [4, 8] + ] + ExceptStmt: [5, 0] - [5, 14] + type: + Tuple: [5, 8] - [5, 12] + elts: [ + Name: [5, 8] - [5, 9] + variable: Variable('c', None) + ctx: Load + Name: [5, 11] - [5, 12] + variable: Variable('d', None) + ctx: Load + ] + ctx: Load + parenthesised: True + name: None + body: [ + Pass: [6, 4] - [6, 8] + ] + ExceptStmt: [7, 0] - [7, 19] + type: + Tuple: [7, 8] - [7, 12] + elts: [ + Name: [7, 8] - [7, 9] + variable: Variable('e', None) + ctx: Load + Name: [7, 11] - [7, 12] + variable: Variable('f', None) + ctx: Load + ] + ctx: Load + parenthesised: True + name: + Name: [7, 17] - [7, 18] + variable: Variable('g', None) + ctx: Store + body: [ + Pass: [8, 4] - [8, 8] + ] + ] + finalbody: [] + ] diff --git a/python/extractor/tests/parser/exceptions_new.py b/python/extractor/tests/parser/exceptions_new.py new file mode 100644 index 00000000000..b2e7d943e1d --- /dev/null +++ b/python/extractor/tests/parser/exceptions_new.py @@ -0,0 +1,8 @@ +try: + pass +except a, b: # new, relaxed syntax + pass +except (c, d): # old syntax + pass +except (e, f) as g: # old syntax + pass diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 8cd3bc50743..dd11814753d 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -12,7 +12,7 @@ (assignment !type) @assign { let @assign.node = (ast-node @assign "Assign") } -[ (expression_list) (tuple) (tuple_pattern) (pattern_list) (index_expression_list) ] @tuple +[ (expression_list) (tuple) (tuple_pattern) (pattern_list) (index_expression_list) (exception_list)] @tuple { let @tuple.node = (ast-node @tuple "Tuple") } (list_pattern) @list @@ -3445,6 +3445,9 @@ (tuple element: (_) @elt) @parent (tuple_pattern element: (_) @elt) @parent + + ; An exception list, as in `except A, B, C: ...` + (exception_list element: (_) @elt) @parent ] { edge @parent.node -> @elt.node @@ -3480,6 +3483,7 @@ (parenthesized_expression inner: (_) @elt) (set element: (_) @elt) (match_sequence_pattern (_) @elt) + (exception_list element: (_) @elt) ] @seq { attr (@elt.node) _inherited_ctx = @seq.node diff --git a/python/extractor/tsg-python/tsp/.gitattributes b/python/extractor/tsg-python/tsp/.gitattributes new file mode 100644 index 00000000000..6ee9efab466 --- /dev/null +++ b/python/extractor/tsg-python/tsp/.gitattributes @@ -0,0 +1,4 @@ +# Mark tree-sitter generated files +src/grammar.json linguist-generated +src/node-types.json linguist-generated +src/parser.c linguist-generated diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index 145fa6a4b9a..a30ddb9f0a0 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -297,12 +297,21 @@ module.exports = grammar({ ) ), + exception_list: $ => seq( + field('element', $.expression), + repeat1( + seq( + ',', + field('element', $.expression)) + ) + ), + except_clause: $ => seq( 'except', optional(seq( - field('type', $.expression), + field('type', choice($.expression, $.exception_list)), optional(seq( - choice('as', ','), + 'as', field('alias', $.expression) )) )), @@ -314,7 +323,7 @@ module.exports = grammar({ 'except', '*', seq( - field('type', $.expression), + field('type', choice($.expression, $.exception_list)), optional(seq( 'as', field('alias', $.expression) diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index 7d43a3ca6ad..e413f91b085 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -1087,6 +1087,39 @@ } ] }, + "exception_list": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "element", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "element", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, "except_clause": { "type": "SEQ", "members": [ @@ -1104,8 +1137,17 @@ "type": "FIELD", "name": "type", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "exception_list" + } + ] } }, { @@ -1115,17 +1157,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "STRING", - "value": "," - } - ] + "type": "STRING", + "value": "as" }, { "type": "FIELD", @@ -1181,8 +1214,17 @@ "type": "FIELD", "name": "type", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "exception_list" + } + ] } }, { diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index abb7cf17292..a718a48aab6 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -1309,6 +1309,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "exception_list", + "named": true + }, { "type": "expression", "named": true @@ -1344,6 +1348,26 @@ "type": { "multiple": false, "required": true, + "types": [ + { + "type": "exception_list", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "exception_list", + "named": true, + "fields": { + "element": { + "multiple": true, + "required": true, "types": [ { "type": "expression", diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index 0d535e87adc..e275c1316a0 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1502 +#define STATE_COUNT 1510 #define LARGE_STATE_COUNT 152 -#define SYMBOL_COUNT 286 +#define SYMBOL_COUNT 288 #define ALIAS_COUNT 3 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 7 @@ -152,159 +152,161 @@ enum { sym_for_statement = 133, sym_while_statement = 134, sym_try_statement = 135, - sym_except_clause = 136, - sym_except_group_clause = 137, - sym_finally_clause = 138, - sym_with_statement = 139, - sym_with_clause = 140, - sym_with_item = 141, - sym_match_statement = 142, - sym_cases = 143, - sym_case_block = 144, - sym__match_patterns = 145, - sym_open_sequence_match_pattern = 146, - sym__match_pattern = 147, - sym_match_as_pattern = 148, - sym__match_or_pattern = 149, - sym_match_or_pattern = 150, - sym__closed_pattern = 151, - sym_match_literal_pattern = 152, - sym_match_capture_pattern = 153, - sym_match_value_pattern = 154, - sym_match_group_pattern = 155, - sym_match_sequence_pattern = 156, - sym__match_maybe_star_pattern = 157, - sym_match_star_pattern = 158, - sym_match_mapping_pattern = 159, - sym_match_double_star_pattern = 160, - sym_match_key_value_pattern = 161, - sym_match_class_pattern = 162, - sym_pattern_class_name = 163, - sym_match_positional_pattern = 164, - sym_match_keyword_pattern = 165, - sym_guard = 166, - sym_function_definition = 167, - sym_parameters = 168, - sym_lambda_parameters = 169, - sym_list_splat = 170, - sym_dictionary_splat = 171, - sym_global_statement = 172, - sym_nonlocal_statement = 173, - sym_exec_statement = 174, - sym_type_alias_statement = 175, - sym_class_definition = 176, - sym_type_parameters = 177, - sym__type_bound = 178, - sym_typevar_parameter = 179, - sym_typevartuple_parameter = 180, - sym_paramspec_parameter = 181, - sym__type_parameter = 182, - sym__type_param_default = 183, - sym_parenthesized_list_splat = 184, - sym_argument_list = 185, - sym_decorated_definition = 186, - sym_decorator = 187, - sym_block = 188, - sym_expression_list = 189, - sym_dotted_name = 190, - sym__parameters = 191, - sym__patterns = 192, - sym_parameter = 193, - sym_pattern = 194, - sym_tuple_pattern = 195, - sym_list_pattern = 196, - sym_default_parameter = 197, - sym_typed_default_parameter = 198, - sym_list_splat_pattern = 199, - sym_dictionary_splat_pattern = 200, - sym__expression_within_for_in_clause = 201, - sym_expression = 202, - sym_primary_expression = 203, - sym_not_operator = 204, - sym_boolean_operator = 205, - sym_binary_operator = 206, - sym_unary_operator = 207, - sym_comparison_operator = 208, - sym_lambda = 209, - sym_lambda_within_for_in_clause = 210, - sym_assignment = 211, - sym_augmented_assignment = 212, - sym_pattern_list = 213, - sym__right_hand_side = 214, - sym_yield = 215, - sym_attribute = 216, - sym__index_expression = 217, - sym_index_expression_list = 218, - sym_subscript = 219, - sym_slice = 220, - sym_call = 221, - sym_typed_parameter = 222, - sym_type = 223, - sym_keyword_argument = 224, - sym_list = 225, - sym_set = 226, - sym_tuple = 227, - sym_dictionary = 228, - sym_pair = 229, - sym_list_comprehension = 230, - sym_dictionary_comprehension = 231, - sym_set_comprehension = 232, - sym_generator_expression = 233, - sym__comprehension_clauses = 234, - sym_parenthesized_expression = 235, - sym__collection_elements = 236, - sym_for_in_clause = 237, - sym_if_clause = 238, - sym_conditional_expression = 239, - sym_concatenated_string = 240, - sym_string = 241, - sym_concatenated_template_string = 242, - sym_template_string = 243, - sym_string_content = 244, - sym_interpolation = 245, - sym__f_expression = 246, - sym_format_specifier = 247, - sym_await = 248, - sym_positional_separator = 249, - sym_keyword_separator = 250, - aux_sym_module_repeat1 = 251, - aux_sym__simple_statements_repeat1 = 252, - aux_sym_import_prefix_repeat1 = 253, - aux_sym__import_list_repeat1 = 254, - aux_sym_print_statement_repeat1 = 255, - aux_sym_assert_statement_repeat1 = 256, - aux_sym_if_statement_repeat1 = 257, - aux_sym_try_statement_repeat1 = 258, - aux_sym_try_statement_repeat2 = 259, - aux_sym_with_clause_repeat1 = 260, - aux_sym_cases_repeat1 = 261, - aux_sym_open_sequence_match_pattern_repeat1 = 262, - aux_sym_match_or_pattern_repeat1 = 263, - aux_sym_match_value_pattern_repeat1 = 264, - aux_sym_match_mapping_pattern_repeat1 = 265, - aux_sym_match_class_pattern_repeat1 = 266, - aux_sym_match_class_pattern_repeat2 = 267, - aux_sym_global_statement_repeat1 = 268, - aux_sym_type_parameters_repeat1 = 269, - aux_sym_argument_list_repeat1 = 270, - aux_sym_decorated_definition_repeat1 = 271, - aux_sym_expression_list_repeat1 = 272, - aux_sym__parameters_repeat1 = 273, - aux_sym__patterns_repeat1 = 274, - aux_sym_comparison_operator_repeat1 = 275, - aux_sym_index_expression_list_repeat1 = 276, - aux_sym_dictionary_repeat1 = 277, - aux_sym__comprehension_clauses_repeat1 = 278, - aux_sym__collection_elements_repeat1 = 279, - aux_sym_for_in_clause_repeat1 = 280, - aux_sym_concatenated_string_repeat1 = 281, - aux_sym_string_repeat1 = 282, - aux_sym_concatenated_template_string_repeat1 = 283, - aux_sym_string_content_repeat1 = 284, - aux_sym_format_specifier_repeat1 = 285, - alias_sym_format_expression = 286, - anon_alias_sym_isnot = 287, - anon_alias_sym_notin = 288, + sym_exception_list = 136, + sym_except_clause = 137, + sym_except_group_clause = 138, + sym_finally_clause = 139, + sym_with_statement = 140, + sym_with_clause = 141, + sym_with_item = 142, + sym_match_statement = 143, + sym_cases = 144, + sym_case_block = 145, + sym__match_patterns = 146, + sym_open_sequence_match_pattern = 147, + sym__match_pattern = 148, + sym_match_as_pattern = 149, + sym__match_or_pattern = 150, + sym_match_or_pattern = 151, + sym__closed_pattern = 152, + sym_match_literal_pattern = 153, + sym_match_capture_pattern = 154, + sym_match_value_pattern = 155, + sym_match_group_pattern = 156, + sym_match_sequence_pattern = 157, + sym__match_maybe_star_pattern = 158, + sym_match_star_pattern = 159, + sym_match_mapping_pattern = 160, + sym_match_double_star_pattern = 161, + sym_match_key_value_pattern = 162, + sym_match_class_pattern = 163, + sym_pattern_class_name = 164, + sym_match_positional_pattern = 165, + sym_match_keyword_pattern = 166, + sym_guard = 167, + sym_function_definition = 168, + sym_parameters = 169, + sym_lambda_parameters = 170, + sym_list_splat = 171, + sym_dictionary_splat = 172, + sym_global_statement = 173, + sym_nonlocal_statement = 174, + sym_exec_statement = 175, + sym_type_alias_statement = 176, + sym_class_definition = 177, + sym_type_parameters = 178, + sym__type_bound = 179, + sym_typevar_parameter = 180, + sym_typevartuple_parameter = 181, + sym_paramspec_parameter = 182, + sym__type_parameter = 183, + sym__type_param_default = 184, + sym_parenthesized_list_splat = 185, + sym_argument_list = 186, + sym_decorated_definition = 187, + sym_decorator = 188, + sym_block = 189, + sym_expression_list = 190, + sym_dotted_name = 191, + sym__parameters = 192, + sym__patterns = 193, + sym_parameter = 194, + sym_pattern = 195, + sym_tuple_pattern = 196, + sym_list_pattern = 197, + sym_default_parameter = 198, + sym_typed_default_parameter = 199, + sym_list_splat_pattern = 200, + sym_dictionary_splat_pattern = 201, + sym__expression_within_for_in_clause = 202, + sym_expression = 203, + sym_primary_expression = 204, + sym_not_operator = 205, + sym_boolean_operator = 206, + sym_binary_operator = 207, + sym_unary_operator = 208, + sym_comparison_operator = 209, + sym_lambda = 210, + sym_lambda_within_for_in_clause = 211, + sym_assignment = 212, + sym_augmented_assignment = 213, + sym_pattern_list = 214, + sym__right_hand_side = 215, + sym_yield = 216, + sym_attribute = 217, + sym__index_expression = 218, + sym_index_expression_list = 219, + sym_subscript = 220, + sym_slice = 221, + sym_call = 222, + sym_typed_parameter = 223, + sym_type = 224, + sym_keyword_argument = 225, + sym_list = 226, + sym_set = 227, + sym_tuple = 228, + sym_dictionary = 229, + sym_pair = 230, + sym_list_comprehension = 231, + sym_dictionary_comprehension = 232, + sym_set_comprehension = 233, + sym_generator_expression = 234, + sym__comprehension_clauses = 235, + sym_parenthesized_expression = 236, + sym__collection_elements = 237, + sym_for_in_clause = 238, + sym_if_clause = 239, + sym_conditional_expression = 240, + sym_concatenated_string = 241, + sym_string = 242, + sym_concatenated_template_string = 243, + sym_template_string = 244, + sym_string_content = 245, + sym_interpolation = 246, + sym__f_expression = 247, + sym_format_specifier = 248, + sym_await = 249, + sym_positional_separator = 250, + sym_keyword_separator = 251, + aux_sym_module_repeat1 = 252, + aux_sym__simple_statements_repeat1 = 253, + aux_sym_import_prefix_repeat1 = 254, + aux_sym__import_list_repeat1 = 255, + aux_sym_print_statement_repeat1 = 256, + aux_sym_assert_statement_repeat1 = 257, + aux_sym_if_statement_repeat1 = 258, + aux_sym_try_statement_repeat1 = 259, + aux_sym_try_statement_repeat2 = 260, + aux_sym_exception_list_repeat1 = 261, + aux_sym_with_clause_repeat1 = 262, + aux_sym_cases_repeat1 = 263, + aux_sym_open_sequence_match_pattern_repeat1 = 264, + aux_sym_match_or_pattern_repeat1 = 265, + aux_sym_match_value_pattern_repeat1 = 266, + aux_sym_match_mapping_pattern_repeat1 = 267, + aux_sym_match_class_pattern_repeat1 = 268, + aux_sym_match_class_pattern_repeat2 = 269, + aux_sym_global_statement_repeat1 = 270, + aux_sym_type_parameters_repeat1 = 271, + aux_sym_argument_list_repeat1 = 272, + aux_sym_decorated_definition_repeat1 = 273, + aux_sym_expression_list_repeat1 = 274, + aux_sym__parameters_repeat1 = 275, + aux_sym__patterns_repeat1 = 276, + aux_sym_comparison_operator_repeat1 = 277, + aux_sym_index_expression_list_repeat1 = 278, + aux_sym_dictionary_repeat1 = 279, + aux_sym__comprehension_clauses_repeat1 = 280, + aux_sym__collection_elements_repeat1 = 281, + aux_sym_for_in_clause_repeat1 = 282, + aux_sym_concatenated_string_repeat1 = 283, + aux_sym_string_repeat1 = 284, + aux_sym_concatenated_template_string_repeat1 = 285, + aux_sym_string_content_repeat1 = 286, + aux_sym_format_specifier_repeat1 = 287, + alias_sym_format_expression = 288, + anon_alias_sym_isnot = 289, + anon_alias_sym_notin = 290, }; static const char * const ts_symbol_names[] = { @@ -444,6 +446,7 @@ static const char * const ts_symbol_names[] = { [sym_for_statement] = "for_statement", [sym_while_statement] = "while_statement", [sym_try_statement] = "try_statement", + [sym_exception_list] = "exception_list", [sym_except_clause] = "except_clause", [sym_except_group_clause] = "except_group_clause", [sym_finally_clause] = "finally_clause", @@ -568,6 +571,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_try_statement_repeat1] = "try_statement_repeat1", [aux_sym_try_statement_repeat2] = "try_statement_repeat2", + [aux_sym_exception_list_repeat1] = "exception_list_repeat1", [aux_sym_with_clause_repeat1] = "with_clause_repeat1", [aux_sym_cases_repeat1] = "cases_repeat1", [aux_sym_open_sequence_match_pattern_repeat1] = "open_sequence_match_pattern_repeat1", @@ -736,6 +740,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_for_statement] = sym_for_statement, [sym_while_statement] = sym_while_statement, [sym_try_statement] = sym_try_statement, + [sym_exception_list] = sym_exception_list, [sym_except_clause] = sym_except_clause, [sym_except_group_clause] = sym_except_group_clause, [sym_finally_clause] = sym_finally_clause, @@ -860,6 +865,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, [aux_sym_try_statement_repeat2] = aux_sym_try_statement_repeat2, + [aux_sym_exception_list_repeat1] = aux_sym_exception_list_repeat1, [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, [aux_sym_cases_repeat1] = aux_sym_cases_repeat1, [aux_sym_open_sequence_match_pattern_repeat1] = aux_sym_open_sequence_match_pattern_repeat1, @@ -1436,6 +1442,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_exception_list] = { + .visible = true, + .named = true, + }, [sym_except_clause] = { .visible = true, .named = true, @@ -1936,6 +1946,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_exception_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_with_clause_repeat1] = { .visible = false, .named = false, @@ -6181,12 +6195,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 50, .external_lex_state = 3}, [58] = {.lex_state = 50, .external_lex_state = 3}, [59] = {.lex_state = 50, .external_lex_state = 3}, - [60] = {.lex_state = 50, .external_lex_state = 2}, + [60] = {.lex_state = 50, .external_lex_state = 3}, [61] = {.lex_state = 50, .external_lex_state = 3}, - [62] = {.lex_state = 50, .external_lex_state = 2}, + [62] = {.lex_state = 50, .external_lex_state = 3}, [63] = {.lex_state = 50, .external_lex_state = 3}, - [64] = {.lex_state = 50, .external_lex_state = 3}, - [65] = {.lex_state = 50, .external_lex_state = 3}, + [64] = {.lex_state = 50, .external_lex_state = 2}, + [65] = {.lex_state = 50, .external_lex_state = 2}, [66] = {.lex_state = 50, .external_lex_state = 4}, [67] = {.lex_state = 50, .external_lex_state = 4}, [68] = {.lex_state = 50, .external_lex_state = 5}, @@ -6205,7 +6219,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 50, .external_lex_state = 5}, [82] = {.lex_state = 50, .external_lex_state = 5}, [83] = {.lex_state = 50, .external_lex_state = 5}, - [84] = {.lex_state = 50, .external_lex_state = 4}, + [84] = {.lex_state = 50, .external_lex_state = 5}, [85] = {.lex_state = 50, .external_lex_state = 5}, [86] = {.lex_state = 50, .external_lex_state = 5}, [87] = {.lex_state = 50, .external_lex_state = 5}, @@ -6232,7 +6246,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 50, .external_lex_state = 5}, [109] = {.lex_state = 50, .external_lex_state = 5}, [110] = {.lex_state = 50, .external_lex_state = 5}, - [111] = {.lex_state = 50, .external_lex_state = 5}, + [111] = {.lex_state = 50, .external_lex_state = 4}, [112] = {.lex_state = 50, .external_lex_state = 5}, [113] = {.lex_state = 50, .external_lex_state = 5}, [114] = {.lex_state = 50, .external_lex_state = 5}, @@ -6261,12 +6275,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 14, .external_lex_state = 2}, [138] = {.lex_state = 50, .external_lex_state = 2}, [139] = {.lex_state = 14, .external_lex_state = 2}, - [140] = {.lex_state = 14, .external_lex_state = 2}, - [141] = {.lex_state = 50, .external_lex_state = 4}, + [140] = {.lex_state = 50, .external_lex_state = 4}, + [141] = {.lex_state = 14, .external_lex_state = 2}, [142] = {.lex_state = 14, .external_lex_state = 2}, - [143] = {.lex_state = 50, .external_lex_state = 4}, + [143] = {.lex_state = 50, .external_lex_state = 2}, [144] = {.lex_state = 50, .external_lex_state = 2}, - [145] = {.lex_state = 50, .external_lex_state = 2}, + [145] = {.lex_state = 50, .external_lex_state = 4}, [146] = {.lex_state = 50, .external_lex_state = 2}, [147] = {.lex_state = 14, .external_lex_state = 2}, [148] = {.lex_state = 50, .external_lex_state = 2}, @@ -6275,21 +6289,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 50, .external_lex_state = 2}, [152] = {.lex_state = 14, .external_lex_state = 2}, [153] = {.lex_state = 50, .external_lex_state = 2}, - [154] = {.lex_state = 14, .external_lex_state = 2}, + [154] = {.lex_state = 50, .external_lex_state = 2}, [155] = {.lex_state = 50, .external_lex_state = 2}, [156] = {.lex_state = 50, .external_lex_state = 2}, [157] = {.lex_state = 50, .external_lex_state = 2}, [158] = {.lex_state = 14, .external_lex_state = 2}, [159] = {.lex_state = 50, .external_lex_state = 2}, - [160] = {.lex_state = 50, .external_lex_state = 2}, - [161] = {.lex_state = 14, .external_lex_state = 2}, - [162] = {.lex_state = 50, .external_lex_state = 2}, + [160] = {.lex_state = 14, .external_lex_state = 2}, + [161] = {.lex_state = 50, .external_lex_state = 2}, + [162] = {.lex_state = 14, .external_lex_state = 2}, [163] = {.lex_state = 14, .external_lex_state = 2}, [164] = {.lex_state = 50, .external_lex_state = 2}, [165] = {.lex_state = 14, .external_lex_state = 2}, [166] = {.lex_state = 50, .external_lex_state = 2}, [167] = {.lex_state = 50, .external_lex_state = 2}, - [168] = {.lex_state = 50, .external_lex_state = 4}, + [168] = {.lex_state = 50, .external_lex_state = 2}, [169] = {.lex_state = 50, .external_lex_state = 2}, [170] = {.lex_state = 50, .external_lex_state = 2}, [171] = {.lex_state = 50, .external_lex_state = 2}, @@ -6298,20 +6312,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [174] = {.lex_state = 50, .external_lex_state = 2}, [175] = {.lex_state = 50, .external_lex_state = 2}, [176] = {.lex_state = 50, .external_lex_state = 2}, - [177] = {.lex_state = 50, .external_lex_state = 2}, + [177] = {.lex_state = 50, .external_lex_state = 4}, [178] = {.lex_state = 50, .external_lex_state = 4}, [179] = {.lex_state = 50, .external_lex_state = 2}, [180] = {.lex_state = 50, .external_lex_state = 2}, [181] = {.lex_state = 50, .external_lex_state = 2}, [182] = {.lex_state = 50, .external_lex_state = 2}, - [183] = {.lex_state = 50, .external_lex_state = 4}, + [183] = {.lex_state = 50, .external_lex_state = 2}, [184] = {.lex_state = 50, .external_lex_state = 2}, - [185] = {.lex_state = 50, .external_lex_state = 4}, + [185] = {.lex_state = 50, .external_lex_state = 2}, [186] = {.lex_state = 50, .external_lex_state = 4}, [187] = {.lex_state = 50, .external_lex_state = 2}, - [188] = {.lex_state = 50, .external_lex_state = 2}, + [188] = {.lex_state = 50, .external_lex_state = 4}, [189] = {.lex_state = 50, .external_lex_state = 2}, - [190] = {.lex_state = 50, .external_lex_state = 2}, + [190] = {.lex_state = 50, .external_lex_state = 4}, [191] = {.lex_state = 50, .external_lex_state = 2}, [192] = {.lex_state = 50, .external_lex_state = 2}, [193] = {.lex_state = 50, .external_lex_state = 2}, @@ -6320,7 +6334,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.lex_state = 50, .external_lex_state = 2}, [197] = {.lex_state = 50, .external_lex_state = 2}, [198] = {.lex_state = 50, .external_lex_state = 2}, - [199] = {.lex_state = 50, .external_lex_state = 4}, + [199] = {.lex_state = 50, .external_lex_state = 2}, [200] = {.lex_state = 50, .external_lex_state = 2}, [201] = {.lex_state = 50, .external_lex_state = 2}, [202] = {.lex_state = 50, .external_lex_state = 2}, @@ -6331,24 +6345,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 50, .external_lex_state = 2}, [208] = {.lex_state = 50, .external_lex_state = 2}, [209] = {.lex_state = 50, .external_lex_state = 2}, - [210] = {.lex_state = 50, .external_lex_state = 2}, + [210] = {.lex_state = 50, .external_lex_state = 4}, [211] = {.lex_state = 50, .external_lex_state = 2}, [212] = {.lex_state = 50, .external_lex_state = 2}, - [213] = {.lex_state = 50, .external_lex_state = 2}, + [213] = {.lex_state = 14, .external_lex_state = 2}, [214] = {.lex_state = 14, .external_lex_state = 2}, - [215] = {.lex_state = 50, .external_lex_state = 2}, + [215] = {.lex_state = 14, .external_lex_state = 2}, [216] = {.lex_state = 14, .external_lex_state = 2}, - [217] = {.lex_state = 14, .external_lex_state = 2}, + [217] = {.lex_state = 50, .external_lex_state = 2}, [218] = {.lex_state = 14, .external_lex_state = 2}, - [219] = {.lex_state = 14, .external_lex_state = 2}, + [219] = {.lex_state = 50, .external_lex_state = 2}, [220] = {.lex_state = 14, .external_lex_state = 2}, [221] = {.lex_state = 50, .external_lex_state = 2}, [222] = {.lex_state = 50, .external_lex_state = 2}, [223] = {.lex_state = 50, .external_lex_state = 2}, [224] = {.lex_state = 50, .external_lex_state = 2}, [225] = {.lex_state = 50, .external_lex_state = 2}, - [226] = {.lex_state = 50, .external_lex_state = 2}, - [227] = {.lex_state = 14, .external_lex_state = 2}, + [226] = {.lex_state = 14, .external_lex_state = 2}, + [227] = {.lex_state = 50, .external_lex_state = 2}, [228] = {.lex_state = 50, .external_lex_state = 2}, [229] = {.lex_state = 50, .external_lex_state = 2}, [230] = {.lex_state = 50, .external_lex_state = 2}, @@ -6361,80 +6375,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 50, .external_lex_state = 2}, [238] = {.lex_state = 50, .external_lex_state = 2}, [239] = {.lex_state = 50, .external_lex_state = 2}, - [240] = {.lex_state = 50, .external_lex_state = 3}, + [240] = {.lex_state = 50, .external_lex_state = 2}, [241] = {.lex_state = 50, .external_lex_state = 2}, [242] = {.lex_state = 50, .external_lex_state = 2}, - [243] = {.lex_state = 16}, - [244] = {.lex_state = 50, .external_lex_state = 3}, - [245] = {.lex_state = 50, .external_lex_state = 2}, - [246] = {.lex_state = 16}, + [243] = {.lex_state = 14, .external_lex_state = 2}, + [244] = {.lex_state = 16}, + [245] = {.lex_state = 16}, + [246] = {.lex_state = 14, .external_lex_state = 2}, [247] = {.lex_state = 50, .external_lex_state = 2}, [248] = {.lex_state = 50, .external_lex_state = 2}, - [249] = {.lex_state = 14, .external_lex_state = 2}, - [250] = {.lex_state = 50, .external_lex_state = 2}, + [249] = {.lex_state = 50, .external_lex_state = 2}, + [250] = {.lex_state = 50, .external_lex_state = 3}, [251] = {.lex_state = 50, .external_lex_state = 2}, - [252] = {.lex_state = 50, .external_lex_state = 2}, + [252] = {.lex_state = 50, .external_lex_state = 3}, [253] = {.lex_state = 50, .external_lex_state = 2}, - [254] = {.lex_state = 14, .external_lex_state = 2}, - [255] = {.lex_state = 50, .external_lex_state = 2}, + [254] = {.lex_state = 50, .external_lex_state = 2}, + [255] = {.lex_state = 50, .external_lex_state = 3}, [256] = {.lex_state = 50, .external_lex_state = 2}, - [257] = {.lex_state = 50, .external_lex_state = 2}, + [257] = {.lex_state = 50, .external_lex_state = 3}, [258] = {.lex_state = 50, .external_lex_state = 2}, - [259] = {.lex_state = 50, .external_lex_state = 3}, - [260] = {.lex_state = 50, .external_lex_state = 3}, + [259] = {.lex_state = 50, .external_lex_state = 2}, + [260] = {.lex_state = 50, .external_lex_state = 2}, [261] = {.lex_state = 50, .external_lex_state = 2}, - [262] = {.lex_state = 50, .external_lex_state = 2}, - [263] = {.lex_state = 50, .external_lex_state = 2}, + [262] = {.lex_state = 14, .external_lex_state = 2}, + [263] = {.lex_state = 14, .external_lex_state = 2}, [264] = {.lex_state = 50, .external_lex_state = 2}, - [265] = {.lex_state = 50, .external_lex_state = 2}, + [265] = {.lex_state = 50, .external_lex_state = 4}, [266] = {.lex_state = 50, .external_lex_state = 2}, - [267] = {.lex_state = 50, .external_lex_state = 2}, + [267] = {.lex_state = 14, .external_lex_state = 2}, [268] = {.lex_state = 50, .external_lex_state = 2}, - [269] = {.lex_state = 50, .external_lex_state = 4}, + [269] = {.lex_state = 50, .external_lex_state = 2}, [270] = {.lex_state = 50, .external_lex_state = 2}, [271] = {.lex_state = 50, .external_lex_state = 4}, - [272] = {.lex_state = 50, .external_lex_state = 2}, + [272] = {.lex_state = 50, .external_lex_state = 4}, [273] = {.lex_state = 50, .external_lex_state = 2}, [274] = {.lex_state = 50, .external_lex_state = 2}, [275] = {.lex_state = 50, .external_lex_state = 2}, [276] = {.lex_state = 50, .external_lex_state = 2}, - [277] = {.lex_state = 50, .external_lex_state = 2}, - [278] = {.lex_state = 50, .external_lex_state = 4}, - [279] = {.lex_state = 50, .external_lex_state = 4}, + [277] = {.lex_state = 14, .external_lex_state = 2}, + [278] = {.lex_state = 50, .external_lex_state = 2}, + [279] = {.lex_state = 50, .external_lex_state = 2}, [280] = {.lex_state = 50, .external_lex_state = 2}, [281] = {.lex_state = 50, .external_lex_state = 2}, - [282] = {.lex_state = 14, .external_lex_state = 2}, - [283] = {.lex_state = 14, .external_lex_state = 2}, + [282] = {.lex_state = 50, .external_lex_state = 2}, + [283] = {.lex_state = 50, .external_lex_state = 2}, [284] = {.lex_state = 50, .external_lex_state = 2}, [285] = {.lex_state = 50, .external_lex_state = 2}, - [286] = {.lex_state = 50, .external_lex_state = 3}, - [287] = {.lex_state = 15, .external_lex_state = 6}, + [286] = {.lex_state = 50, .external_lex_state = 4}, + [287] = {.lex_state = 50, .external_lex_state = 2}, [288] = {.lex_state = 50, .external_lex_state = 2}, [289] = {.lex_state = 50, .external_lex_state = 2}, [290] = {.lex_state = 50, .external_lex_state = 2}, - [291] = {.lex_state = 50, .external_lex_state = 3}, - [292] = {.lex_state = 50, .external_lex_state = 2}, + [291] = {.lex_state = 50, .external_lex_state = 2}, + [292] = {.lex_state = 50, .external_lex_state = 3}, [293] = {.lex_state = 50, .external_lex_state = 3}, - [294] = {.lex_state = 50, .external_lex_state = 3}, - [295] = {.lex_state = 50, .external_lex_state = 3}, + [294] = {.lex_state = 50, .external_lex_state = 2}, + [295] = {.lex_state = 50, .external_lex_state = 2}, [296] = {.lex_state = 50, .external_lex_state = 3}, - [297] = {.lex_state = 50, .external_lex_state = 3}, - [298] = {.lex_state = 50, .external_lex_state = 3}, - [299] = {.lex_state = 50, .external_lex_state = 3}, - [300] = {.lex_state = 15, .external_lex_state = 6}, - [301] = {.lex_state = 50, .external_lex_state = 2}, + [297] = {.lex_state = 50, .external_lex_state = 2}, + [298] = {.lex_state = 15, .external_lex_state = 6}, + [299] = {.lex_state = 15, .external_lex_state = 6}, + [300] = {.lex_state = 50, .external_lex_state = 3}, + [301] = {.lex_state = 50, .external_lex_state = 3}, [302] = {.lex_state = 50, .external_lex_state = 2}, - [303] = {.lex_state = 50, .external_lex_state = 3}, - [304] = {.lex_state = 14, .external_lex_state = 2}, + [303] = {.lex_state = 50, .external_lex_state = 2}, + [304] = {.lex_state = 50, .external_lex_state = 3}, [305] = {.lex_state = 50, .external_lex_state = 2}, - [306] = {.lex_state = 50, .external_lex_state = 2}, - [307] = {.lex_state = 50, .external_lex_state = 2}, - [308] = {.lex_state = 50, .external_lex_state = 3}, + [306] = {.lex_state = 50, .external_lex_state = 3}, + [307] = {.lex_state = 50, .external_lex_state = 3}, + [308] = {.lex_state = 50, .external_lex_state = 2}, [309] = {.lex_state = 50, .external_lex_state = 2}, - [310] = {.lex_state = 50, .external_lex_state = 2}, - [311] = {.lex_state = 14, .external_lex_state = 2}, - [312] = {.lex_state = 50, .external_lex_state = 2}, - [313] = {.lex_state = 50, .external_lex_state = 2}, + [310] = {.lex_state = 50, .external_lex_state = 3}, + [311] = {.lex_state = 50, .external_lex_state = 2}, + [312] = {.lex_state = 50, .external_lex_state = 3}, + [313] = {.lex_state = 50, .external_lex_state = 3}, [314] = {.lex_state = 50, .external_lex_state = 2}, [315] = {.lex_state = 50, .external_lex_state = 2}, [316] = {.lex_state = 50, .external_lex_state = 2}, @@ -6474,7 +6488,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [350] = {.lex_state = 50, .external_lex_state = 2}, [351] = {.lex_state = 50, .external_lex_state = 2}, [352] = {.lex_state = 50, .external_lex_state = 2}, - [353] = {.lex_state = 15, .external_lex_state = 7}, + [353] = {.lex_state = 50, .external_lex_state = 2}, [354] = {.lex_state = 50, .external_lex_state = 2}, [355] = {.lex_state = 50, .external_lex_state = 2}, [356] = {.lex_state = 50, .external_lex_state = 2}, @@ -6490,7 +6504,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [366] = {.lex_state = 50, .external_lex_state = 2}, [367] = {.lex_state = 50, .external_lex_state = 2}, [368] = {.lex_state = 50, .external_lex_state = 2}, - [369] = {.lex_state = 50, .external_lex_state = 2}, + [369] = {.lex_state = 50, .external_lex_state = 3}, [370] = {.lex_state = 50, .external_lex_state = 2}, [371] = {.lex_state = 50, .external_lex_state = 2}, [372] = {.lex_state = 50, .external_lex_state = 2}, @@ -6502,156 +6516,156 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [378] = {.lex_state = 50, .external_lex_state = 2}, [379] = {.lex_state = 50, .external_lex_state = 2}, [380] = {.lex_state = 50, .external_lex_state = 2}, - [381] = {.lex_state = 50, .external_lex_state = 2}, + [381] = {.lex_state = 15, .external_lex_state = 7}, [382] = {.lex_state = 50, .external_lex_state = 2}, [383] = {.lex_state = 50, .external_lex_state = 2}, - [384] = {.lex_state = 50, .external_lex_state = 3}, + [384] = {.lex_state = 50, .external_lex_state = 2}, [385] = {.lex_state = 50, .external_lex_state = 2}, [386] = {.lex_state = 50, .external_lex_state = 2}, [387] = {.lex_state = 50, .external_lex_state = 2}, [388] = {.lex_state = 50, .external_lex_state = 2}, - [389] = {.lex_state = 50, .external_lex_state = 3}, - [390] = {.lex_state = 50, .external_lex_state = 2}, - [391] = {.lex_state = 50, .external_lex_state = 3}, + [389] = {.lex_state = 50, .external_lex_state = 2}, + [390] = {.lex_state = 50, .external_lex_state = 3}, + [391] = {.lex_state = 50, .external_lex_state = 2}, [392] = {.lex_state = 50, .external_lex_state = 3}, - [393] = {.lex_state = 50, .external_lex_state = 2}, + [393] = {.lex_state = 50, .external_lex_state = 3}, [394] = {.lex_state = 50, .external_lex_state = 2}, - [395] = {.lex_state = 50, .external_lex_state = 3}, + [395] = {.lex_state = 50, .external_lex_state = 2}, [396] = {.lex_state = 50, .external_lex_state = 2}, - [397] = {.lex_state = 50, .external_lex_state = 2}, - [398] = {.lex_state = 50, .external_lex_state = 3}, + [397] = {.lex_state = 15, .external_lex_state = 6}, + [398] = {.lex_state = 50, .external_lex_state = 2}, [399] = {.lex_state = 50, .external_lex_state = 2}, - [400] = {.lex_state = 50, .external_lex_state = 3}, + [400] = {.lex_state = 50, .external_lex_state = 2}, [401] = {.lex_state = 50, .external_lex_state = 3}, - [402] = {.lex_state = 50, .external_lex_state = 2}, - [403] = {.lex_state = 50, .external_lex_state = 2}, + [402] = {.lex_state = 50, .external_lex_state = 3}, + [403] = {.lex_state = 50, .external_lex_state = 3}, [404] = {.lex_state = 50, .external_lex_state = 3}, [405] = {.lex_state = 50, .external_lex_state = 2}, [406] = {.lex_state = 50, .external_lex_state = 3}, - [407] = {.lex_state = 50, .external_lex_state = 3}, - [408] = {.lex_state = 50, .external_lex_state = 2}, - [409] = {.lex_state = 15, .external_lex_state = 6}, - [410] = {.lex_state = 50, .external_lex_state = 2}, - [411] = {.lex_state = 50, .external_lex_state = 3}, - [412] = {.lex_state = 50, .external_lex_state = 2}, + [407] = {.lex_state = 50, .external_lex_state = 2}, + [408] = {.lex_state = 50, .external_lex_state = 3}, + [409] = {.lex_state = 50, .external_lex_state = 2}, + [410] = {.lex_state = 50, .external_lex_state = 3}, + [411] = {.lex_state = 50, .external_lex_state = 2}, + [412] = {.lex_state = 50, .external_lex_state = 3}, [413] = {.lex_state = 50, .external_lex_state = 3}, - [414] = {.lex_state = 15, .external_lex_state = 6}, + [414] = {.lex_state = 50, .external_lex_state = 2}, [415] = {.lex_state = 50, .external_lex_state = 2}, - [416] = {.lex_state = 16, .external_lex_state = 6}, - [417] = {.lex_state = 50, .external_lex_state = 3}, - [418] = {.lex_state = 50, .external_lex_state = 2}, - [419] = {.lex_state = 50, .external_lex_state = 2}, + [416] = {.lex_state = 15}, + [417] = {.lex_state = 50, .external_lex_state = 2}, + [418] = {.lex_state = 50, .external_lex_state = 3}, + [419] = {.lex_state = 50, .external_lex_state = 3}, [420] = {.lex_state = 50, .external_lex_state = 2}, - [421] = {.lex_state = 50, .external_lex_state = 2}, - [422] = {.lex_state = 50, .external_lex_state = 3}, + [421] = {.lex_state = 50, .external_lex_state = 3}, + [422] = {.lex_state = 16, .external_lex_state = 6}, [423] = {.lex_state = 50, .external_lex_state = 2}, [424] = {.lex_state = 50, .external_lex_state = 3}, [425] = {.lex_state = 50, .external_lex_state = 3}, - [426] = {.lex_state = 50, .external_lex_state = 3}, - [427] = {.lex_state = 50, .external_lex_state = 2}, + [426] = {.lex_state = 50, .external_lex_state = 2}, + [427] = {.lex_state = 50, .external_lex_state = 3}, [428] = {.lex_state = 50, .external_lex_state = 2}, - [429] = {.lex_state = 16, .external_lex_state = 6}, + [429] = {.lex_state = 15, .external_lex_state = 6}, [430] = {.lex_state = 50, .external_lex_state = 3}, - [431] = {.lex_state = 50, .external_lex_state = 2}, - [432] = {.lex_state = 50, .external_lex_state = 3}, + [431] = {.lex_state = 50, .external_lex_state = 3}, + [432] = {.lex_state = 50, .external_lex_state = 2}, [433] = {.lex_state = 50, .external_lex_state = 3}, - [434] = {.lex_state = 50, .external_lex_state = 3}, - [435] = {.lex_state = 15, .external_lex_state = 6}, - [436] = {.lex_state = 50, .external_lex_state = 2}, - [437] = {.lex_state = 15}, - [438] = {.lex_state = 15}, - [439] = {.lex_state = 50, .external_lex_state = 2}, - [440] = {.lex_state = 50, .external_lex_state = 3}, + [434] = {.lex_state = 50, .external_lex_state = 2}, + [435] = {.lex_state = 50, .external_lex_state = 2}, + [436] = {.lex_state = 50, .external_lex_state = 3}, + [437] = {.lex_state = 50, .external_lex_state = 2}, + [438] = {.lex_state = 50, .external_lex_state = 2}, + [439] = {.lex_state = 50, .external_lex_state = 3}, + [440] = {.lex_state = 15, .external_lex_state = 6}, [441] = {.lex_state = 50, .external_lex_state = 2}, - [442] = {.lex_state = 50, .external_lex_state = 3}, - [443] = {.lex_state = 50, .external_lex_state = 2}, + [442] = {.lex_state = 15}, + [443] = {.lex_state = 16, .external_lex_state = 6}, [444] = {.lex_state = 50, .external_lex_state = 2}, [445] = {.lex_state = 50, .external_lex_state = 2}, - [446] = {.lex_state = 50, .external_lex_state = 2}, + [446] = {.lex_state = 16, .external_lex_state = 6}, [447] = {.lex_state = 50, .external_lex_state = 2}, [448] = {.lex_state = 50, .external_lex_state = 2}, - [449] = {.lex_state = 50, .external_lex_state = 3}, + [449] = {.lex_state = 50, .external_lex_state = 2}, [450] = {.lex_state = 50, .external_lex_state = 2}, - [451] = {.lex_state = 50, .external_lex_state = 3}, - [452] = {.lex_state = 50, .external_lex_state = 2}, + [451] = {.lex_state = 16, .external_lex_state = 6}, + [452] = {.lex_state = 16}, [453] = {.lex_state = 50, .external_lex_state = 2}, - [454] = {.lex_state = 16, .external_lex_state = 6}, - [455] = {.lex_state = 16}, - [456] = {.lex_state = 16, .external_lex_state = 6}, - [457] = {.lex_state = 50, .external_lex_state = 3}, + [454] = {.lex_state = 50, .external_lex_state = 2}, + [455] = {.lex_state = 50, .external_lex_state = 3}, + [456] = {.lex_state = 50, .external_lex_state = 2}, + [457] = {.lex_state = 50, .external_lex_state = 2}, [458] = {.lex_state = 50, .external_lex_state = 2}, - [459] = {.lex_state = 50, .external_lex_state = 3}, - [460] = {.lex_state = 50, .external_lex_state = 2}, + [459] = {.lex_state = 16, .external_lex_state = 6}, + [460] = {.lex_state = 50, .external_lex_state = 3}, [461] = {.lex_state = 50, .external_lex_state = 2}, [462] = {.lex_state = 50, .external_lex_state = 3}, - [463] = {.lex_state = 16, .external_lex_state = 6}, - [464] = {.lex_state = 50, .external_lex_state = 2}, - [465] = {.lex_state = 50, .external_lex_state = 3}, - [466] = {.lex_state = 50, .external_lex_state = 2}, - [467] = {.lex_state = 50, .external_lex_state = 3}, - [468] = {.lex_state = 50, .external_lex_state = 2}, - [469] = {.lex_state = 50, .external_lex_state = 3}, + [463] = {.lex_state = 50, .external_lex_state = 3}, + [464] = {.lex_state = 50, .external_lex_state = 3}, + [465] = {.lex_state = 50, .external_lex_state = 2}, + [466] = {.lex_state = 50, .external_lex_state = 3}, + [467] = {.lex_state = 50, .external_lex_state = 2}, + [468] = {.lex_state = 50, .external_lex_state = 3}, + [469] = {.lex_state = 50, .external_lex_state = 2}, [470] = {.lex_state = 50, .external_lex_state = 3}, - [471] = {.lex_state = 50, .external_lex_state = 2}, - [472] = {.lex_state = 50, .external_lex_state = 3}, + [471] = {.lex_state = 50, .external_lex_state = 3}, + [472] = {.lex_state = 50, .external_lex_state = 2}, [473] = {.lex_state = 50, .external_lex_state = 3}, - [474] = {.lex_state = 50, .external_lex_state = 2}, + [474] = {.lex_state = 50, .external_lex_state = 3}, [475] = {.lex_state = 50, .external_lex_state = 3}, - [476] = {.lex_state = 50, .external_lex_state = 3}, - [477] = {.lex_state = 50, .external_lex_state = 2}, - [478] = {.lex_state = 50, .external_lex_state = 2}, - [479] = {.lex_state = 50, .external_lex_state = 2}, - [480] = {.lex_state = 50, .external_lex_state = 2}, - [481] = {.lex_state = 50, .external_lex_state = 2}, - [482] = {.lex_state = 50, .external_lex_state = 3}, - [483] = {.lex_state = 50, .external_lex_state = 3}, - [484] = {.lex_state = 50, .external_lex_state = 3}, - [485] = {.lex_state = 50, .external_lex_state = 3}, + [476] = {.lex_state = 50, .external_lex_state = 2}, + [477] = {.lex_state = 50, .external_lex_state = 3}, + [478] = {.lex_state = 50, .external_lex_state = 3}, + [479] = {.lex_state = 50, .external_lex_state = 3}, + [480] = {.lex_state = 50, .external_lex_state = 3}, + [481] = {.lex_state = 50, .external_lex_state = 3}, + [482] = {.lex_state = 50, .external_lex_state = 2}, + [483] = {.lex_state = 50, .external_lex_state = 2}, + [484] = {.lex_state = 50, .external_lex_state = 2}, + [485] = {.lex_state = 50, .external_lex_state = 2}, [486] = {.lex_state = 50, .external_lex_state = 3}, - [487] = {.lex_state = 50, .external_lex_state = 3}, + [487] = {.lex_state = 50, .external_lex_state = 2}, [488] = {.lex_state = 50, .external_lex_state = 3}, [489] = {.lex_state = 50, .external_lex_state = 3}, - [490] = {.lex_state = 50, .external_lex_state = 3}, - [491] = {.lex_state = 50, .external_lex_state = 3}, + [490] = {.lex_state = 50, .external_lex_state = 2}, + [491] = {.lex_state = 50, .external_lex_state = 2}, [492] = {.lex_state = 50, .external_lex_state = 3}, [493] = {.lex_state = 50, .external_lex_state = 3}, [494] = {.lex_state = 50, .external_lex_state = 3}, [495] = {.lex_state = 50, .external_lex_state = 3}, [496] = {.lex_state = 50, .external_lex_state = 3}, - [497] = {.lex_state = 50, .external_lex_state = 3}, - [498] = {.lex_state = 50, .external_lex_state = 2}, - [499] = {.lex_state = 50, .external_lex_state = 2}, - [500] = {.lex_state = 50, .external_lex_state = 2}, + [497] = {.lex_state = 50, .external_lex_state = 2}, + [498] = {.lex_state = 50, .external_lex_state = 3}, + [499] = {.lex_state = 50, .external_lex_state = 3}, + [500] = {.lex_state = 50, .external_lex_state = 3}, [501] = {.lex_state = 50, .external_lex_state = 3}, [502] = {.lex_state = 50, .external_lex_state = 2}, - [503] = {.lex_state = 50, .external_lex_state = 2}, + [503] = {.lex_state = 50, .external_lex_state = 3}, [504] = {.lex_state = 50, .external_lex_state = 2}, [505] = {.lex_state = 50, .external_lex_state = 3}, [506] = {.lex_state = 50, .external_lex_state = 2}, - [507] = {.lex_state = 50, .external_lex_state = 3}, + [507] = {.lex_state = 50, .external_lex_state = 2}, [508] = {.lex_state = 50, .external_lex_state = 2}, - [509] = {.lex_state = 50, .external_lex_state = 2}, - [510] = {.lex_state = 50, .external_lex_state = 3}, + [509] = {.lex_state = 50, .external_lex_state = 3}, + [510] = {.lex_state = 50, .external_lex_state = 2}, [511] = {.lex_state = 50, .external_lex_state = 3}, [512] = {.lex_state = 50, .external_lex_state = 3}, - [513] = {.lex_state = 50, .external_lex_state = 3}, - [514] = {.lex_state = 50, .external_lex_state = 2}, + [513] = {.lex_state = 50, .external_lex_state = 2}, + [514] = {.lex_state = 50, .external_lex_state = 3}, [515] = {.lex_state = 50, .external_lex_state = 2}, - [516] = {.lex_state = 50, .external_lex_state = 2}, - [517] = {.lex_state = 50, .external_lex_state = 2}, - [518] = {.lex_state = 50, .external_lex_state = 3}, - [519] = {.lex_state = 50, .external_lex_state = 3}, - [520] = {.lex_state = 50, .external_lex_state = 3}, + [516] = {.lex_state = 50, .external_lex_state = 3}, + [517] = {.lex_state = 50, .external_lex_state = 3}, + [518] = {.lex_state = 50, .external_lex_state = 2}, + [519] = {.lex_state = 50, .external_lex_state = 2}, + [520] = {.lex_state = 50, .external_lex_state = 2}, [521] = {.lex_state = 50, .external_lex_state = 2}, - [522] = {.lex_state = 50, .external_lex_state = 2}, - [523] = {.lex_state = 50, .external_lex_state = 3}, - [524] = {.lex_state = 50, .external_lex_state = 3}, - [525] = {.lex_state = 50, .external_lex_state = 2}, - [526] = {.lex_state = 50, .external_lex_state = 2}, + [522] = {.lex_state = 50, .external_lex_state = 3}, + [523] = {.lex_state = 50, .external_lex_state = 2}, + [524] = {.lex_state = 50, .external_lex_state = 2}, + [525] = {.lex_state = 50, .external_lex_state = 3}, + [526] = {.lex_state = 50, .external_lex_state = 3}, [527] = {.lex_state = 50, .external_lex_state = 2}, [528] = {.lex_state = 50, .external_lex_state = 2}, [529] = {.lex_state = 50, .external_lex_state = 3}, - [530] = {.lex_state = 50, .external_lex_state = 2}, + [530] = {.lex_state = 50, .external_lex_state = 3}, [531] = {.lex_state = 50, .external_lex_state = 2}, [532] = {.lex_state = 50, .external_lex_state = 2}, [533] = {.lex_state = 50, .external_lex_state = 2}, @@ -6668,47 +6682,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [544] = {.lex_state = 50, .external_lex_state = 2}, [545] = {.lex_state = 50, .external_lex_state = 2}, [546] = {.lex_state = 50, .external_lex_state = 2}, - [547] = {.lex_state = 50, .external_lex_state = 3}, - [548] = {.lex_state = 50, .external_lex_state = 2}, - [549] = {.lex_state = 50, .external_lex_state = 3}, - [550] = {.lex_state = 50, .external_lex_state = 2}, - [551] = {.lex_state = 50, .external_lex_state = 2}, + [547] = {.lex_state = 50, .external_lex_state = 2}, + [548] = {.lex_state = 50, .external_lex_state = 3}, + [549] = {.lex_state = 50, .external_lex_state = 2}, + [550] = {.lex_state = 50, .external_lex_state = 3}, + [551] = {.lex_state = 50, .external_lex_state = 3}, [552] = {.lex_state = 50, .external_lex_state = 2}, [553] = {.lex_state = 50, .external_lex_state = 3}, [554] = {.lex_state = 50, .external_lex_state = 2}, [555] = {.lex_state = 50, .external_lex_state = 3}, - [556] = {.lex_state = 50, .external_lex_state = 3}, + [556] = {.lex_state = 50, .external_lex_state = 2}, [557] = {.lex_state = 50, .external_lex_state = 2}, [558] = {.lex_state = 50, .external_lex_state = 2}, [559] = {.lex_state = 50, .external_lex_state = 3}, - [560] = {.lex_state = 50, .external_lex_state = 2}, - [561] = {.lex_state = 50, .external_lex_state = 2}, + [560] = {.lex_state = 50, .external_lex_state = 3}, + [561] = {.lex_state = 50, .external_lex_state = 3}, [562] = {.lex_state = 50, .external_lex_state = 2}, - [563] = {.lex_state = 50, .external_lex_state = 3}, - [564] = {.lex_state = 50, .external_lex_state = 3}, + [563] = {.lex_state = 50, .external_lex_state = 2}, + [564] = {.lex_state = 50, .external_lex_state = 2}, [565] = {.lex_state = 50, .external_lex_state = 2}, [566] = {.lex_state = 50, .external_lex_state = 2}, - [567] = {.lex_state = 14, .external_lex_state = 2}, - [568] = {.lex_state = 16, .external_lex_state = 8}, - [569] = {.lex_state = 16, .external_lex_state = 9}, - [570] = {.lex_state = 16, .external_lex_state = 8}, + [567] = {.lex_state = 50, .external_lex_state = 2}, + [568] = {.lex_state = 14, .external_lex_state = 2}, + [569] = {.lex_state = 16, .external_lex_state = 8}, + [570] = {.lex_state = 16, .external_lex_state = 9}, [571] = {.lex_state = 16, .external_lex_state = 9}, - [572] = {.lex_state = 16, .external_lex_state = 8}, - [573] = {.lex_state = 16, .external_lex_state = 9}, - [574] = {.lex_state = 50, .external_lex_state = 2}, + [572] = {.lex_state = 16, .external_lex_state = 9}, + [573] = {.lex_state = 16, .external_lex_state = 8}, + [574] = {.lex_state = 16, .external_lex_state = 8}, [575] = {.lex_state = 50, .external_lex_state = 2}, [576] = {.lex_state = 50, .external_lex_state = 2}, [577] = {.lex_state = 50, .external_lex_state = 2}, [578] = {.lex_state = 50, .external_lex_state = 2}, [579] = {.lex_state = 50, .external_lex_state = 2}, - [580] = {.lex_state = 50, .external_lex_state = 2}, - [581] = {.lex_state = 16, .external_lex_state = 8}, - [582] = {.lex_state = 16, .external_lex_state = 9}, + [580] = {.lex_state = 16, .external_lex_state = 8}, + [581] = {.lex_state = 16, .external_lex_state = 9}, + [582] = {.lex_state = 50, .external_lex_state = 2}, [583] = {.lex_state = 50, .external_lex_state = 2}, - [584] = {.lex_state = 50, .external_lex_state = 2}, + [584] = {.lex_state = 16, .external_lex_state = 8}, [585] = {.lex_state = 50, .external_lex_state = 2}, [586] = {.lex_state = 50, .external_lex_state = 2}, - [587] = {.lex_state = 16, .external_lex_state = 9}, + [587] = {.lex_state = 50, .external_lex_state = 2}, [588] = {.lex_state = 50, .external_lex_state = 2}, [589] = {.lex_state = 50, .external_lex_state = 2}, [590] = {.lex_state = 50, .external_lex_state = 2}, @@ -6723,7 +6737,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [599] = {.lex_state = 50, .external_lex_state = 2}, [600] = {.lex_state = 50, .external_lex_state = 2}, [601] = {.lex_state = 50, .external_lex_state = 2}, - [602] = {.lex_state = 16, .external_lex_state = 8}, + [602] = {.lex_state = 50, .external_lex_state = 2}, [603] = {.lex_state = 50, .external_lex_state = 2}, [604] = {.lex_state = 50, .external_lex_state = 2}, [605] = {.lex_state = 50, .external_lex_state = 2}, @@ -6745,11 +6759,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [621] = {.lex_state = 50, .external_lex_state = 2}, [622] = {.lex_state = 50, .external_lex_state = 2}, [623] = {.lex_state = 50, .external_lex_state = 2}, - [624] = {.lex_state = 50, .external_lex_state = 2}, + [624] = {.lex_state = 16, .external_lex_state = 9}, [625] = {.lex_state = 50, .external_lex_state = 2}, [626] = {.lex_state = 50, .external_lex_state = 2}, [627] = {.lex_state = 50, .external_lex_state = 2}, - [628] = {.lex_state = 16}, + [628] = {.lex_state = 50, .external_lex_state = 2}, [629] = {.lex_state = 16}, [630] = {.lex_state = 16}, [631] = {.lex_state = 16}, @@ -6806,147 +6820,147 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [682] = {.lex_state = 16}, [683] = {.lex_state = 16}, [684] = {.lex_state = 16}, - [685] = {.lex_state = 15}, + [685] = {.lex_state = 16}, [686] = {.lex_state = 16, .external_lex_state = 9}, - [687] = {.lex_state = 16}, - [688] = {.lex_state = 15}, - [689] = {.lex_state = 16, .external_lex_state = 8}, - [690] = {.lex_state = 15}, - [691] = {.lex_state = 16, .external_lex_state = 9}, - [692] = {.lex_state = 16}, - [693] = {.lex_state = 16, .external_lex_state = 8}, + [687] = {.lex_state = 15}, + [688] = {.lex_state = 16, .external_lex_state = 8}, + [689] = {.lex_state = 16, .external_lex_state = 9}, + [690] = {.lex_state = 16}, + [691] = {.lex_state = 16, .external_lex_state = 8}, + [692] = {.lex_state = 15}, + [693] = {.lex_state = 15}, [694] = {.lex_state = 15}, - [695] = {.lex_state = 16, .external_lex_state = 10}, - [696] = {.lex_state = 16, .external_lex_state = 7}, - [697] = {.lex_state = 16, .external_lex_state = 6}, + [695] = {.lex_state = 16}, + [696] = {.lex_state = 16, .external_lex_state = 10}, + [697] = {.lex_state = 16}, [698] = {.lex_state = 16, .external_lex_state = 7}, - [699] = {.lex_state = 16, .external_lex_state = 10}, - [700] = {.lex_state = 16}, + [699] = {.lex_state = 16, .external_lex_state = 7}, + [700] = {.lex_state = 16, .external_lex_state = 10}, [701] = {.lex_state = 16, .external_lex_state = 10}, - [702] = {.lex_state = 16, .external_lex_state = 7}, + [702] = {.lex_state = 16, .external_lex_state = 6}, [703] = {.lex_state = 16}, - [704] = {.lex_state = 16, .external_lex_state = 8}, + [704] = {.lex_state = 16, .external_lex_state = 7}, [705] = {.lex_state = 16, .external_lex_state = 6}, - [706] = {.lex_state = 16, .external_lex_state = 9}, - [707] = {.lex_state = 16, .external_lex_state = 8}, + [706] = {.lex_state = 16, .external_lex_state = 6}, + [707] = {.lex_state = 16, .external_lex_state = 6}, [708] = {.lex_state = 16, .external_lex_state = 6}, - [709] = {.lex_state = 16, .external_lex_state = 6}, + [709] = {.lex_state = 16, .external_lex_state = 8}, [710] = {.lex_state = 16, .external_lex_state = 6}, [711] = {.lex_state = 16, .external_lex_state = 6}, [712] = {.lex_state = 16, .external_lex_state = 6}, [713] = {.lex_state = 16, .external_lex_state = 6}, [714] = {.lex_state = 16, .external_lex_state = 6}, - [715] = {.lex_state = 16, .external_lex_state = 6}, + [715] = {.lex_state = 16, .external_lex_state = 9}, [716] = {.lex_state = 16, .external_lex_state = 8}, [717] = {.lex_state = 16, .external_lex_state = 6}, - [718] = {.lex_state = 16, .external_lex_state = 9}, + [718] = {.lex_state = 16}, [719] = {.lex_state = 16, .external_lex_state = 9}, - [720] = {.lex_state = 16, .external_lex_state = 6}, + [720] = {.lex_state = 16, .external_lex_state = 8}, [721] = {.lex_state = 16, .external_lex_state = 6}, - [722] = {.lex_state = 16}, - [723] = {.lex_state = 16}, + [722] = {.lex_state = 16, .external_lex_state = 9}, + [723] = {.lex_state = 16, .external_lex_state = 6}, [724] = {.lex_state = 16}, - [725] = {.lex_state = 50, .external_lex_state = 2}, - [726] = {.lex_state = 16, .external_lex_state = 7}, - [727] = {.lex_state = 15}, - [728] = {.lex_state = 16}, - [729] = {.lex_state = 16}, - [730] = {.lex_state = 16, .external_lex_state = 7}, - [731] = {.lex_state = 14, .external_lex_state = 2}, + [725] = {.lex_state = 16, .external_lex_state = 10}, + [726] = {.lex_state = 16, .external_lex_state = 10}, + [727] = {.lex_state = 15, .external_lex_state = 6}, + [728] = {.lex_state = 50, .external_lex_state = 2}, + [729] = {.lex_state = 15}, + [730] = {.lex_state = 15, .external_lex_state = 6}, + [731] = {.lex_state = 16}, [732] = {.lex_state = 16}, - [733] = {.lex_state = 15}, - [734] = {.lex_state = 16, .external_lex_state = 10}, - [735] = {.lex_state = 16, .external_lex_state = 10}, - [736] = {.lex_state = 15}, - [737] = {.lex_state = 15}, + [733] = {.lex_state = 50, .external_lex_state = 2}, + [734] = {.lex_state = 16}, + [735] = {.lex_state = 16}, + [736] = {.lex_state = 16}, + [737] = {.lex_state = 14, .external_lex_state = 2}, [738] = {.lex_state = 16}, [739] = {.lex_state = 16}, [740] = {.lex_state = 16}, - [741] = {.lex_state = 15, .external_lex_state = 6}, + [741] = {.lex_state = 16}, [742] = {.lex_state = 16}, - [743] = {.lex_state = 15, .external_lex_state = 6}, + [743] = {.lex_state = 16, .external_lex_state = 7}, [744] = {.lex_state = 16}, [745] = {.lex_state = 16}, - [746] = {.lex_state = 50, .external_lex_state = 2}, - [747] = {.lex_state = 16}, + [746] = {.lex_state = 16}, + [747] = {.lex_state = 15}, [748] = {.lex_state = 16}, - [749] = {.lex_state = 16}, - [750] = {.lex_state = 16}, + [749] = {.lex_state = 15}, + [750] = {.lex_state = 14, .external_lex_state = 2}, [751] = {.lex_state = 16}, [752] = {.lex_state = 16}, - [753] = {.lex_state = 14, .external_lex_state = 2}, - [754] = {.lex_state = 16}, - [755] = {.lex_state = 16, .external_lex_state = 6}, - [756] = {.lex_state = 16, .external_lex_state = 6}, + [753] = {.lex_state = 16}, + [754] = {.lex_state = 15}, + [755] = {.lex_state = 16, .external_lex_state = 7}, + [756] = {.lex_state = 16}, [757] = {.lex_state = 16, .external_lex_state = 6}, [758] = {.lex_state = 16, .external_lex_state = 6}, [759] = {.lex_state = 16, .external_lex_state = 6}, [760] = {.lex_state = 16, .external_lex_state = 6}, [761] = {.lex_state = 16, .external_lex_state = 6}, - [762] = {.lex_state = 16, .external_lex_state = 6}, + [762] = {.lex_state = 15}, [763] = {.lex_state = 16, .external_lex_state = 6}, - [764] = {.lex_state = 15}, - [765] = {.lex_state = 16, .external_lex_state = 6}, - [766] = {.lex_state = 16, .external_lex_state = 6}, + [764] = {.lex_state = 16, .external_lex_state = 6}, + [765] = {.lex_state = 50, .external_lex_state = 2}, + [766] = {.lex_state = 50, .external_lex_state = 2}, [767] = {.lex_state = 16, .external_lex_state = 6}, [768] = {.lex_state = 50, .external_lex_state = 2}, - [769] = {.lex_state = 16}, - [770] = {.lex_state = 50, .external_lex_state = 2}, - [771] = {.lex_state = 16, .external_lex_state = 6}, + [769] = {.lex_state = 16, .external_lex_state = 6}, + [770] = {.lex_state = 16}, + [771] = {.lex_state = 50, .external_lex_state = 2}, [772] = {.lex_state = 16, .external_lex_state = 6}, - [773] = {.lex_state = 16, .external_lex_state = 6}, - [774] = {.lex_state = 16, .external_lex_state = 6}, + [773] = {.lex_state = 50, .external_lex_state = 2}, + [774] = {.lex_state = 50, .external_lex_state = 2}, [775] = {.lex_state = 16, .external_lex_state = 6}, [776] = {.lex_state = 16, .external_lex_state = 6}, - [777] = {.lex_state = 16}, - [778] = {.lex_state = 16, .external_lex_state = 6}, + [777] = {.lex_state = 16, .external_lex_state = 6}, + [778] = {.lex_state = 15}, [779] = {.lex_state = 16, .external_lex_state = 6}, - [780] = {.lex_state = 15}, + [780] = {.lex_state = 16, .external_lex_state = 6}, [781] = {.lex_state = 16, .external_lex_state = 6}, [782] = {.lex_state = 16, .external_lex_state = 6}, - [783] = {.lex_state = 50, .external_lex_state = 2}, + [783] = {.lex_state = 16, .external_lex_state = 6}, [784] = {.lex_state = 16, .external_lex_state = 6}, [785] = {.lex_state = 16, .external_lex_state = 6}, [786] = {.lex_state = 16, .external_lex_state = 6}, [787] = {.lex_state = 16, .external_lex_state = 6}, - [788] = {.lex_state = 50, .external_lex_state = 2}, - [789] = {.lex_state = 50, .external_lex_state = 2}, + [788] = {.lex_state = 16, .external_lex_state = 6}, + [789] = {.lex_state = 16, .external_lex_state = 6}, [790] = {.lex_state = 16, .external_lex_state = 6}, - [791] = {.lex_state = 16}, + [791] = {.lex_state = 16, .external_lex_state = 6}, [792] = {.lex_state = 16, .external_lex_state = 6}, [793] = {.lex_state = 16, .external_lex_state = 6}, [794] = {.lex_state = 16, .external_lex_state = 6}, [795] = {.lex_state = 16, .external_lex_state = 6}, - [796] = {.lex_state = 16, .external_lex_state = 6}, + [796] = {.lex_state = 16}, [797] = {.lex_state = 16, .external_lex_state = 6}, - [798] = {.lex_state = 50, .external_lex_state = 2}, - [799] = {.lex_state = 16}, - [800] = {.lex_state = 50, .external_lex_state = 2}, - [801] = {.lex_state = 15}, - [802] = {.lex_state = 50, .external_lex_state = 2}, + [798] = {.lex_state = 16, .external_lex_state = 6}, + [799] = {.lex_state = 16, .external_lex_state = 6}, + [800] = {.lex_state = 16}, + [801] = {.lex_state = 16}, + [802] = {.lex_state = 16}, [803] = {.lex_state = 15}, - [804] = {.lex_state = 16}, + [804] = {.lex_state = 50, .external_lex_state = 2}, [805] = {.lex_state = 16}, [806] = {.lex_state = 16}, - [807] = {.lex_state = 16}, + [807] = {.lex_state = 50, .external_lex_state = 2}, [808] = {.lex_state = 16}, [809] = {.lex_state = 16}, - [810] = {.lex_state = 16}, + [810] = {.lex_state = 50, .external_lex_state = 2}, [811] = {.lex_state = 16}, [812] = {.lex_state = 16}, [813] = {.lex_state = 16}, [814] = {.lex_state = 16}, [815] = {.lex_state = 16}, [816] = {.lex_state = 16}, - [817] = {.lex_state = 50, .external_lex_state = 2}, + [817] = {.lex_state = 16}, [818] = {.lex_state = 16}, [819] = {.lex_state = 16}, [820] = {.lex_state = 16}, [821] = {.lex_state = 16}, [822] = {.lex_state = 16}, - [823] = {.lex_state = 16}, + [823] = {.lex_state = 50, .external_lex_state = 2}, [824] = {.lex_state = 16}, - [825] = {.lex_state = 50, .external_lex_state = 2}, + [825] = {.lex_state = 15}, [826] = {.lex_state = 16}, [827] = {.lex_state = 16}, [828] = {.lex_state = 16}, @@ -6959,103 +6973,103 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [835] = {.lex_state = 16}, [836] = {.lex_state = 16}, [837] = {.lex_state = 16}, - [838] = {.lex_state = 50, .external_lex_state = 2}, + [838] = {.lex_state = 16}, [839] = {.lex_state = 50, .external_lex_state = 2}, [840] = {.lex_state = 50, .external_lex_state = 2}, [841] = {.lex_state = 50, .external_lex_state = 2}, [842] = {.lex_state = 50, .external_lex_state = 2}, - [843] = {.lex_state = 14}, + [843] = {.lex_state = 50, .external_lex_state = 2}, [844] = {.lex_state = 14}, [845] = {.lex_state = 14}, [846] = {.lex_state = 14}, [847] = {.lex_state = 14}, - [848] = {.lex_state = 50, .external_lex_state = 2}, + [848] = {.lex_state = 14}, [849] = {.lex_state = 14}, - [850] = {.lex_state = 50, .external_lex_state = 2}, + [850] = {.lex_state = 0, .external_lex_state = 6}, [851] = {.lex_state = 50, .external_lex_state = 2}, - [852] = {.lex_state = 0, .external_lex_state = 6}, + [852] = {.lex_state = 16}, [853] = {.lex_state = 14}, [854] = {.lex_state = 14}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 16}, - [857] = {.lex_state = 0, .external_lex_state = 6}, - [858] = {.lex_state = 16}, - [859] = {.lex_state = 14}, + [855] = {.lex_state = 50, .external_lex_state = 2}, + [856] = {.lex_state = 0, .external_lex_state = 6}, + [857] = {.lex_state = 14}, + [858] = {.lex_state = 50, .external_lex_state = 2}, + [859] = {.lex_state = 16}, [860] = {.lex_state = 14}, - [861] = {.lex_state = 16}, - [862] = {.lex_state = 14}, + [861] = {.lex_state = 14}, + [862] = {.lex_state = 16}, [863] = {.lex_state = 14}, [864] = {.lex_state = 14}, [865] = {.lex_state = 14}, [866] = {.lex_state = 14}, [867] = {.lex_state = 14}, [868] = {.lex_state = 14}, - [869] = {.lex_state = 50, .external_lex_state = 2}, - [870] = {.lex_state = 0}, + [869] = {.lex_state = 14}, + [870] = {.lex_state = 50, .external_lex_state = 2}, [871] = {.lex_state = 0}, - [872] = {.lex_state = 14}, + [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, [874] = {.lex_state = 14}, [875] = {.lex_state = 14}, [876] = {.lex_state = 14}, [877] = {.lex_state = 0}, - [878] = {.lex_state = 14}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 16}, - [881] = {.lex_state = 14}, - [882] = {.lex_state = 14}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 16}, + [878] = {.lex_state = 0}, + [879] = {.lex_state = 14}, + [880] = {.lex_state = 14}, + [881] = {.lex_state = 16}, + [882] = {.lex_state = 16}, + [883] = {.lex_state = 14}, + [884] = {.lex_state = 14}, [885] = {.lex_state = 14}, - [886] = {.lex_state = 16}, + [886] = {.lex_state = 14}, [887] = {.lex_state = 14}, [888] = {.lex_state = 14}, [889] = {.lex_state = 14}, [890] = {.lex_state = 14}, - [891] = {.lex_state = 14}, - [892] = {.lex_state = 14}, + [891] = {.lex_state = 14, .external_lex_state = 9}, + [892] = {.lex_state = 14, .external_lex_state = 8}, [893] = {.lex_state = 14}, - [894] = {.lex_state = 14}, + [894] = {.lex_state = 16}, [895] = {.lex_state = 14}, [896] = {.lex_state = 14}, - [897] = {.lex_state = 14, .external_lex_state = 8}, - [898] = {.lex_state = 14, .external_lex_state = 9}, + [897] = {.lex_state = 14}, + [898] = {.lex_state = 14}, [899] = {.lex_state = 14}, [900] = {.lex_state = 14}, [901] = {.lex_state = 14}, - [902] = {.lex_state = 14}, - [903] = {.lex_state = 16}, + [902] = {.lex_state = 16}, + [903] = {.lex_state = 0}, [904] = {.lex_state = 14}, - [905] = {.lex_state = 18, .external_lex_state = 11}, + [905] = {.lex_state = 14}, [906] = {.lex_state = 18, .external_lex_state = 11}, [907] = {.lex_state = 18, .external_lex_state = 11}, - [908] = {.lex_state = 14}, - [909] = {.lex_state = 18, .external_lex_state = 11}, - [910] = {.lex_state = 0}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 14}, [911] = {.lex_state = 0}, [912] = {.lex_state = 0}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 18, .external_lex_state = 11}, - [918] = {.lex_state = 14}, + [913] = {.lex_state = 18, .external_lex_state = 11}, + [914] = {.lex_state = 18, .external_lex_state = 11}, + [915] = {.lex_state = 18, .external_lex_state = 11}, + [916] = {.lex_state = 18, .external_lex_state = 11}, + [917] = {.lex_state = 14}, + [918] = {.lex_state = 18, .external_lex_state = 11}, [919] = {.lex_state = 18, .external_lex_state = 11}, [920] = {.lex_state = 18, .external_lex_state = 11}, - [921] = {.lex_state = 14}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 18, .external_lex_state = 11}, [923] = {.lex_state = 18, .external_lex_state = 11}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 18, .external_lex_state = 11}, + [924] = {.lex_state = 14}, + [925] = {.lex_state = 18, .external_lex_state = 11}, + [926] = {.lex_state = 18, .external_lex_state = 11}, + [927] = {.lex_state = 14}, [928] = {.lex_state = 0}, [929] = {.lex_state = 18, .external_lex_state = 11}, - [930] = {.lex_state = 18, .external_lex_state = 11}, - [931] = {.lex_state = 18, .external_lex_state = 11}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 18, .external_lex_state = 11}, - [934] = {.lex_state = 18, .external_lex_state = 11}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 14}, + [932] = {.lex_state = 18, .external_lex_state = 11}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 14}, [935] = {.lex_state = 0}, [936] = {.lex_state = 0}, [937] = {.lex_state = 0}, @@ -7063,450 +7077,450 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [939] = {.lex_state = 14}, [940] = {.lex_state = 14}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 14}, + [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 0, .external_lex_state = 6}, + [944] = {.lex_state = 14}, + [945] = {.lex_state = 0}, [946] = {.lex_state = 14}, - [947] = {.lex_state = 0, .external_lex_state = 6}, - [948] = {.lex_state = 0, .external_lex_state = 6}, - [949] = {.lex_state = 0, .external_lex_state = 6}, + [947] = {.lex_state = 14}, + [948] = {.lex_state = 14}, + [949] = {.lex_state = 14}, [950] = {.lex_state = 14}, - [951] = {.lex_state = 14}, + [951] = {.lex_state = 0, .external_lex_state = 6}, [952] = {.lex_state = 14}, [953] = {.lex_state = 0, .external_lex_state = 6}, [954] = {.lex_state = 14}, - [955] = {.lex_state = 14}, - [956] = {.lex_state = 0, .external_lex_state = 6}, + [955] = {.lex_state = 0, .external_lex_state = 6}, + [956] = {.lex_state = 14}, [957] = {.lex_state = 14}, [958] = {.lex_state = 14}, [959] = {.lex_state = 14}, [960] = {.lex_state = 0}, - [961] = {.lex_state = 14}, + [961] = {.lex_state = 0}, [962] = {.lex_state = 14}, - [963] = {.lex_state = 14}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0, .external_lex_state = 6}, - [966] = {.lex_state = 0, .external_lex_state = 6}, - [967] = {.lex_state = 16}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, + [963] = {.lex_state = 0, .external_lex_state = 6}, + [964] = {.lex_state = 14}, + [965] = {.lex_state = 14}, + [966] = {.lex_state = 14}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 14}, + [969] = {.lex_state = 0, .external_lex_state = 6}, + [970] = {.lex_state = 0, .external_lex_state = 6}, [971] = {.lex_state = 14}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 14}, + [972] = {.lex_state = 0, .external_lex_state = 6}, + [973] = {.lex_state = 0}, [974] = {.lex_state = 14}, [975] = {.lex_state = 14}, - [976] = {.lex_state = 14}, - [977] = {.lex_state = 0, .external_lex_state = 6}, - [978] = {.lex_state = 0, .external_lex_state = 6}, - [979] = {.lex_state = 14}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 14}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 14}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0, .external_lex_state = 6}, + [980] = {.lex_state = 14}, + [981] = {.lex_state = 16}, [982] = {.lex_state = 14}, - [983] = {.lex_state = 0, .external_lex_state = 6}, - [984] = {.lex_state = 14}, - [985] = {.lex_state = 0}, + [983] = {.lex_state = 14}, + [984] = {.lex_state = 0, .external_lex_state = 6}, + [985] = {.lex_state = 0, .external_lex_state = 6}, [986] = {.lex_state = 14}, - [987] = {.lex_state = 14}, - [988] = {.lex_state = 14}, - [989] = {.lex_state = 14}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0, .external_lex_state = 6}, [990] = {.lex_state = 14}, - [991] = {.lex_state = 0, .external_lex_state = 6}, + [991] = {.lex_state = 14}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 18, .external_lex_state = 11}, - [995] = {.lex_state = 14}, - [996] = {.lex_state = 16}, - [997] = {.lex_state = 0, .external_lex_state = 6}, - [998] = {.lex_state = 14}, + [993] = {.lex_state = 14}, + [994] = {.lex_state = 14}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 14}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0}, [999] = {.lex_state = 14}, - [1000] = {.lex_state = 0, .external_lex_state = 6}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 14}, - [1003] = {.lex_state = 14}, + [1000] = {.lex_state = 14}, + [1001] = {.lex_state = 14}, + [1002] = {.lex_state = 0, .external_lex_state = 6}, + [1003] = {.lex_state = 0, .external_lex_state = 6}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 0, .external_lex_state = 6}, - [1007] = {.lex_state = 14}, - [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 14}, + [1005] = {.lex_state = 0, .external_lex_state = 6}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 0, .external_lex_state = 6}, + [1009] = {.lex_state = 0, .external_lex_state = 6}, [1010] = {.lex_state = 14}, [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 18, .external_lex_state = 11}, + [1012] = {.lex_state = 0, .external_lex_state = 6}, + [1013] = {.lex_state = 16}, + [1014] = {.lex_state = 14}, + [1015] = {.lex_state = 14}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 14}, [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, + [1021] = {.lex_state = 14}, [1022] = {.lex_state = 14}, - [1023] = {.lex_state = 14}, - [1024] = {.lex_state = 0, .external_lex_state = 6}, - [1025] = {.lex_state = 0, .external_lex_state = 6}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0, .external_lex_state = 6}, - [1029] = {.lex_state = 0}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 14}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 0, .external_lex_state = 6}, + [1027] = {.lex_state = 14}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 14}, [1030] = {.lex_state = 0, .external_lex_state = 6}, [1031] = {.lex_state = 0, .external_lex_state = 6}, [1032] = {.lex_state = 0, .external_lex_state = 6}, - [1033] = {.lex_state = 0, .external_lex_state = 6}, - [1034] = {.lex_state = 16, .external_lex_state = 6}, - [1035] = {.lex_state = 14}, - [1036] = {.lex_state = 18, .external_lex_state = 11}, - [1037] = {.lex_state = 14}, - [1038] = {.lex_state = 14}, - [1039] = {.lex_state = 14}, - [1040] = {.lex_state = 18, .external_lex_state = 11}, - [1041] = {.lex_state = 14}, + [1033] = {.lex_state = 14}, + [1034] = {.lex_state = 14}, + [1035] = {.lex_state = 18, .external_lex_state = 11}, + [1036] = {.lex_state = 14}, + [1037] = {.lex_state = 18, .external_lex_state = 11}, + [1038] = {.lex_state = 16, .external_lex_state = 6}, + [1039] = {.lex_state = 16}, + [1040] = {.lex_state = 14}, + [1041] = {.lex_state = 16, .external_lex_state = 6}, [1042] = {.lex_state = 14}, - [1043] = {.lex_state = 14}, + [1043] = {.lex_state = 0}, [1044] = {.lex_state = 18, .external_lex_state = 11}, - [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 16}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 18, .external_lex_state = 11}, [1047] = {.lex_state = 16, .external_lex_state = 6}, - [1048] = {.lex_state = 14}, + [1048] = {.lex_state = 18, .external_lex_state = 11}, [1049] = {.lex_state = 14}, [1050] = {.lex_state = 14}, [1051] = {.lex_state = 16}, [1052] = {.lex_state = 14}, [1053] = {.lex_state = 0, .external_lex_state = 6}, - [1054] = {.lex_state = 14}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0, .external_lex_state = 6}, - [1057] = {.lex_state = 0, .external_lex_state = 6}, - [1058] = {.lex_state = 18, .external_lex_state = 11}, - [1059] = {.lex_state = 18, .external_lex_state = 11}, + [1054] = {.lex_state = 18, .external_lex_state = 11}, + [1055] = {.lex_state = 14}, + [1056] = {.lex_state = 18, .external_lex_state = 11}, + [1057] = {.lex_state = 14}, + [1058] = {.lex_state = 14}, + [1059] = {.lex_state = 14}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 14}, [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 0}, + [1063] = {.lex_state = 0, .external_lex_state = 6}, + [1064] = {.lex_state = 14}, [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 16, .external_lex_state = 6}, + [1066] = {.lex_state = 14}, [1067] = {.lex_state = 18, .external_lex_state = 11}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 14}, + [1068] = {.lex_state = 0, .external_lex_state = 6}, + [1069] = {.lex_state = 0, .external_lex_state = 6}, + [1070] = {.lex_state = 14}, + [1071] = {.lex_state = 14}, + [1072] = {.lex_state = 8}, + [1073] = {.lex_state = 0, .external_lex_state = 6}, + [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0, .external_lex_state = 6}, - [1077] = {.lex_state = 0, .external_lex_state = 6}, + [1076] = {.lex_state = 14}, + [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0, .external_lex_state = 6}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 14}, - [1081] = {.lex_state = 14}, + [1080] = {.lex_state = 0, .external_lex_state = 6}, + [1081] = {.lex_state = 0, .external_lex_state = 6}, [1082] = {.lex_state = 0, .external_lex_state = 6}, [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0, .external_lex_state = 6}, - [1085] = {.lex_state = 0, .external_lex_state = 6}, + [1084] = {.lex_state = 14}, + [1085] = {.lex_state = 0}, [1086] = {.lex_state = 14}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0, .external_lex_state = 6}, - [1089] = {.lex_state = 0, .external_lex_state = 6}, + [1088] = {.lex_state = 14}, + [1089] = {.lex_state = 14}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 14}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 8}, - [1095] = {.lex_state = 0, .external_lex_state = 6}, - [1096] = {.lex_state = 14}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 14}, - [1100] = {.lex_state = 0, .external_lex_state = 6}, - [1101] = {.lex_state = 8}, - [1102] = {.lex_state = 0, .external_lex_state = 6}, - [1103] = {.lex_state = 0, .external_lex_state = 6}, + [1091] = {.lex_state = 0, .external_lex_state = 6}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 0, .external_lex_state = 6}, + [1094] = {.lex_state = 0, .external_lex_state = 6}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 0, .external_lex_state = 6}, + [1097] = {.lex_state = 0, .external_lex_state = 6}, + [1098] = {.lex_state = 8}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 0, .external_lex_state = 6}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 14}, [1104] = {.lex_state = 8}, - [1105] = {.lex_state = 16, .external_lex_state = 6}, - [1106] = {.lex_state = 0, .external_lex_state = 6}, - [1107] = {.lex_state = 0}, + [1105] = {.lex_state = 0, .external_lex_state = 6}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 16, .external_lex_state = 6}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 14, .external_lex_state = 8}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 14, .external_lex_state = 9}, - [1113] = {.lex_state = 0, .external_lex_state = 6}, - [1114] = {.lex_state = 0, .external_lex_state = 6}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0, .external_lex_state = 6}, + [1109] = {.lex_state = 0, .external_lex_state = 6}, + [1110] = {.lex_state = 0, .external_lex_state = 6}, + [1111] = {.lex_state = 0, .external_lex_state = 6}, + [1112] = {.lex_state = 14}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 16}, + [1115] = {.lex_state = 14}, + [1116] = {.lex_state = 0}, [1117] = {.lex_state = 14}, - [1118] = {.lex_state = 0, .external_lex_state = 6}, - [1119] = {.lex_state = 0, .external_lex_state = 6}, - [1120] = {.lex_state = 14}, - [1121] = {.lex_state = 0, .external_lex_state = 6}, - [1122] = {.lex_state = 14}, + [1118] = {.lex_state = 0}, + [1119] = {.lex_state = 14, .external_lex_state = 9}, + [1120] = {.lex_state = 14, .external_lex_state = 8}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, + [1124] = {.lex_state = 0, .external_lex_state = 6}, + [1125] = {.lex_state = 14}, + [1126] = {.lex_state = 14}, [1127] = {.lex_state = 0}, [1128] = {.lex_state = 14}, - [1129] = {.lex_state = 16}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 14}, + [1129] = {.lex_state = 0}, + [1130] = {.lex_state = 0, .external_lex_state = 6}, + [1131] = {.lex_state = 0, .external_lex_state = 6}, + [1132] = {.lex_state = 0, .external_lex_state = 6}, + [1133] = {.lex_state = 0, .external_lex_state = 6}, + [1134] = {.lex_state = 0, .external_lex_state = 6}, + [1135] = {.lex_state = 0, .external_lex_state = 6}, + [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 14}, + [1138] = {.lex_state = 0}, [1139] = {.lex_state = 14}, - [1140] = {.lex_state = 14}, + [1140] = {.lex_state = 0, .external_lex_state = 6}, [1141] = {.lex_state = 14}, - [1142] = {.lex_state = 14}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0, .external_lex_state = 6}, - [1147] = {.lex_state = 0, .external_lex_state = 6}, - [1148] = {.lex_state = 16}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0, .external_lex_state = 6}, + [1144] = {.lex_state = 0, .external_lex_state = 6}, + [1145] = {.lex_state = 0, .external_lex_state = 6}, + [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 0}, + [1150] = {.lex_state = 14}, [1151] = {.lex_state = 14}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0, .external_lex_state = 6}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 14}, + [1152] = {.lex_state = 14}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 14}, + [1155] = {.lex_state = 0, .external_lex_state = 6}, [1156] = {.lex_state = 0, .external_lex_state = 6}, [1157] = {.lex_state = 14}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 14}, - [1160] = {.lex_state = 0, .external_lex_state = 6}, - [1161] = {.lex_state = 0, .external_lex_state = 6}, + [1158] = {.lex_state = 14}, + [1159] = {.lex_state = 0, .external_lex_state = 6}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 14}, [1162] = {.lex_state = 14}, - [1163] = {.lex_state = 14}, - [1164] = {.lex_state = 0, .external_lex_state = 6}, - [1165] = {.lex_state = 0, .external_lex_state = 6}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 14}, - [1168] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 14}, + [1167] = {.lex_state = 0, .external_lex_state = 6}, + [1168] = {.lex_state = 0, .external_lex_state = 6}, [1169] = {.lex_state = 14}, - [1170] = {.lex_state = 0, .external_lex_state = 6}, - [1171] = {.lex_state = 0, .external_lex_state = 6}, - [1172] = {.lex_state = 0, .external_lex_state = 6}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 16}, + [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0, .external_lex_state = 6}, - [1175] = {.lex_state = 14}, + [1174] = {.lex_state = 0}, + [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 8}, + [1178] = {.lex_state = 14}, + [1179] = {.lex_state = 14}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, + [1181] = {.lex_state = 0, .external_lex_state = 6}, [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0, .external_lex_state = 6}, - [1185] = {.lex_state = 8}, - [1186] = {.lex_state = 0, .external_lex_state = 6}, + [1183] = {.lex_state = 14}, + [1184] = {.lex_state = 14}, + [1185] = {.lex_state = 0, .external_lex_state = 6}, + [1186] = {.lex_state = 14}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0, .external_lex_state = 6}, + [1191] = {.lex_state = 8}, + [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 14}, - [1195] = {.lex_state = 14}, - [1196] = {.lex_state = 14}, - [1197] = {.lex_state = 14}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0, .external_lex_state = 6}, + [1196] = {.lex_state = 0, .external_lex_state = 6}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 14}, - [1199] = {.lex_state = 0}, + [1199] = {.lex_state = 0, .external_lex_state = 6}, [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0, .external_lex_state = 6}, - [1204] = {.lex_state = 0, .external_lex_state = 6}, - [1205] = {.lex_state = 14}, - [1206] = {.lex_state = 14}, - [1207] = {.lex_state = 0, .external_lex_state = 6}, - [1208] = {.lex_state = 8}, - [1209] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 14}, [1210] = {.lex_state = 14}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 14}, + [1211] = {.lex_state = 0, .external_lex_state = 6}, + [1212] = {.lex_state = 0, .external_lex_state = 6}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0, .external_lex_state = 6}, + [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, + [1217] = {.lex_state = 0, .external_lex_state = 6}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 16}, + [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, + [1222] = {.lex_state = 14}, [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, + [1224] = {.lex_state = 16}, [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, + [1227] = {.lex_state = 0, .external_lex_state = 6}, + [1228] = {.lex_state = 0, .external_lex_state = 6}, [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0, .external_lex_state = 6}, - [1231] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0, .external_lex_state = 6}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0, .external_lex_state = 6}, - [1237] = {.lex_state = 14}, - [1238] = {.lex_state = 8}, - [1239] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 14}, + [1239] = {.lex_state = 14}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0}, + [1241] = {.lex_state = 8}, [1242] = {.lex_state = 0}, [1243] = {.lex_state = 0}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, + [1245] = {.lex_state = 8}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0, .external_lex_state = 6}, + [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, + [1252] = {.lex_state = 14}, [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, + [1254] = {.lex_state = 8}, + [1255] = {.lex_state = 8}, + [1256] = {.lex_state = 0, .external_lex_state = 6}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0, .external_lex_state = 6}, + [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 14}, + [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, + [1262] = {.lex_state = 0, .external_lex_state = 6}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 14}, - [1267] = {.lex_state = 14}, - [1268] = {.lex_state = 0}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 14}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 14}, + [1270] = {.lex_state = 14}, + [1271] = {.lex_state = 14}, + [1272] = {.lex_state = 14}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 14}, - [1277] = {.lex_state = 0}, + [1277] = {.lex_state = 14}, [1278] = {.lex_state = 14}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 14}, + [1281] = {.lex_state = 0}, [1282] = {.lex_state = 14}, - [1283] = {.lex_state = 8}, + [1283] = {.lex_state = 0}, [1284] = {.lex_state = 14}, - [1285] = {.lex_state = 0, .external_lex_state = 6}, + [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0, .external_lex_state = 6}, + [1287] = {.lex_state = 14}, + [1288] = {.lex_state = 14}, [1289] = {.lex_state = 0, .external_lex_state = 6}, [1290] = {.lex_state = 0, .external_lex_state = 6}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, + [1292] = {.lex_state = 14}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 14}, - [1295] = {.lex_state = 14}, - [1296] = {.lex_state = 14}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 14}, + [1298] = {.lex_state = 14}, + [1299] = {.lex_state = 0, .external_lex_state = 6}, [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0, .external_lex_state = 6}, - [1303] = {.lex_state = 14}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 14}, - [1306] = {.lex_state = 17}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0, .external_lex_state = 6}, - [1309] = {.lex_state = 0, .external_lex_state = 6}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 14}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0, .external_lex_state = 6}, [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 16}, - [1314] = {.lex_state = 0}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0, .external_lex_state = 6}, [1315] = {.lex_state = 0, .external_lex_state = 6}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0, .external_lex_state = 6}, - [1318] = {.lex_state = 0, .external_lex_state = 6}, + [1316] = {.lex_state = 0, .external_lex_state = 6}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, + [1320] = {.lex_state = 17}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0, .external_lex_state = 6}, - [1325] = {.lex_state = 14}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, + [1329] = {.lex_state = 0, .external_lex_state = 6}, [1330] = {.lex_state = 0, .external_lex_state = 6}, - [1331] = {.lex_state = 0, .external_lex_state = 6}, - [1332] = {.lex_state = 0, .external_lex_state = 6}, - [1333] = {.lex_state = 0, .external_lex_state = 6}, + [1331] = {.lex_state = 14}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, [1334] = {.lex_state = 17}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0, .external_lex_state = 6}, + [1335] = {.lex_state = 0, .external_lex_state = 6}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0}, + [1338] = {.lex_state = 0, .external_lex_state = 6}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0, .external_lex_state = 6}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 17}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 0, .external_lex_state = 6}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0, .external_lex_state = 6}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, + [1341] = {.lex_state = 16}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0, .external_lex_state = 6}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 14}, + [1346] = {.lex_state = 14}, + [1347] = {.lex_state = 17}, + [1348] = {.lex_state = 17}, [1349] = {.lex_state = 17}, [1350] = {.lex_state = 17}, - [1351] = {.lex_state = 17}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 17}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 17}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 0, .external_lex_state = 6}, + [1353] = {.lex_state = 17}, + [1354] = {.lex_state = 14}, + [1355] = {.lex_state = 17}, + [1356] = {.lex_state = 0, .external_lex_state = 6}, [1357] = {.lex_state = 0, .external_lex_state = 6}, - [1358] = {.lex_state = 0, .external_lex_state = 6}, - [1359] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 17}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, + [1363] = {.lex_state = 17}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, + [1365] = {.lex_state = 0, .external_lex_state = 6}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 17}, + [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, + [1369] = {.lex_state = 0, .external_lex_state = 6}, [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0, .external_lex_state = 6}, - [1376] = {.lex_state = 17}, - [1377] = {.lex_state = 14}, - [1378] = {.lex_state = 14}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0, .external_lex_state = 6}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 14}, + [1380] = {.lex_state = 0, .external_lex_state = 6}, + [1381] = {.lex_state = 0, .external_lex_state = 6}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 14}, + [1383] = {.lex_state = 0}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, + [1385] = {.lex_state = 14}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, @@ -7516,9 +7530,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1392] = {.lex_state = 0}, [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, + [1395] = {.lex_state = 14}, [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, + [1397] = {.lex_state = 14}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, @@ -7527,80 +7541,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, + [1406] = {.lex_state = 14}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 14}, + [1412] = {.lex_state = 0}, [1413] = {.lex_state = 14}, [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, + [1415] = {.lex_state = 14}, [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 14}, + [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 14}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 14}, + [1423] = {.lex_state = 14}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 14}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 14}, [1431] = {.lex_state = 14}, - [1432] = {.lex_state = 0}, + [1432] = {.lex_state = 14}, [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 14}, + [1434] = {.lex_state = 0}, [1435] = {.lex_state = 14}, [1436] = {.lex_state = 0}, [1437] = {.lex_state = 14}, - [1438] = {.lex_state = 14}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 14}, - [1442] = {.lex_state = 14}, - [1443] = {.lex_state = 14}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 14}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 14}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 14}, + [1445] = {.lex_state = 0}, [1446] = {.lex_state = 14}, - [1447] = {.lex_state = 14}, - [1448] = {.lex_state = 0}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 14}, [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, + [1450] = {.lex_state = 14}, + [1451] = {.lex_state = 14}, [1452] = {.lex_state = 14}, [1453] = {.lex_state = 14}, - [1454] = {.lex_state = 14}, + [1454] = {.lex_state = 0}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 14}, - [1457] = {.lex_state = 14}, - [1458] = {.lex_state = 14}, - [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 14}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 14}, + [1460] = {.lex_state = 0}, [1461] = {.lex_state = 14}, [1462] = {.lex_state = 0}, [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, + [1464] = {.lex_state = 14}, + [1465] = {.lex_state = 14}, + [1466] = {.lex_state = 14}, [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 14}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 14}, - [1472] = {.lex_state = 0}, + [1472] = {.lex_state = 14}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 14}, - [1476] = {.lex_state = 14}, + [1474] = {.lex_state = 14}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, + [1478] = {.lex_state = 14}, + [1479] = {.lex_state = 14}, [1480] = {.lex_state = 0}, [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, @@ -7609,20 +7623,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1485] = {.lex_state = 0}, [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 14}, + [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, + [1490] = {.lex_state = 14}, [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, [1493] = {.lex_state = 0}, [1494] = {.lex_state = 0}, [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, + [1496] = {.lex_state = 14}, [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 14}, + [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 14}, - [1501] = {.lex_state = 14}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 14}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 14}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 14}, + [1509] = {.lex_state = 0}, }; enum { @@ -7683,10 +7705,10 @@ static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_start] = true, }, [8] = { - [ts_external_token__template_string_start] = true, + [ts_external_token__string_start] = true, }, [9] = { - [ts_external_token__string_start] = true, + [ts_external_token__template_string_start] = true, }, [10] = { [ts_external_token__newline] = true, @@ -7806,75 +7828,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1480), - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(970), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_module] = STATE(1488), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(960), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(970), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(960), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -7924,75 +7946,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [2] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(468), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(535), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8042,75 +8064,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [3] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(491), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(517), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8160,75 +8182,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [4] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(535), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(407), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8278,75 +8300,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [5] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(510), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(392), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8396,75 +8418,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [6] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(505), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(403), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8514,75 +8536,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [7] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(462), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(485), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8627,80 +8649,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [8] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(424), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(291), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8745,80 +8767,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [9] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(400), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(427), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8870,19 +8892,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [10] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -8890,53 +8912,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(450), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(304), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8981,26 +9003,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [11] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -9008,53 +9030,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(565), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(516), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9099,80 +9121,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [12] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(444), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(435), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9222,75 +9244,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [13] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(504), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(497), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9340,75 +9362,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [14] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(488), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(450), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9453,80 +9475,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [15] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(391), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(528), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9571,80 +9593,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [16] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(434), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(398), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9689,80 +9711,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [17] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(419), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(562), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9812,75 +9834,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [18] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(399), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(544), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9930,75 +9952,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [19] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(307), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(444), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10048,75 +10070,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [20] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(413), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(514), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10166,75 +10188,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [21] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(465), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(462), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10286,19 +10308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10306,53 +10328,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(522), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(406), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10397,26 +10419,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [23] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10424,53 +10446,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(446), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(503), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10515,80 +10537,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [24] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(417), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(543), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10638,75 +10660,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [25] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(519), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(961), + [sym_block] = STATE(998), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10751,80 +10773,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [26] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(406), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(419), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10874,193 +10896,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [27] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(457), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(519), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_match] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(99), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [28] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(554), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11109,76 +11013,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [29] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(523), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [28] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(512), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [29] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(460), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11228,75 +11250,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [30] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(551), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(454), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11346,75 +11368,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [31] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(467), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(565), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11459,80 +11481,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [32] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(392), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(496), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11582,193 +11604,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [33] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(297), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(395), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_match] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(99), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [34] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(527), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11817,76 +11721,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [35] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(985), - [sym_block] = STATE(1004), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [34] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(402), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11931,80 +11835,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [35] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(546), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [36] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(487), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(470), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12054,75 +12076,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [37] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(481), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(556), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12174,19 +12196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [38] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -12194,53 +12216,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(541), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12285,80 +12307,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [39] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(469), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(494), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12408,75 +12430,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [40] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(482), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(436), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12526,75 +12548,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [41] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(420), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(432), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12644,75 +12666,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [42] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(430), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(466), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12762,75 +12784,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [43] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(436), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(457), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12882,19 +12904,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [44] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -12902,53 +12924,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(394), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(474), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12993,80 +13015,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [45] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(484), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(492), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13118,19 +13140,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [46] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -13138,53 +13160,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(532), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(475), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13229,80 +13251,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [47] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(478), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(490), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13352,75 +13374,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [48] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(486), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(488), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13470,75 +13492,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [49] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(402), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(400), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13588,75 +13610,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [50] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(516), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(554), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13706,75 +13728,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [51] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(408), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(540), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13824,75 +13846,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [52] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(460), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(506), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13942,75 +13964,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [53] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(985), - [sym_block] = STATE(1026), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(480), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14055,80 +14077,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [54] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(474), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(426), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14180,19 +14202,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [55] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -14200,53 +14222,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(405), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_decorator] = STATE(961), + [sym_block] = STATE(421), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14291,80 +14313,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [56] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(513), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(961), + [sym_block] = STATE(408), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14414,75 +14436,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [57] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(538), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(405), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14527,80 +14549,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [58] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(985), - [sym_block] = STATE(471), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(961), + [sym_block] = STATE(534), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14650,75 +14672,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [59] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(985), - [sym_block] = STATE(543), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(961), + [sym_block] = STATE(1011), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(985), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(961), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14763,80 +14785,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [60] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(970), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(109), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(109), + [anon_sym_import] = ACTIONS(112), + [anon_sym_from] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_print] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_return] = ACTIONS(130), + [anon_sym_del] = ACTIONS(133), + [anon_sym_raise] = ACTIONS(136), + [anon_sym_pass] = ACTIONS(139), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_if] = ACTIONS(148), + [anon_sym_async] = ACTIONS(151), + [anon_sym_for] = ACTIONS(154), + [anon_sym_while] = ACTIONS(157), + [anon_sym_try] = ACTIONS(160), + [anon_sym_with] = ACTIONS(163), + [anon_sym_match] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_STAR_STAR] = ACTIONS(178), + [anon_sym_def] = ACTIONS(181), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(196), + [anon_sym_AT] = ACTIONS(199), + [anon_sym_not] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_lambda] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(208), + [sym_ellipsis] = ACTIONS(211), + [sym_integer] = ACTIONS(214), + [sym_float] = ACTIONS(211), + [anon_sym_await] = ACTIONS(217), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_none] = ACTIONS(214), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(220), + [sym__string_start] = ACTIONS(222), + [sym__template_string_start] = ACTIONS(225), + }, + [61] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(228), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [62] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(230), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [63] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(961), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_match] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(232), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [64] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(960), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(234), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14884,622 +15374,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [61] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(985), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(111), - [anon_sym_import] = ACTIONS(114), - [anon_sym_from] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_print] = ACTIONS(126), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_return] = ACTIONS(132), - [anon_sym_del] = ACTIONS(135), - [anon_sym_raise] = ACTIONS(138), - [anon_sym_pass] = ACTIONS(141), - [anon_sym_break] = ACTIONS(144), - [anon_sym_continue] = ACTIONS(147), - [anon_sym_if] = ACTIONS(150), - [anon_sym_async] = ACTIONS(153), - [anon_sym_for] = ACTIONS(156), - [anon_sym_while] = ACTIONS(159), - [anon_sym_try] = ACTIONS(162), - [anon_sym_with] = ACTIONS(165), - [anon_sym_match] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(174), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_def] = ACTIONS(183), - [anon_sym_global] = ACTIONS(186), - [anon_sym_nonlocal] = ACTIONS(189), - [anon_sym_exec] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_class] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(201), - [anon_sym_not] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_lambda] = ACTIONS(207), - [anon_sym_yield] = ACTIONS(210), - [sym_ellipsis] = ACTIONS(213), - [sym_integer] = ACTIONS(216), - [sym_float] = ACTIONS(213), - [anon_sym_await] = ACTIONS(219), - [sym_true] = ACTIONS(216), - [sym_false] = ACTIONS(216), - [sym_none] = ACTIONS(216), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(222), - [sym__string_start] = ACTIONS(224), - [sym__template_string_start] = ACTIONS(227), - }, - [62] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(970), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(222), - [sym_identifier] = ACTIONS(111), - [anon_sym_import] = ACTIONS(114), - [anon_sym_from] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_print] = ACTIONS(126), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_return] = ACTIONS(132), - [anon_sym_del] = ACTIONS(135), - [anon_sym_raise] = ACTIONS(138), - [anon_sym_pass] = ACTIONS(141), - [anon_sym_break] = ACTIONS(144), - [anon_sym_continue] = ACTIONS(147), - [anon_sym_if] = ACTIONS(230), - [anon_sym_async] = ACTIONS(233), - [anon_sym_for] = ACTIONS(236), - [anon_sym_while] = ACTIONS(239), - [anon_sym_try] = ACTIONS(242), - [anon_sym_with] = ACTIONS(245), - [anon_sym_match] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_LBRACK] = ACTIONS(174), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_def] = ACTIONS(251), - [anon_sym_global] = ACTIONS(186), - [anon_sym_nonlocal] = ACTIONS(189), - [anon_sym_exec] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_class] = ACTIONS(254), - [anon_sym_AT] = ACTIONS(201), - [anon_sym_not] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(171), - [anon_sym_lambda] = ACTIONS(207), - [anon_sym_yield] = ACTIONS(210), - [sym_ellipsis] = ACTIONS(213), - [sym_integer] = ACTIONS(216), - [sym_float] = ACTIONS(213), - [anon_sym_await] = ACTIONS(219), - [sym_true] = ACTIONS(216), - [sym_false] = ACTIONS(216), - [sym_none] = ACTIONS(216), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(224), - [sym__template_string_start] = ACTIONS(227), - }, - [63] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(985), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_match] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(99), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(257), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [64] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(985), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_match] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(99), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(259), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, [65] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(985), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(960), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_match] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(99), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(101), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(220), + [sym_identifier] = ACTIONS(109), + [anon_sym_import] = ACTIONS(112), + [anon_sym_from] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_print] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_return] = ACTIONS(130), + [anon_sym_del] = ACTIONS(133), + [anon_sym_raise] = ACTIONS(136), + [anon_sym_pass] = ACTIONS(139), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_if] = ACTIONS(236), + [anon_sym_async] = ACTIONS(239), + [anon_sym_for] = ACTIONS(242), + [anon_sym_while] = ACTIONS(245), + [anon_sym_try] = ACTIONS(248), + [anon_sym_with] = ACTIONS(251), + [anon_sym_match] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_STAR_STAR] = ACTIONS(178), + [anon_sym_def] = ACTIONS(257), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(260), + [anon_sym_AT] = ACTIONS(199), + [anon_sym_not] = ACTIONS(202), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_lambda] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(208), + [sym_ellipsis] = ACTIONS(211), + [sym_integer] = ACTIONS(214), + [sym_float] = ACTIONS(211), + [anon_sym_await] = ACTIONS(217), + [sym_true] = ACTIONS(214), + [sym_false] = ACTIONS(214), + [sym_none] = ACTIONS(214), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(261), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), + [sym__string_start] = ACTIONS(222), + [sym__template_string_start] = ACTIONS(225), }, [66] = { - [sym_named_expression] = STATE(876), - [sym_list_splat] = STATE(1365), - [sym_dictionary_splat] = STATE(1365), - [sym_expression_list] = STATE(1427), - [sym_expression] = STATE(1043), - [sym_primary_expression] = STATE(634), - [sym_not_operator] = STATE(876), - [sym_boolean_operator] = STATE(876), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_comparison_operator] = STATE(876), - [sym_lambda] = STATE(876), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_conditional_expression] = STATE(876), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_named_expression] = STATE(880), + [sym_list_splat] = STATE(1375), + [sym_dictionary_splat] = STATE(1375), + [sym_expression_list] = STATE(1430), + [sym_expression] = STATE(1066), + [sym_primary_expression] = STATE(652), + [sym_not_operator] = STATE(880), + [sym_boolean_operator] = STATE(880), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_comparison_operator] = STATE(880), + [sym_lambda] = STATE(880), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_conditional_expression] = STATE(880), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(263), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(267), @@ -15569,36 +15591,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [67] = { - [sym_named_expression] = STATE(876), - [sym_list_splat] = STATE(1365), - [sym_dictionary_splat] = STATE(1365), - [sym_expression_list] = STATE(1449), - [sym_expression] = STATE(1050), - [sym_primary_expression] = STATE(634), - [sym_not_operator] = STATE(876), - [sym_boolean_operator] = STATE(876), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_comparison_operator] = STATE(876), - [sym_lambda] = STATE(876), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_conditional_expression] = STATE(876), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_named_expression] = STATE(880), + [sym_list_splat] = STATE(1375), + [sym_dictionary_splat] = STATE(1375), + [sym_expression_list] = STATE(1433), + [sym_expression] = STATE(1052), + [sym_primary_expression] = STATE(652), + [sym_not_operator] = STATE(880), + [sym_boolean_operator] = STATE(880), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_comparison_operator] = STATE(880), + [sym_lambda] = STATE(880), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_conditional_expression] = STATE(880), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(263), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(267), @@ -15668,61 +15690,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [68] = { - [sym__simple_statements] = STATE(428), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(536), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15765,61 +15787,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [69] = { - [sym__simple_statements] = STATE(309), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(439), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15862,61 +15884,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [70] = { - [sym__simple_statements] = STATE(530), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(533), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15959,61 +15981,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [71] = { - [sym__simple_statements] = STATE(410), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(424), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16056,61 +16078,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [72] = { - [sym__simple_statements] = STATE(545), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(418), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16153,61 +16175,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [73] = { - [sym__simple_statements] = STATE(401), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(413), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16250,61 +16272,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [74] = { - [sym__simple_statements] = STATE(1014), - [sym_import_statement] = STATE(1214), - [sym_future_import_statement] = STATE(1214), - [sym_import_from_statement] = STATE(1214), - [sym_print_statement] = STATE(1214), - [sym_assert_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_raise_statement] = STATE(1214), - [sym_pass_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1214), - [sym_nonlocal_statement] = STATE(1214), - [sym_exec_statement] = STATE(1214), - [sym_type_alias_statement] = STATE(1214), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(463), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16347,61 +16369,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [75] = { - [sym__simple_statements] = STATE(459), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(437), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16444,61 +16466,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [76] = { - [sym__simple_statements] = STATE(296), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(461), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16541,61 +16563,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [77] = { - [sym__simple_statements] = STATE(473), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(428), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16638,61 +16660,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [78] = { - [sym__simple_statements] = STATE(422), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(455), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16735,61 +16757,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [79] = { - [sym__simple_statements] = STATE(441), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16832,61 +16854,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [80] = { - [sym__simple_statements] = STATE(426), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(493), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16929,61 +16951,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [81] = { - [sym__simple_statements] = STATE(555), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(487), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17026,61 +17048,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [82] = { - [sym__simple_statements] = STATE(549), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(393), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17123,61 +17145,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [83] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(471), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17220,158 +17242,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [84] = { - [sym_chevron] = STATE(1116), - [sym_named_expression] = STATE(977), + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [sym_identifier] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_COLON_EQ] = ACTIONS(278), - [anon_sym_if] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_async] = ACTIONS(382), - [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(298), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_EQ] = ACTIONS(280), - [anon_sym_exec] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_not] = ACTIONS(265), - [anon_sym_and] = ACTIONS(265), - [anon_sym_or] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(265), - [anon_sym_PERCENT] = ACTIONS(265), - [anon_sym_SLASH_SLASH] = ACTIONS(265), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(265), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_EQ_EQ] = ACTIONS(298), - [anon_sym_BANG_EQ] = ACTIONS(298), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_GT] = ACTIONS(265), - [anon_sym_LT_GT] = ACTIONS(298), - [anon_sym_is] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(302), - [anon_sym_DASH_EQ] = ACTIONS(302), - [anon_sym_STAR_EQ] = ACTIONS(302), - [anon_sym_SLASH_EQ] = ACTIONS(302), - [anon_sym_AT_EQ] = ACTIONS(302), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), - [anon_sym_PERCENT_EQ] = ACTIONS(302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(302), - [anon_sym_GT_GT_EQ] = ACTIONS(302), - [anon_sym_LT_LT_EQ] = ACTIONS(302), - [anon_sym_AMP_EQ] = ACTIONS(302), - [anon_sym_CARET_EQ] = ACTIONS(302), - [anon_sym_PIPE_EQ] = ACTIONS(302), + [anon_sym_yield] = ACTIONS(73), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(386), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(298), - [sym__newline] = ACTIONS(298), + [sym__newline] = ACTIONS(380), + [sym__indent] = ACTIONS(382), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [85] = { - [sym__simple_statements] = STATE(546), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(476), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(384), + [sym__indent] = ACTIONS(386), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [86] = { + [sym__simple_statements] = STATE(495), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), + [sym_pattern_list] = STATE(874), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), + [sym_string] = STATE(698), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17413,62 +17532,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [86] = { - [sym__simple_statements] = STATE(564), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [87] = { + [sym__simple_statements] = STATE(430), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17510,62 +17629,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [87] = { - [sym__simple_statements] = STATE(514), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [88] = { + [sym__simple_statements] = STATE(300), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17607,62 +17726,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [88] = { - [sym__simple_statements] = STATE(566), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [89] = { + [sym__simple_statements] = STATE(420), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17704,62 +17823,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [89] = { - [sym__simple_statements] = STATE(490), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [90] = { + [sym__simple_statements] = STATE(558), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17801,62 +17920,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [90] = { - [sym__simple_statements] = STATE(539), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [91] = { + [sym__simple_statements] = STATE(391), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17898,62 +18017,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [91] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [92] = { + [sym__simple_statements] = STATE(500), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17995,62 +18114,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [92] = { - [sym__simple_statements] = STATE(506), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [93] = { + [sym__simple_statements] = STATE(401), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18092,62 +18211,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [93] = { - [sym__simple_statements] = STATE(415), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [94] = { + [sym__simple_statements] = STATE(396), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18189,62 +18308,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [94] = { - [sym__simple_statements] = STATE(562), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [95] = { + [sym__simple_statements] = STATE(394), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18286,62 +18405,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [95] = { - [sym__simple_statements] = STATE(537), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [96] = { + [sym__simple_statements] = STATE(465), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18383,62 +18502,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [96] = { - [sym__simple_statements] = STATE(503), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [97] = { + [sym__simple_statements] = STATE(525), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18480,62 +18599,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [97] = { - [sym__simple_statements] = STATE(540), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [98] = { + [sym__simple_statements] = STATE(453), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18577,62 +18696,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [98] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [99] = { + [sym__simple_statements] = STATE(547), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18674,62 +18793,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [99] = { - [sym__simple_statements] = STATE(412), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [100] = { + [sym__simple_statements] = STATE(567), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18771,62 +18890,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [100] = { - [sym__simple_statements] = STATE(396), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [101] = { + [sym__simple_statements] = STATE(997), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18868,62 +18987,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [101] = { - [sym__simple_statements] = STATE(411), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [102] = { + [sym__simple_statements] = STATE(477), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18965,62 +19084,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [102] = { - [sym__simple_statements] = STATE(451), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [103] = { + [sym__simple_statements] = STATE(472), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19062,62 +19181,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [103] = { - [sym__simple_statements] = STATE(470), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [104] = { + [sym__simple_statements] = STATE(411), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19159,62 +19278,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [104] = { - [sym__simple_statements] = STATE(507), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [105] = { + [sym__simple_statements] = STATE(438), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19256,62 +19375,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [105] = { - [sym__simple_statements] = STATE(425), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [106] = { + [sym__simple_statements] = STATE(518), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19353,62 +19472,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [106] = { - [sym__simple_statements] = STATE(520), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [107] = { + [sym__simple_statements] = STATE(464), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19450,62 +19569,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [107] = { - [sym__simple_statements] = STATE(404), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [108] = { + [sym__simple_statements] = STATE(302), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19547,62 +19666,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [108] = { - [sym__simple_statements] = STATE(395), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [109] = { + [sym__simple_statements] = STATE(509), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19644,62 +19763,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [109] = { + [110] = { [sym__simple_statements] = STATE(552), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19741,256 +19860,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [110] = { - [sym__simple_statements] = STATE(493), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(314), - [anon_sym_match] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(488), - [sym__indent] = ACTIONS(490), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, [111] = { - [sym__simple_statements] = STATE(403), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_chevron] = STATE(1109), + [sym_named_expression] = STATE(955), + [sym_expression] = STATE(1012), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(314), - [anon_sym_match] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), + [sym_identifier] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(490), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(490), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(298), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(494), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(492), - [sym__indent] = ACTIONS(494), + [sym__semicolon] = ACTIONS(298), + [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, [112] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(501), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20033,61 +20055,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [113] = { - [sym__simple_statements] = STATE(389), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(486), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20130,61 +20152,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [114] = { - [sym__simple_statements] = STATE(1029), - [sym_import_statement] = STATE(1214), - [sym_future_import_statement] = STATE(1214), - [sym_import_from_statement] = STATE(1214), - [sym_print_statement] = STATE(1214), - [sym_assert_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_raise_statement] = STATE(1214), - [sym_pass_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1214), - [sym_nonlocal_statement] = STATE(1214), - [sym_exec_statement] = STATE(1214), - [sym_type_alias_statement] = STATE(1214), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(995), + [sym_import_statement] = STATE(1212), + [sym_future_import_statement] = STATE(1212), + [sym_import_from_statement] = STATE(1212), + [sym_print_statement] = STATE(1212), + [sym_assert_statement] = STATE(1212), + [sym_expression_statement] = STATE(1212), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1212), + [sym_delete_statement] = STATE(1212), + [sym_raise_statement] = STATE(1212), + [sym_pass_statement] = STATE(1212), + [sym_break_statement] = STATE(1212), + [sym_continue_statement] = STATE(1212), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1212), + [sym_nonlocal_statement] = STATE(1212), + [sym_exec_statement] = STATE(1212), + [sym_type_alias_statement] = STATE(1212), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20227,61 +20249,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [115] = { - [sym__simple_statements] = STATE(461), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(404), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20324,61 +20346,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [116] = { - [sym__simple_statements] = STATE(477), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(561), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20421,61 +20443,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [117] = { - [sym__simple_statements] = STATE(466), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(511), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20518,61 +20540,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [118] = { - [sym__simple_statements] = STATE(485), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(468), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20615,61 +20637,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [119] = { - [sym__simple_statements] = STATE(423), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(564), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20712,61 +20734,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [120] = { - [sym__simple_statements] = STATE(393), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(563), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20809,61 +20831,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [121] = { - [sym__simple_statements] = STATE(483), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(515), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20906,61 +20928,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [122] = { - [sym__simple_statements] = STATE(452), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(557), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21003,61 +21025,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [123] = { - [sym__simple_statements] = STATE(480), - [sym_import_statement] = STATE(1184), - [sym_future_import_statement] = STATE(1184), - [sym_import_from_statement] = STATE(1184), - [sym_print_statement] = STATE(1184), - [sym_assert_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1184), - [sym_delete_statement] = STATE(1184), - [sym_raise_statement] = STATE(1184), - [sym_pass_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1184), - [sym_nonlocal_statement] = STATE(1184), - [sym_exec_statement] = STATE(1184), - [sym_type_alias_statement] = STATE(1184), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(399), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21100,61 +21122,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [124] = { - [sym__simple_statements] = STATE(511), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(410), + [sym_import_statement] = STATE(1227), + [sym_future_import_statement] = STATE(1227), + [sym_import_from_statement] = STATE(1227), + [sym_print_statement] = STATE(1227), + [sym_assert_statement] = STATE(1227), + [sym_expression_statement] = STATE(1227), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1227), + [sym_delete_statement] = STATE(1227), + [sym_raise_statement] = STATE(1227), + [sym_pass_statement] = STATE(1227), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1227), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1227), + [sym_nonlocal_statement] = STATE(1227), + [sym_exec_statement] = STATE(1227), + [sym_type_alias_statement] = STATE(1227), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21197,61 +21219,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [125] = { - [sym__simple_statements] = STATE(449), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(508), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21294,61 +21316,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [126] = { - [sym__simple_statements] = STATE(442), - [sym_import_statement] = STATE(1249), - [sym_future_import_statement] = STATE(1249), - [sym_import_from_statement] = STATE(1249), - [sym_print_statement] = STATE(1249), - [sym_assert_statement] = STATE(1249), - [sym_expression_statement] = STATE(1249), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1249), - [sym_delete_statement] = STATE(1249), - [sym_raise_statement] = STATE(1249), - [sym_pass_statement] = STATE(1249), - [sym_break_statement] = STATE(1249), - [sym_continue_statement] = STATE(1249), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1249), - [sym_nonlocal_statement] = STATE(1249), - [sym_exec_statement] = STATE(1249), - [sym_type_alias_statement] = STATE(1249), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym__simple_statements] = STATE(507), + [sym_import_statement] = STATE(1181), + [sym_future_import_statement] = STATE(1181), + [sym_import_from_statement] = STATE(1181), + [sym_print_statement] = STATE(1181), + [sym_assert_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1181), + [sym_delete_statement] = STATE(1181), + [sym_raise_statement] = STATE(1181), + [sym_pass_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1181), + [sym_nonlocal_statement] = STATE(1181), + [sym_exec_statement] = STATE(1181), + [sym_type_alias_statement] = STATE(1181), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21391,60 +21413,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [127] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21486,60 +21508,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [128] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21581,60 +21603,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [129] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21676,60 +21698,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [130] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21771,60 +21793,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [131] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21866,60 +21888,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [132] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21961,60 +21983,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [133] = { - [sym_import_statement] = STATE(1357), - [sym_future_import_statement] = STATE(1357), - [sym_import_from_statement] = STATE(1357), - [sym_print_statement] = STATE(1357), - [sym_assert_statement] = STATE(1357), - [sym_expression_statement] = STATE(1357), - [sym_named_expression] = STATE(977), - [sym_return_statement] = STATE(1357), - [sym_delete_statement] = STATE(1357), - [sym_raise_statement] = STATE(1357), - [sym_pass_statement] = STATE(1357), - [sym_break_statement] = STATE(1357), - [sym_continue_statement] = STATE(1357), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_global_statement] = STATE(1357), - [sym_nonlocal_statement] = STATE(1357), - [sym_exec_statement] = STATE(1357), - [sym_type_alias_statement] = STATE(1357), - [sym_expression_list] = STATE(1333), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(1000), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1333), - [sym_augmented_assignment] = STATE(1333), + [sym_import_statement] = STATE(1369), + [sym_future_import_statement] = STATE(1369), + [sym_import_from_statement] = STATE(1369), + [sym_print_statement] = STATE(1369), + [sym_assert_statement] = STATE(1369), + [sym_expression_statement] = STATE(1369), + [sym_named_expression] = STATE(955), + [sym_return_statement] = STATE(1369), + [sym_delete_statement] = STATE(1369), + [sym_raise_statement] = STATE(1369), + [sym_pass_statement] = STATE(1369), + [sym_break_statement] = STATE(1369), + [sym_continue_statement] = STATE(1369), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_global_statement] = STATE(1369), + [sym_nonlocal_statement] = STATE(1369), + [sym_exec_statement] = STATE(1369), + [sym_type_alias_statement] = STATE(1369), + [sym_expression_list] = STATE(1329), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1032), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1329), + [sym_augmented_assignment] = STATE(1329), [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1333), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym_yield] = STATE(1329), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22055,26 +22077,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [134] = { - [sym_primary_expression] = STATE(715), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_concatenated_string] = STATE(795), + [sym_primary_expression] = STATE(711), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(568), @@ -22143,26 +22165,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [135] = { - [sym_primary_expression] = STATE(671), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22231,26 +22253,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [136] = { - [sym_primary_expression] = STATE(671), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22309,26 +22331,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [137] = { - [sym_primary_expression] = STATE(671), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22386,26 +22408,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [138] = { - [sym_primary_expression] = STATE(666), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(597), @@ -22463,26 +22485,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [139] = { - [sym_primary_expression] = STATE(666), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(597), @@ -22539,101 +22561,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [140] = { - [sym_primary_expression] = STATE(671), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), - [sym_identifier] = ACTIONS(306), - [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(302), - [anon_sym_COMMA] = ACTIONS(302), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_async] = ACTIONS(583), - [anon_sym_in] = ACTIONS(280), - [anon_sym_match] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_RBRACK] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_exec] = ACTIONS(583), - [anon_sym_type] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(265), - [anon_sym_PERCENT] = ACTIONS(265), - [anon_sym_SLASH_SLASH] = ACTIONS(265), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_CARET] = ACTIONS(265), - [anon_sym_LT_LT] = ACTIONS(265), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(302), - [anon_sym_DASH_EQ] = ACTIONS(302), - [anon_sym_STAR_EQ] = ACTIONS(302), - [anon_sym_SLASH_EQ] = ACTIONS(302), - [anon_sym_AT_EQ] = ACTIONS(302), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), - [anon_sym_PERCENT_EQ] = ACTIONS(302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(302), - [anon_sym_GT_GT_EQ] = ACTIONS(302), - [anon_sym_LT_LT_EQ] = ACTIONS(302), - [anon_sym_AMP_EQ] = ACTIONS(302), - [anon_sym_CARET_EQ] = ACTIONS(302), - [anon_sym_PIPE_EQ] = ACTIONS(302), - [sym_ellipsis] = ACTIONS(304), - [sym_integer] = ACTIONS(306), - [sym_float] = ACTIONS(304), - [anon_sym_await] = ACTIONS(595), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_none] = ACTIONS(306), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(310), - [sym__template_string_start] = ACTIONS(312), - }, - [141] = { - [sym_primary_expression] = STATE(715), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_concatenated_string] = STATE(795), + [sym_primary_expression] = STATE(711), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(265), [anon_sym_from] = ACTIONS(265), @@ -22688,27 +22635,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, + [141] = { + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_async] = ACTIONS(583), + [anon_sym_in] = ACTIONS(280), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(265), + [anon_sym_SLASH_SLASH] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(302), + [anon_sym_DASH_EQ] = ACTIONS(302), + [anon_sym_STAR_EQ] = ACTIONS(302), + [anon_sym_SLASH_EQ] = ACTIONS(302), + [anon_sym_AT_EQ] = ACTIONS(302), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(302), + [anon_sym_PERCENT_EQ] = ACTIONS(302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(302), + [anon_sym_GT_GT_EQ] = ACTIONS(302), + [anon_sym_LT_LT_EQ] = ACTIONS(302), + [anon_sym_AMP_EQ] = ACTIONS(302), + [anon_sym_CARET_EQ] = ACTIONS(302), + [anon_sym_PIPE_EQ] = ACTIONS(302), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(595), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), + }, [142] = { - [sym_primary_expression] = STATE(671), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22764,26 +22786,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [143] = { - [sym_primary_expression] = STATE(715), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_attribute] = STATE(795), - [sym_subscript] = STATE(795), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_concatenated_string] = STATE(795), + [sym_primary_expression] = STATE(748), + [sym_binary_operator] = STATE(809), + [sym_unary_operator] = STATE(809), + [sym_attribute] = STATE(809), + [sym_subscript] = STATE(809), + [sym_call] = STATE(809), + [sym_list] = STATE(809), + [sym_set] = STATE(809), + [sym_tuple] = STATE(809), + [sym_dictionary] = STATE(809), + [sym_list_comprehension] = STATE(809), + [sym_dictionary_comprehension] = STATE(809), + [sym_set_comprehension] = STATE(809), + [sym_generator_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string] = STATE(720), + [sym_concatenated_template_string] = STATE(809), + [sym_template_string] = STATE(722), + [sym_await] = STATE(809), + [sym_identifier] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_as] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(611), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(621), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + [sym__template_string_start] = ACTIONS(627), + }, + [144] = { + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_exec] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(298), + [anon_sym_not] = ACTIONS(265), + [anon_sym_and] = ACTIONS(265), + [anon_sym_or] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PERCENT] = ACTIONS(298), + [anon_sym_SLASH_SLASH] = ACTIONS(298), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(298), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_EQ_EQ] = ACTIONS(298), + [anon_sym_BANG_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT_GT] = ACTIONS(298), + [anon_sym_is] = ACTIONS(265), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(605), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), + }, + [145] = { + [sym_primary_expression] = STATE(711), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_attribute] = STATE(760), + [sym_subscript] = STATE(760), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(265), [anon_sym_from] = ACTIONS(265), @@ -22837,175 +23007,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [144] = { - [sym_primary_expression] = STATE(666), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), - [sym_identifier] = ACTIONS(306), - [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(298), - [anon_sym_COLON_EQ] = ACTIONS(599), - [anon_sym_if] = ACTIONS(265), - [anon_sym_async] = ACTIONS(583), - [anon_sym_for] = ACTIONS(265), - [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_exec] = ACTIONS(583), - [anon_sym_type] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_not] = ACTIONS(265), - [anon_sym_and] = ACTIONS(265), - [anon_sym_or] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(265), - [anon_sym_PERCENT] = ACTIONS(298), - [anon_sym_SLASH_SLASH] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(298), - [anon_sym_CARET] = ACTIONS(298), - [anon_sym_LT_LT] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(265), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_EQ_EQ] = ACTIONS(298), - [anon_sym_BANG_EQ] = ACTIONS(298), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_GT] = ACTIONS(265), - [anon_sym_LT_GT] = ACTIONS(298), - [anon_sym_is] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(304), - [sym_integer] = ACTIONS(306), - [sym_float] = ACTIONS(304), - [anon_sym_await] = ACTIONS(605), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_none] = ACTIONS(306), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(310), - [sym__template_string_start] = ACTIONS(312), - }, - [145] = { - [sym_primary_expression] = STATE(723), - [sym_binary_operator] = STATE(805), - [sym_unary_operator] = STATE(805), - [sym_attribute] = STATE(805), - [sym_subscript] = STATE(805), - [sym_call] = STATE(805), - [sym_list] = STATE(805), - [sym_set] = STATE(805), - [sym_tuple] = STATE(805), - [sym_dictionary] = STATE(805), - [sym_list_comprehension] = STATE(805), - [sym_dictionary_comprehension] = STATE(805), - [sym_set_comprehension] = STATE(805), - [sym_generator_expression] = STATE(805), - [sym_parenthesized_expression] = STATE(805), - [sym_concatenated_string] = STATE(805), - [sym_string] = STATE(706), - [sym_concatenated_template_string] = STATE(805), - [sym_template_string] = STATE(704), - [sym_await] = STATE(805), - [sym_identifier] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(298), - [anon_sym_as] = ACTIONS(265), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(298), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_if] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(265), - [anon_sym_async] = ACTIONS(613), - [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_exec] = ACTIONS(613), - [anon_sym_type] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(298), - [anon_sym_not] = ACTIONS(265), - [anon_sym_and] = ACTIONS(265), - [anon_sym_or] = ACTIONS(265), - [anon_sym_SLASH] = ACTIONS(265), - [anon_sym_PERCENT] = ACTIONS(298), - [anon_sym_SLASH_SLASH] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(298), - [anon_sym_CARET] = ACTIONS(298), - [anon_sym_LT_LT] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(265), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_EQ_EQ] = ACTIONS(298), - [anon_sym_BANG_EQ] = ACTIONS(298), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_GT] = ACTIONS(265), - [anon_sym_LT_GT] = ACTIONS(298), - [anon_sym_is] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(623), - [sym_integer] = ACTIONS(609), - [sym_float] = ACTIONS(623), - [anon_sym_await] = ACTIONS(625), - [sym_true] = ACTIONS(609), - [sym_false] = ACTIONS(609), - [sym_none] = ACTIONS(609), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(627), - [sym__template_string_start] = ACTIONS(629), - }, [146] = { - [sym_primary_expression] = STATE(666), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(675), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(597), @@ -23060,48 +23082,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [147] = { - [sym_primary_expression] = STATE(723), - [sym_binary_operator] = STATE(805), - [sym_unary_operator] = STATE(805), - [sym_attribute] = STATE(805), - [sym_subscript] = STATE(805), - [sym_call] = STATE(805), - [sym_list] = STATE(805), - [sym_set] = STATE(805), - [sym_tuple] = STATE(805), - [sym_dictionary] = STATE(805), - [sym_list_comprehension] = STATE(805), - [sym_dictionary_comprehension] = STATE(805), - [sym_set_comprehension] = STATE(805), - [sym_generator_expression] = STATE(805), - [sym_parenthesized_expression] = STATE(805), - [sym_concatenated_string] = STATE(805), - [sym_string] = STATE(706), - [sym_concatenated_template_string] = STATE(805), - [sym_template_string] = STATE(704), - [sym_await] = STATE(805), - [sym_identifier] = ACTIONS(609), + [sym_primary_expression] = STATE(748), + [sym_binary_operator] = STATE(809), + [sym_unary_operator] = STATE(809), + [sym_attribute] = STATE(809), + [sym_subscript] = STATE(809), + [sym_call] = STATE(809), + [sym_list] = STATE(809), + [sym_set] = STATE(809), + [sym_tuple] = STATE(809), + [sym_dictionary] = STATE(809), + [sym_list_comprehension] = STATE(809), + [sym_dictionary_comprehension] = STATE(809), + [sym_set_comprehension] = STATE(809), + [sym_generator_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string] = STATE(720), + [sym_concatenated_template_string] = STATE(809), + [sym_template_string] = STATE(722), + [sym_await] = STATE(809), + [sym_identifier] = ACTIONS(607), [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(609), [anon_sym_RPAREN] = ACTIONS(298), [anon_sym_COMMA] = ACTIONS(298), [anon_sym_as] = ACTIONS(265), [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(613), + [anon_sym_print] = ACTIONS(611), [anon_sym_GT_GT] = ACTIONS(298), [anon_sym_if] = ACTIONS(265), [anon_sym_COLON] = ACTIONS(298), - [anon_sym_async] = ACTIONS(613), + [anon_sym_async] = ACTIONS(611), [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(613), + [anon_sym_match] = ACTIONS(611), [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_exec] = ACTIONS(613), - [anon_sym_type] = ACTIONS(613), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), [anon_sym_AT] = ACTIONS(298), [anon_sym_not] = ACTIONS(265), [anon_sym_and] = ACTIONS(265), @@ -23112,7 +23134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(298), [anon_sym_CARET] = ACTIONS(298), [anon_sym_LT_LT] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(615), [anon_sym_LT] = ACTIONS(265), [anon_sym_LT_EQ] = ACTIONS(298), [anon_sym_EQ_EQ] = ACTIONS(298), @@ -23121,38 +23143,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(265), [anon_sym_LT_GT] = ACTIONS(298), [anon_sym_is] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(623), - [sym_integer] = ACTIONS(609), - [sym_float] = ACTIONS(623), - [anon_sym_await] = ACTIONS(625), - [sym_true] = ACTIONS(609), - [sym_false] = ACTIONS(609), - [sym_none] = ACTIONS(609), + [sym_ellipsis] = ACTIONS(621), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(627), - [sym__template_string_start] = ACTIONS(629), + [sym__string_start] = ACTIONS(625), + [sym__template_string_start] = ACTIONS(627), }, [148] = { - [sym_primary_expression] = STATE(671), - [sym_binary_operator] = STATE(658), - [sym_unary_operator] = STATE(658), - [sym_attribute] = STATE(658), - [sym_subscript] = STATE(658), - [sym_call] = STATE(658), - [sym_list] = STATE(658), - [sym_set] = STATE(658), - [sym_tuple] = STATE(658), - [sym_dictionary] = STATE(658), - [sym_list_comprehension] = STATE(658), - [sym_dictionary_comprehension] = STATE(658), - [sym_set_comprehension] = STATE(658), - [sym_generator_expression] = STATE(658), - [sym_parenthesized_expression] = STATE(658), - [sym_concatenated_string] = STATE(658), - [sym_string] = STATE(573), - [sym_concatenated_template_string] = STATE(658), - [sym_template_string] = STATE(572), - [sym_await] = STATE(658), + [sym_primary_expression] = STATE(669), + [sym_binary_operator] = STATE(649), + [sym_unary_operator] = STATE(649), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(649), + [sym_list] = STATE(649), + [sym_set] = STATE(649), + [sym_tuple] = STATE(649), + [sym_dictionary] = STATE(649), + [sym_list_comprehension] = STATE(649), + [sym_dictionary_comprehension] = STATE(649), + [sym_set_comprehension] = STATE(649), + [sym_generator_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string] = STATE(569), + [sym_concatenated_template_string] = STATE(649), + [sym_template_string] = STATE(570), + [sym_await] = STATE(649), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -23172,7 +23194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(591), [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_EQ] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(629), [anon_sym_exec] = ACTIONS(583), [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(298), @@ -23206,45 +23228,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(312), }, [149] = { - [sym_named_expression] = STATE(977), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_expression_list] = STATE(1340), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(991), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1340), - [sym_augmented_assignment] = STATE(1340), + [sym_named_expression] = STATE(955), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_expression_list] = STATE(1357), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1357), + [sym_augmented_assignment] = STATE(1357), [sym_pattern_list] = STATE(874), - [sym__right_hand_side] = STATE(1340), - [sym_yield] = STATE(1340), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym__right_hand_side] = STATE(1357), + [sym_yield] = STATE(1357), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -23274,45 +23296,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [150] = { - [sym_named_expression] = STATE(977), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_expression_list] = STATE(1311), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(991), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1311), - [sym_augmented_assignment] = STATE(1311), + [sym_named_expression] = STATE(955), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_expression_list] = STATE(1356), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1356), + [sym_augmented_assignment] = STATE(1356), [sym_pattern_list] = STATE(874), - [sym__right_hand_side] = STATE(1311), - [sym_yield] = STATE(1311), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym__right_hand_side] = STATE(1356), + [sym_yield] = STATE(1356), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -23342,45 +23364,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_string_start] = ACTIONS(83), }, [151] = { - [sym_named_expression] = STATE(977), - [sym_list_splat] = STATE(1329), - [sym_dictionary_splat] = STATE(1329), - [sym_expression_list] = STATE(1309), - [sym_pattern] = STATE(864), - [sym_tuple_pattern] = STATE(855), - [sym_list_pattern] = STATE(855), - [sym_list_splat_pattern] = STATE(855), - [sym_expression] = STATE(991), - [sym_primary_expression] = STATE(697), - [sym_not_operator] = STATE(977), - [sym_boolean_operator] = STATE(977), - [sym_binary_operator] = STATE(795), - [sym_unary_operator] = STATE(795), - [sym_comparison_operator] = STATE(977), - [sym_lambda] = STATE(977), - [sym_assignment] = STATE(1309), - [sym_augmented_assignment] = STATE(1309), + [sym_named_expression] = STATE(955), + [sym_list_splat] = STATE(1328), + [sym_dictionary_splat] = STATE(1328), + [sym_expression_list] = STATE(1365), + [sym_pattern] = STATE(867), + [sym_tuple_pattern] = STATE(853), + [sym_list_pattern] = STATE(853), + [sym_list_splat_pattern] = STATE(853), + [sym_expression] = STATE(1026), + [sym_primary_expression] = STATE(702), + [sym_not_operator] = STATE(955), + [sym_boolean_operator] = STATE(955), + [sym_binary_operator] = STATE(760), + [sym_unary_operator] = STATE(760), + [sym_comparison_operator] = STATE(955), + [sym_lambda] = STATE(955), + [sym_assignment] = STATE(1365), + [sym_augmented_assignment] = STATE(1365), [sym_pattern_list] = STATE(874), - [sym__right_hand_side] = STATE(1309), - [sym_yield] = STATE(1309), - [sym_attribute] = STATE(463), - [sym_subscript] = STATE(463), - [sym_call] = STATE(795), - [sym_list] = STATE(795), - [sym_set] = STATE(795), - [sym_tuple] = STATE(795), - [sym_dictionary] = STATE(795), - [sym_list_comprehension] = STATE(795), - [sym_dictionary_comprehension] = STATE(795), - [sym_set_comprehension] = STATE(795), - [sym_generator_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_conditional_expression] = STATE(977), - [sym_concatenated_string] = STATE(795), + [sym__right_hand_side] = STATE(1365), + [sym_yield] = STATE(1365), + [sym_attribute] = STATE(459), + [sym_subscript] = STATE(459), + [sym_call] = STATE(760), + [sym_list] = STATE(760), + [sym_set] = STATE(760), + [sym_tuple] = STATE(760), + [sym_dictionary] = STATE(760), + [sym_list_comprehension] = STATE(760), + [sym_dictionary_comprehension] = STATE(760), + [sym_set_comprehension] = STATE(760), + [sym_generator_expression] = STATE(760), + [sym_parenthesized_expression] = STATE(760), + [sym_conditional_expression] = STATE(955), + [sym_concatenated_string] = STATE(760), [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(795), - [sym_template_string] = STATE(699), - [sym_await] = STATE(795), + [sym_concatenated_template_string] = STATE(760), + [sym_template_string] = STATE(700), + [sym_await] = STATE(760), [sym_identifier] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_STAR] = ACTIONS(15), @@ -23439,20 +23461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(885), 1, sym_expression, - STATE(1023), 1, + STATE(1001), 1, sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1365), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -23470,7 +23492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23485,7 +23507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -23530,36 +23552,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(657), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(932), 1, + STATE(935), 1, sym_expression, - STATE(1123), 1, + STATE(1177), 1, sym_pattern, - STATE(1220), 1, + STATE(1197), 1, sym_yield, STATE(1409), 1, sym__collection_elements, - STATE(1410), 1, + STATE(1416), 1, sym__patterns, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(769), 2, + STATE(770), 2, sym_attribute, sym_subscript, - STATE(1098), 2, + STATE(1095), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(855), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23574,14 +23596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 15, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23597,7 +23619,382 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [241] = 23, + [241] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_STAR, + ACTIONS(649), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(659), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(930), 1, + sym_expression, + STATE(1177), 1, + sym_pattern, + STATE(1218), 1, + sym_yield, + STATE(1303), 1, + sym_parenthesized_list_splat, + STATE(1304), 1, + sym_list_splat, + STATE(1416), 1, + sym__patterns, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(770), 2, + sym_attribute, + sym_subscript, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(647), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [367] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_STAR, + ACTIONS(649), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(661), 1, + anon_sym_RBRACK, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(908), 1, + sym_expression, + STATE(1177), 1, + sym_pattern, + STATE(1434), 1, + sym__patterns, + STATE(1438), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(770), 2, + sym_attribute, + sym_subscript, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(647), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [489] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_STAR, + ACTIONS(649), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(663), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(930), 1, + sym_expression, + STATE(1177), 1, + sym_pattern, + STATE(1218), 1, + sym_yield, + STATE(1416), 1, + sym__patterns, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(770), 2, + sym_attribute, + sym_subscript, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(647), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [613] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(645), 1, + anon_sym_STAR, + ACTIONS(649), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(657), 1, + anon_sym_await, + ACTIONS(665), 1, + anon_sym_RBRACK, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(912), 1, + sym_expression, + STATE(1177), 1, + sym_pattern, + STATE(1390), 1, + sym__collection_elements, + STATE(1434), 1, + sym__patterns, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(770), 2, + sym_attribute, + sym_subscript, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(647), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [735] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -23608,25 +24005,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(659), 1, + ACTIONS(667), 1, sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(663), 1, - anon_sym_STAR, ACTIONS(669), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(677), 1, + anon_sym_in, + ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(673), 1, + ACTIONS(681), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(849), 1, + STATE(570), 1, + sym_template_string, + STATE(854), 1, sym_pattern, - STATE(861), 1, + STATE(862), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, @@ -23634,10 +24031,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(742), 2, + STATE(735), 2, sym_attribute, sym_subscript, - STATE(855), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23646,13 +24043,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(665), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(667), 15, + ACTIONS(675), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -23668,7 +24065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - STATE(658), 15, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23684,7 +24081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [351] = 30, + [845] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -23709,293 +24106,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(657), 1, anon_sym_await, - ACTIONS(675), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(928), 1, - sym_expression, - STATE(1123), 1, - sym_pattern, - STATE(1224), 1, - sym_yield, - STATE(1403), 1, - sym__collection_elements, - STATE(1410), 1, - sym__patterns, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(769), 2, - sym_attribute, - sym_subscript, - STATE(1098), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(647), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [475] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(639), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_STAR, - ACTIONS(649), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(657), 1, - anon_sym_await, - ACTIONS(677), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(916), 1, - sym_expression, - STATE(1123), 1, - sym_pattern, - STATE(1407), 1, - sym__collection_elements, - STATE(1451), 1, - sym__patterns, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(769), 2, - sym_attribute, - sym_subscript, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(647), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [597] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(639), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_STAR, - ACTIONS(649), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(657), 1, - anon_sym_await, - ACTIONS(679), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(932), 1, - sym_expression, - STATE(1123), 1, - sym_pattern, - STATE(1220), 1, - sym_yield, - STATE(1297), 1, - sym_parenthesized_list_splat, - STATE(1298), 1, - sym_list_splat, - STATE(1409), 1, - sym__collection_elements, - STATE(1410), 1, - sym__patterns, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(769), 2, - sym_attribute, - sym_subscript, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(647), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [723] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(296), 1, - anon_sym_TILDE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(663), 1, - anon_sym_STAR, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, ACTIONS(683), 1, - anon_sym_in, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(849), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(912), 1, + sym_expression, + STATE(1177), 1, sym_pattern, - STATE(861), 1, + STATE(1390), 1, + sym__collection_elements, + STATE(1434), 1, + sym__patterns, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(770), 2, + sym_attribute, + sym_subscript, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(647), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [967] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(296), 1, + anon_sym_TILDE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(687), 1, + anon_sym_in, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(854), 1, + sym_pattern, + STATE(862), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, @@ -24003,10 +24211,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(742), 2, + STATE(735), 2, sym_attribute, sym_subscript, - STATE(855), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24015,13 +24223,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(665), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(681), 15, + ACTIONS(685), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -24037,7 +24245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - STATE(658), 15, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24053,62 +24261,59 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [833] = 29, + [1077] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(288), 1, anon_sym_LBRACE, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(639), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(603), 1, anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, ACTIONS(651), 1, anon_sym_not, ACTIONS(653), 1, anon_sym_lambda, ACTIONS(655), 1, anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(685), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(916), 1, + STATE(905), 1, sym_expression, - STATE(1123), 1, - sym_pattern, - STATE(1407), 1, + STATE(1017), 1, + sym_pair, + STATE(1259), 1, + sym_dictionary_splat, + STATE(1456), 1, sym__collection_elements, - STATE(1451), 1, - sym__patterns, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(769), 2, - sym_attribute, - sym_subscript, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1098), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24117,115 +24322,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 15, + STATE(649), 17, sym_binary_operator, sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [955] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(639), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_LPAREN, - ACTIONS(645), 1, - anon_sym_STAR, - ACTIONS(649), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(657), 1, - anon_sym_await, - ACTIONS(687), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(911), 1, - sym_expression, - STATE(1123), 1, - sym_pattern, - STATE(1451), 1, - sym__patterns, - STATE(1455), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(769), 2, sym_attribute, sym_subscript, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(647), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, sym_call, sym_list, sym_set, @@ -24239,7 +24353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1077] = 24, + [1198] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24264,18 +24378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(925), 1, + STATE(931), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1002), 2, + STATE(1010), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -24293,14 +24407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(689), 7, + ACTIONS(701), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -24308,99 +24422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [1188] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(695), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(899), 1, - sym_expression, - STATE(1027), 1, - sym_pair, - STATE(1239), 1, - sym_dictionary_splat, - STATE(1382), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24443,18 +24465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(925), 1, + STATE(931), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1002), 2, + STATE(1010), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -24472,7 +24494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -24487,7 +24509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24526,29 +24548,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(655), 1, anon_sym_yield, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(693), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, ACTIONS(705), 1, anon_sym_COMMA, ACTIONS(707), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(901), 1, + STATE(887), 1, sym_expression, - STATE(1015), 1, + STATE(1006), 1, sym_pair, - STATE(1225), 1, + STATE(1215), 1, sym_dictionary_splat, - STATE(1404), 1, + STATE(1396), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, @@ -24557,7 +24579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1098), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24566,20 +24588,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24622,18 +24644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(925), 1, + STATE(931), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1002), 2, + STATE(1010), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -24651,14 +24673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(689), 7, + ACTIONS(703), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -24666,7 +24688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24705,29 +24727,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(655), 1, anon_sym_yield, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(693), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, ACTIONS(709), 1, anon_sym_COMMA, ACTIONS(711), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(882), 1, + STATE(886), 1, sym_expression, - STATE(1001), 1, + STATE(1025), 1, sym_pair, - STATE(1253), 1, + STATE(1225), 1, sym_dictionary_splat, - STATE(1462), 1, + STATE(1387), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, @@ -24736,7 +24758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1098), 3, + STATE(1095), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24745,20 +24767,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24801,13 +24823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1020), 1, + STATE(992), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -24820,7 +24842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1132), 3, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24835,14 +24857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24861,138 +24883,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_template_string, sym_await, [1881] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(719), 1, - anon_sym_from, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(956), 1, - sym_expression, - STATE(1258), 1, - sym_expression_list, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(721), 2, - sym__newline, - sym__semicolon, - STATE(1329), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [1993] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(719), 1, sym_identifier, - ACTIONS(725), 1, + ACTIONS(721), 1, anon_sym_RPAREN, - ACTIONS(727), 1, + ACTIONS(723), 1, anon_sym_COMMA, - ACTIONS(731), 1, + ACTIONS(727), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1055), 1, + STATE(911), 1, sym_expression, - STATE(1255), 1, + STATE(1261), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1254), 3, + STATE(1260), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25001,20 +24937,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(725), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25032,91 +24968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2105] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1020), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(733), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1132), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [2213] = 27, + [1993] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -25133,34 +24985,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(655), 1, anon_sym_yield, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(693), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(735), 1, + ACTIONS(729), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(883), 1, + STATE(903), 1, sym_expression, - STATE(1243), 1, + STATE(1220), 1, sym_yield, - STATE(1268), 1, + STATE(1274), 1, sym_with_item, - STATE(1416), 1, + STATE(1391), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1098), 2, + STATE(1095), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(601), 3, @@ -25172,20 +25024,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25203,179 +25055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2327] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - sym_identifier, - ACTIONS(739), 1, - anon_sym_RPAREN, - ACTIONS(741), 1, - anon_sym_COMMA, - ACTIONS(745), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(912), 1, - sym_expression, - STATE(1231), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1232), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(743), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [2439] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - sym_identifier, - ACTIONS(745), 1, - anon_sym_await, - ACTIONS(747), 1, - anon_sym_RPAREN, - ACTIONS(749), 1, - anon_sym_COMMA, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(910), 1, - sym_expression, - STATE(1259), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1256), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(743), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [2551] = 24, + [2107] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -25400,13 +25080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1020), 1, + STATE(992), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -25419,7 +25099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1132), 3, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -25434,14 +25114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25459,7 +25139,93 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2659] = 25, + [2215] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_RPAREN, + ACTIONS(723), 1, + anon_sym_COMMA, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1060), 1, + sym_expression, + STATE(1261), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1260), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [2327] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -25486,25 +25252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(655), 1, anon_sym_yield, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(942), 1, + STATE(940), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1365), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1092), 3, + STATE(1076), 3, sym_expression_list, sym_yield, sym__f_expression, @@ -25519,14 +25285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25544,7 +25310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2769] = 25, + [2437] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -25571,25 +25337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(655), 1, anon_sym_yield, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(942), 1, + STATE(940), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1365), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1080), 3, + STATE(1088), 3, sym_expression_list, sym_yield, sym__f_expression, @@ -25604,14 +25370,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [2547] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + sym_identifier, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(737), 1, + anon_sym_RPAREN, + ACTIONS(739), 1, + anon_sym_COMMA, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(933), 1, + sym_expression, + STATE(1204), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1205), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(725), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [2659] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + sym_identifier, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(741), 1, + anon_sym_RPAREN, + ACTIONS(743), 1, + anon_sym_COMMA, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(909), 1, + sym_expression, + STATE(1230), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1223), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(725), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [2771] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(992), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(745), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25632,72 +25654,72 @@ static const uint16_t ts_small_parse_table[] = { [2879] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(603), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_LBRACK, ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(725), 1, - anon_sym_RPAREN, - ACTIONS(727), 1, - anon_sym_COMMA, - ACTIONS(737), 1, - sym_identifier, - ACTIONS(745), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + ACTIONS(747), 1, + anon_sym_from, + STATE(698), 1, sym_string, - STATE(648), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(913), 1, + STATE(989), 1, sym_expression, - STATE(1255), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + STATE(1228), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(749), 2, + sym__newline, + sym__semicolon, + STATE(1328), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1254), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(743), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25730,9 +25752,9 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(380), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(386), 1, + ACTIONS(494), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, @@ -25742,15 +25764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(751), 1, anon_sym_from, - STATE(697), 1, - sym_primary_expression, STATE(698), 1, sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, - STATE(1031), 1, + STATE(702), 1, + sym_primary_expression, + STATE(1030), 1, sym_expression, - STATE(1324), 1, + STATE(1330), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, @@ -25758,7 +25780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(633), 2, sym__newline, sym__semicolon, - STATE(1329), 2, + STATE(1328), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -25770,20 +25792,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25822,21 +25844,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(753), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -25845,7 +25867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25854,20 +25876,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25906,21 +25928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(755), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -25929,7 +25951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25938,20 +25960,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25969,596 +25991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3321] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(757), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(916), 1, - sym_expression, - STATE(1407), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [3430] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(759), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(932), 1, - sym_expression, - STATE(1220), 1, - sym_yield, - STATE(1409), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1098), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [3541] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_from, - ACTIONS(763), 1, - anon_sym_STAR, - ACTIONS(765), 1, - anon_sym_STAR_STAR, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(997), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(689), 2, - sym__newline, - sym__semicolon, - STATE(1147), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [3650] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(767), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1072), 1, - sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1326), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(729), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [3759] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_from, - ACTIONS(763), 1, - anon_sym_STAR, - ACTIONS(765), 1, - anon_sym_STAR_STAR, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(997), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(689), 2, - sym__newline, - sym__semicolon, - STATE(1147), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [3868] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(763), 1, - anon_sym_STAR, - ACTIONS(765), 1, - anon_sym_STAR_STAR, - ACTIONS(769), 1, - anon_sym_from, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(997), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(703), 2, - sym__newline, - sym__semicolon, - STATE(1147), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [3977] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(771), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1072), 1, - sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1326), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(729), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [4086] = 23, + [3321] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -26573,35 +26006,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(651), 1, anon_sym_not, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(941), 1, + STATE(945), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1013), 2, + STATE(1020), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(773), 3, + ACTIONS(757), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(775), 3, + ACTIONS(759), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -26610,19 +26043,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 4, + ACTIONS(695), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26640,7 +26073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4191] = 25, + [3426] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26661,391 +26094,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, - anon_sym_await, - ACTIONS(779), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1072), 1, - sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1326), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(729), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [4300] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, sym_identifier, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(781), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1072), 1, - sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1326), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(729), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [4409] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(783), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(928), 1, - sym_expression, - STATE(1224), 1, - sym_yield, - STATE(1403), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1098), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [4520] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(785), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(911), 1, - sym_expression, - STATE(1455), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [4629] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, ACTIONS(735), 1, + anon_sym_await, + ACTIONS(763), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(932), 1, + STATE(1102), 1, sym_expression, - STATE(1220), 1, - sym_yield, - STATE(1297), 1, + STATE(1368), 1, sym_parenthesized_list_splat, - STATE(1298), 1, - sym_list_splat, - STATE(1409), 1, - sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27063,7 +26157,764 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4742] = 23, + [3535] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(765), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [3644] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(767), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [3753] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(769), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [3862] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1031), 1, + sym_expression, + STATE(1377), 1, + sym_expression_list, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(771), 2, + sym__newline, + sym__semicolon, + STATE(1328), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [3971] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(773), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4080] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, + anon_sym_from, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1002), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 2, + sym__newline, + sym__semicolon, + STATE(1168), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4189] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(781), 1, + anon_sym_RBRACK, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(912), 1, + sym_expression, + STATE(1390), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4298] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(775), 1, + anon_sym_from, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1002), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(703), 2, + sym__newline, + sym__semicolon, + STATE(1168), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4407] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(729), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(930), 1, + sym_expression, + STATE(1218), 1, + sym_yield, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4518] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27078,24 +26929,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(651), 1, anon_sym_not, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(941), 1, + STATE(945), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1013), 2, + STATE(1020), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(783), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(785), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 4, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4623] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(945), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1020), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(601), 3, @@ -27115,19 +27048,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 4, + ACTIONS(695), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27145,176 +27078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4847] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(791), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(915), 1, - sym_expression, - STATE(1440), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [4956] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(735), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(924), 1, - sym_expression, - STATE(1243), 1, - sym_yield, - STATE(1416), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1098), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [5067] = 25, + [4728] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27335,21 +27099,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(791), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [4837] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(793), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27358,7 +27206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27367,20 +27215,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27398,175 +27246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5176] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(795), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1072), 1, - sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1326), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(729), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [5285] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1028), 1, - sym_expression, - STATE(1375), 1, - sym_expression_list, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(797), 2, - sym__newline, - sym__semicolon, - STATE(1329), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [5394] = 23, + [4946] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27581,35 +27261,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(651), 1, anon_sym_not, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(941), 1, + STATE(945), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1013), 2, + STATE(1020), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(799), 3, + ACTIONS(795), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(801), 3, + ACTIONS(797), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -27618,19 +27298,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 4, + ACTIONS(695), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27648,7 +27328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5499] = 25, + [5051] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27669,21 +27349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - ACTIONS(803), 1, + ACTIONS(799), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27692,7 +27372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27701,20 +27381,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27732,7 +27412,91 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5608] = 25, + [5160] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, + anon_sym_await, + ACTIONS(801), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + STATE(1368), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1310), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(733), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [5269] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27749,25 +27513,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(655), 1, anon_sym_yield, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(693), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(791), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + ACTIONS(803), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(916), 1, + STATE(930), 1, sym_expression, - STATE(1407), 1, + STATE(1218), 1, + sym_yield, + STATE(1303), 1, + sym_parenthesized_list_splat, + STATE(1304), 1, + sym_list_splat, + STATE(1480), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, @@ -27776,29 +27546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1098), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27816,7 +27582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5717] = 25, + [5382] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27837,21 +27603,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(805), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27860,7 +27626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27869,20 +27635,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27900,73 +27666,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5826] = 25, + [5491] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(651), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, sym_identifier, - ACTIONS(731), 1, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, ACTIONS(807), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(1072), 1, + STATE(908), 1, sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, + STATE(1438), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1095), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27984,7 +27750,176 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5935] = 25, + [5600] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(729), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(921), 1, + sym_expression, + STATE(1220), 1, + sym_yield, + STATE(1391), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [5711] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(781), 1, + anon_sym_RBRACK, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(928), 1, + sym_expression, + STATE(1393), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [5820] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -28005,21 +27940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(809), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -28028,7 +27963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28037,20 +27972,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28068,7 +28003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6044] = 26, + [5929] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -28085,225 +28020,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(655), 1, anon_sym_yield, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(693), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(735), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(932), 1, - sym_expression, - STATE(1220), 1, - sym_yield, - STATE(1409), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1098), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [6155] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(759), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(932), 1, - sym_expression, - STATE(1220), 1, - sym_yield, - STATE(1297), 1, - sym_parenthesized_list_splat, - STATE(1298), 1, - sym_list_splat, - STATE(1409), 1, - sym__collection_elements, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [6268] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(777), 1, - anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1013), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(811), 3, - anon_sym_RPAREN, + ACTIONS(811), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(813), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(912), 1, + sym_expression, + STATE(1390), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1095), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(697), 4, + ACTIONS(695), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [6038] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(813), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(935), 1, + sym_expression, + STATE(1197), 1, + sym_yield, + STATE(1409), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [6149] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(803), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(930), 1, + sym_expression, + STATE(1218), 1, + sym_yield, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1095), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [6260] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(729), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(930), 1, + sym_expression, + STATE(1218), 1, + sym_yield, + STATE(1303), 1, + sym_parenthesized_list_splat, + STATE(1304), 1, + sym_list_splat, + STATE(1480), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28342,21 +28364,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(815), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -28365,7 +28387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28374,20 +28396,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28408,70 +28430,70 @@ static const uint16_t ts_small_parse_table[] = { [6482] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, sym_identifier, - ACTIONS(731), 1, + ACTIONS(494), 1, anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, ACTIONS(817), 1, - anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + anon_sym_from, + STATE(698), 1, sym_string, - STATE(634), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1002), 1, sym_expression, - STATE(1314), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(701), 2, + sym__newline, + sym__semicolon, + STATE(1168), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28510,21 +28532,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, ACTIONS(819), 1, anon_sym_RPAREN, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -28533,7 +28555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28542,20 +28564,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28594,19 +28616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(723), 1, - sym_identifier, ACTIONS(731), 1, + sym_identifier, + ACTIONS(735), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1072), 1, + STATE(1102), 1, sym_expression, - STATE(1314), 1, + STATE(1368), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -28615,7 +28637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1326), 3, + STATE(1310), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28624,20 +28646,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(729), 5, + ACTIONS(733), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28670,25 +28692,25 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(715), 1, - anon_sym_RPAREN, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + ACTIONS(821), 1, + anon_sym_COLON, + ACTIONS(823), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1020), 1, + STATE(1042), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -28697,10 +28719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1132), 3, + STATE(1371), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -28712,14 +28734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28762,16 +28784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(821), 1, anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(1042), 1, sym_expression, + STATE(1454), 1, + sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -28779,7 +28801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1243), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -28794,14 +28816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28820,88 +28842,6 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_template_string, sym_await, [7018] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(715), 1, - anon_sym_RPAREN, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1020), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1132), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [7124] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -28926,97 +28866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(821), 1, anon_sym_COLON, - ACTIONS(825), 1, - anon_sym_RBRACK, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(1042), 1, sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [7230] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1042), 1, - sym_expression, - STATE(1425), 1, + STATE(1407), 1, sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, @@ -29025,7 +28883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1257), 3, + STATE(1203), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -29040,14 +28898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29065,7 +28923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7336] = 18, + [7124] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -29080,11 +28938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(595), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(671), 1, + STATE(570), 1, + sym_template_string, + STATE(669), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, @@ -29097,7 +28955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(827), 3, + ACTIONS(825), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -29123,7 +28981,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(658), 17, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [7218] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(992), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [7324] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1042), 1, + sym_expression, + STATE(1469), 1, + sym_index_expression_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1263), 3, + sym_list_splat, + sym__index_expression, + sym_slice, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29156,26 +29178,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, + ACTIONS(655), 1, + anon_sym_yield, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_RPAREN, ACTIONS(717), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1042), 1, + STATE(992), 1, sym_expression, - STATE(1400), 1, - sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -29183,10 +29205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1227), 3, + STATE(1118), 3, sym_list_splat, - sym__index_expression, - sym_slice, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, @@ -29198,14 +29220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29248,16 +29270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(821), 1, anon_sym_COLON, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + ACTIONS(827), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(1042), 1, sym_expression, - STATE(1432), 1, - sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -29265,7 +29287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1265), 3, + STATE(1371), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -29280,14 +29302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29330,20 +29352,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1037), 1, + STATE(1055), 1, sym_expression, - STATE(1413), 1, + STATE(1453), 1, sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1365), 2, + STATE(1375), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -29361,14 +29383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29386,7 +29408,169 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7747] = 23, + [7747] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1065), 1, + sym_expression, + STATE(1490), 1, + sym_expression_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1375), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [7852] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1040), 1, + sym_expression, + STATE(1446), 1, + sym_expression_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1375), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [7957] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -29411,13 +29595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1020), 1, + STATE(992), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -29426,7 +29610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1132), 3, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -29441,176 +29625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [7850] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1049), 1, - sym_expression, - STATE(1447), 1, - sym_expression_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1365), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [7955] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1024), 1, - sym_expression, - STATE(1344), 1, - sym_expression_list, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - STATE(1329), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29631,67 +29653,67 @@ static const uint16_t ts_small_parse_table[] = { [8060] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, ACTIONS(635), 1, anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(698), 1, sym_string, - STATE(634), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1005), 1, sym_expression, - STATE(1501), 1, + STATE(1380), 1, sym_expression_list, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1365), 2, + STATE(1328), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29709,88 +29731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8165] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1048), 1, - sym_expression, - STATE(1378), 1, - sym_expression_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1365), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [8270] = 23, + [8165] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -29815,11 +29756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(821), 1, anon_sym_COLON, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(1042), 1, sym_expression, @@ -29830,7 +29771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1371), 3, sym_list_splat, sym__index_expression, sym_slice, @@ -29845,14 +29786,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [8268] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1050), 1, + sym_expression, + STATE(1437), 1, + sym_expression_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1375), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29895,18 +29917,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(829), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -29924,14 +29946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29974,18 +29996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(831), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30003,14 +30025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30031,65 +30053,65 @@ static const uint16_t ts_small_parse_table[] = { [8577] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(69), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(777), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_STAR_STAR, + STATE(698), 1, sym_string, - STATE(634), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(925), 1, + STATE(1002), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1002), 2, + STATE(1168), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30132,18 +30154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(833), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30161,14 +30183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30211,18 +30233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(835), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30240,14 +30262,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30290,18 +30312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(837), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30319,14 +30341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30347,65 +30369,65 @@ static const uint16_t ts_small_parse_table[] = { [8985] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(763), 1, - anon_sym_STAR, - ACTIONS(765), 1, + ACTIONS(53), 1, anon_sym_STAR_STAR, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(839), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(699), 1, + STATE(570), 1, sym_template_string, - STATE(997), 1, + STATE(652), 1, + sym_primary_expression, + STATE(1112), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1147), 2, - sym_list_splat, + STATE(1378), 2, sym_dictionary_splat, - ACTIONS(47), 3, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30444,24 +30466,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, + ACTIONS(635), 1, + anon_sym_STAR, ACTIONS(637), 1, anon_sym_not, - ACTIONS(839), 1, - anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(931), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1010), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30477,14 +30499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30527,18 +30549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(841), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30556,14 +30578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30606,18 +30628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(843), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30635,14 +30657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30685,18 +30707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(845), 1, anon_sym_RBRACE, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -30714,14 +30736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30739,85 +30761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9495] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1162), 1, - sym_list_splat, - STATE(1452), 1, - sym_type, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [9596] = 9, + [9495] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(851), 1, @@ -30826,17 +30770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_except, ACTIONS(855), 1, anon_sym_finally, - STATE(432), 1, + STATE(445), 1, sym_else_clause, - STATE(556), 1, + STATE(520), 1, sym_finally_clause, - STATE(303), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(849), 13, - sym__dedent, + STATE(308), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(847), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -30847,7 +30791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(847), 33, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30881,6 +30825,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, + [9568] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1459), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, [9669] = 23, ACTIONS(3), 1, sym_comment, @@ -30904,17 +30926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1007), 1, + STATE(1022), 1, sym_expression, - STATE(1162), 1, + STATE(1117), 1, sym_list_splat, - STATE(1437), 1, + STATE(1466), 1, sym_type, ACTIONS(304), 2, sym_ellipsis, @@ -30934,14 +30956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30959,74 +30981,165 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9770] = 9, + [9770] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(863), 1, - anon_sym_except, - ACTIONS(865), 1, - anon_sym_finally, - STATE(418), 1, - sym_else_clause, - STATE(560), 1, - sym_finally_clause, - STATE(301), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(857), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1415), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(859), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [9843] = 3, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [9871] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(869), 17, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(859), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1049), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(857), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [9970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -31044,7 +31157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(867), 36, + ACTIONS(861), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -31081,23 +31194,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [9904] = 9, + [10031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, + ACTIONS(867), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_else, - ACTIONS(855), 1, - anon_sym_finally, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [10092] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, ACTIONS(871), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1071), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(869), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10191] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1465), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10292] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1450), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10393] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1282), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10494] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(879), 1, anon_sym_except, - STATE(432), 1, + ACTIONS(881), 1, + anon_sym_finally, + STATE(431), 1, sym_else_clause, - STATE(556), 1, + STATE(498), 1, sym_finally_clause, - STATE(298), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(849), 13, + STATE(293), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(875), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -31111,7 +31593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(847), 33, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -31145,7 +31627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [9977] = 23, + [10567] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -31168,17 +31650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1007), 1, + STATE(1022), 1, sym_expression, - STATE(1162), 1, + STATE(1117), 1, sym_list_splat, - STATE(1457), 1, + STATE(1121), 1, sym_type, ACTIONS(304), 2, sym_ellipsis, @@ -31198,14 +31680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31223,770 +31705,26 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10078] = 3, + [10668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(873), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [10139] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1162), 1, - sym_list_splat, - STATE(1458), 1, - sym_type, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10240] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(865), 1, - anon_sym_finally, ACTIONS(877), 1, - anon_sym_except, - STATE(418), 1, - sym_else_clause, - STATE(560), 1, - sym_finally_clause, - STATE(305), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(857), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(859), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [10313] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, + anon_sym_else, ACTIONS(881), 1, - anon_sym_COLON, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1061), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(879), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10412] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1162), 1, - sym_list_splat, - STATE(1460), 1, - sym_type, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10513] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1162), 1, - sym_list_splat, - STATE(1442), 1, - sym_type, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10614] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1162), 1, - sym_list_splat, - STATE(1273), 1, - sym_type, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10715] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1151), 1, - sym_type, - STATE(1162), 1, - sym_list_splat, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10816] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(885), 1, - anon_sym_COLON, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1045), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(883), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [10915] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_STAR, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1057), 1, - sym_expression, - STATE(1186), 1, - sym_type, - STATE(1192), 1, - sym_list_splat, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [11016] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(865), 1, anon_sym_finally, - ACTIONS(877), 1, + ACTIONS(883), 1, anon_sym_except, - STATE(427), 1, + STATE(431), 1, sym_else_clause, - STATE(517), 1, + STATE(498), 1, sym_finally_clause, - STATE(305), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(849), 13, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(875), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -31997,7 +31735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(847), 33, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32031,85 +31769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11089] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1007), 1, - sym_expression, - STATE(1162), 1, - sym_list_splat, - STATE(1454), 1, - sym_type, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [11190] = 22, + [10741] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -32132,18 +31792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1112), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1323), 2, + STATE(1378), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -32161,14 +31821,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10840] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(885), 1, + anon_sym_STAR, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1063), 1, + sym_expression, + STATE(1185), 1, + sym_list_splat, + STATE(1217), 1, + sym_type, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [10941] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(879), 1, + anon_sym_except, + ACTIONS(881), 1, + anon_sym_finally, + STATE(425), 1, + sym_else_clause, + STATE(555), 1, + sym_finally_clause, + STATE(293), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(847), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(849), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11014] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1461), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(881), 1, + anon_sym_finally, + ACTIONS(883), 1, + anon_sym_except, + STATE(425), 1, + sym_else_clause, + STATE(555), 1, + sym_finally_clause, + STATE(292), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(847), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(849), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11188] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(717), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1117), 1, + sym_list_splat, + STATE(1406), 1, + sym_type, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32191,21 +32213,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(851), 1, anon_sym_else, - ACTIONS(853), 1, - anon_sym_except, ACTIONS(855), 1, anon_sym_finally, - STATE(440), 1, + ACTIONS(887), 1, + anon_sym_except, + STATE(445), 1, sym_else_clause, - STATE(489), 1, + STATE(520), 1, sym_finally_clause, - STATE(303), 2, + STATE(289), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(857), 13, - sym__dedent, + ACTIONS(847), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32216,7 +32238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(859), 33, + ACTIONS(849), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32255,21 +32277,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(851), 1, anon_sym_else, + ACTIONS(853), 1, + anon_sym_except, ACTIONS(855), 1, anon_sym_finally, - ACTIONS(871), 1, - anon_sym_except, - STATE(440), 1, + STATE(415), 1, sym_else_clause, - STATE(489), 1, + STATE(542), 1, sym_finally_clause, - STATE(298), 2, + STATE(308), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(857), 13, - sym__dedent, + ACTIONS(875), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32280,7 +32302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(859), 33, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32314,7 +32336,227 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11435] = 23, + [11435] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(855), 1, + anon_sym_finally, + ACTIONS(887), 1, + anon_sym_except, + STATE(415), 1, + sym_else_clause, + STATE(542), 1, + sym_finally_clause, + STATE(289), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(875), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(873), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11508] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(891), 1, + anon_sym_STAR, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1000), 1, + sym_expression, + STATE(1354), 1, + sym_exception_list, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11609] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(903), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1034), 1, + sym_expression, + STATE(1346), 1, + sym_exception_list, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11710] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -32337,15 +32579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1007), 1, + STATE(1022), 1, sym_expression, - STATE(1162), 1, + STATE(1117), 1, sym_list_splat, STATE(1431), 1, sym_type, @@ -32367,14 +32609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32392,71 +32634,82 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11536] = 9, + [11811] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(863), 1, - anon_sym_except, - ACTIONS(865), 1, - anon_sym_finally, - STATE(427), 1, - sym_else_clause, - STATE(517), 1, - sym_finally_clause, - STATE(301), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(849), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1069), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(847), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(907), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [11609] = 21, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [11907] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -32471,24 +32724,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(651), 1, anon_sym_not, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(941), 1, + STATE(945), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1013), 2, + STATE(973), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(601), 3, @@ -32500,20 +32753,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32531,64 +32784,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11705] = 21, + [12003] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(691), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(777), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, sym_primary_expression, - STATE(941), 1, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1000), 1, sym_expression, - ACTIONS(304), 2, + STATE(1354), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - STATE(968), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32606,7 +32860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11801] = 21, + [12101] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -32627,18 +32881,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1085), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(909), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12197] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(911), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(999), 1, + sym_expression, + STATE(1238), 1, + sym_with_item, + STATE(1432), 1, + sym_with_clause, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12295] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(945), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1020), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12391] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1069), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(913), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12487] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1069), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(915), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [12583] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(1087), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(889), 2, + ACTIONS(917), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(296), 3, @@ -32656,14 +33286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32681,762 +33311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11897] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(893), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - STATE(1276), 1, - sym_with_item, - STATE(1441), 1, - sym_with_clause, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [11995] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1075), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(903), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12091] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(893), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - STATE(1276), 1, - sym_with_item, - STATE(1434), 1, - sym_with_clause, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12189] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1053), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(905), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12285] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1070), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(907), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12381] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1053), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(909), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12477] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1071), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(911), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12573] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(893), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - STATE(1276), 1, - sym_with_item, - STATE(1426), 1, - sym_with_clause, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12671] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(893), 1, - anon_sym_LPAREN, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - STATE(1276), 1, - sym_with_item, - STATE(1435), 1, - sym_with_clause, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12769] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - ACTIONS(913), 1, - anon_sym_RPAREN, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - STATE(1305), 1, - sym_with_item, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [12867] = 21, + [12679] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -33451,24 +33326,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(651), 1, anon_sym_not, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(761), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(941), 1, + STATE(945), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(969), 2, + STATE(987), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(601), 3, @@ -33480,20 +33355,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33511,20 +33386,18 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12963] = 22, + [12775] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(621), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(891), 1, + ACTIONS(889), 1, sym_identifier, ACTIONS(897), 1, anon_sym_not, @@ -33532,44 +33405,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(901), 1, anon_sym_await, - ACTIONS(915), 1, - anon_sym_RPAREN, - STATE(704), 1, - sym_template_string, - STATE(706), 1, + ACTIONS(911), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, sym_string, STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, + sym_template_string, + STATE(999), 1, sym_expression, - STATE(1305), 1, + STATE(1238), 1, sym_with_item, - ACTIONS(623), 2, + STATE(1478), 1, + sym_with_clause, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(617), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(609), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(895), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(998), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(805), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33587,64 +33462,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13061] = 21, + [12873] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - STATE(697), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(911), 1, + anon_sym_LPAREN, + STATE(718), 1, sym_primary_expression, - STATE(698), 1, + STATE(720), 1, sym_string, - STATE(699), 1, + STATE(722), 1, sym_template_string, - STATE(1053), 1, + STATE(999), 1, sym_expression, - ACTIONS(75), 2, + STATE(1238), 1, + sym_with_item, + STATE(1440), 1, + sym_with_clause, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(917), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33662,64 +33538,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13157] = 21, + [12971] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - STATE(697), 1, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(718), 1, sym_primary_expression, - STATE(698), 1, + STATE(720), 1, sym_string, - STATE(699), 1, + STATE(722), 1, sym_template_string, - STATE(1053), 1, + STATE(1034), 1, sym_expression, - ACTIONS(75), 2, + STATE(1346), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(919), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33737,7 +33614,535 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13253] = 22, + [13069] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(919), 1, + anon_sym_RPAREN, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(999), 1, + sym_expression, + STATE(1298), 1, + sym_with_item, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13167] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(937), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1018), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13263] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1090), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(921), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13359] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(911), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(999), 1, + sym_expression, + STATE(1238), 1, + sym_with_item, + STATE(1385), 1, + sym_with_clause, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13457] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_lambda, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(941), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1023), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13553] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + ACTIONS(923), 1, + anon_sym_RPAREN, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(999), 1, + sym_expression, + STATE(1298), 1, + sym_with_item, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13651] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1100), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(925), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [13747] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -33760,15 +34165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(717), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1075), 1, sym_expression, - STATE(1345), 1, + STATE(1324), 1, sym_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -33788,14 +34193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33813,64 +34218,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13351] = 21, + [13845] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(777), 1, + ACTIONS(71), 1, anon_sym_lambda, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, sym_string, - STATE(648), 1, + STATE(700), 1, + sym_template_string, + STATE(702), 1, sym_primary_expression, - STATE(944), 1, + STATE(1069), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1012), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(927), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33888,20 +34293,20 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13447] = 22, + [13941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(619), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(621), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(891), 1, + ACTIONS(889), 1, sym_identifier, ACTIONS(897), 1, anon_sym_not, @@ -33909,44 +34314,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(901), 1, anon_sym_await, - ACTIONS(921), 1, - anon_sym_STAR, - ACTIONS(923), 1, - anon_sym_COLON, - STATE(704), 1, - sym_template_string, - STATE(706), 1, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, sym_string, STATE(722), 1, - sym_primary_expression, - STATE(1054), 1, + sym_template_string, + STATE(1036), 1, sym_expression, - ACTIONS(623), 2, + STATE(1379), 1, + sym_exception_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(617), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(609), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(895), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(998), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(805), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33964,20 +34367,20 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13545] = 22, + [14036] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(619), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - ACTIONS(621), 1, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(891), 1, + ACTIONS(889), 1, sym_identifier, ACTIONS(897), 1, anon_sym_not, @@ -33985,119 +34388,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(901), 1, anon_sym_await, - ACTIONS(925), 1, - anon_sym_STAR, - ACTIONS(927), 1, - anon_sym_COLON, - STATE(704), 1, - sym_template_string, - STATE(706), 1, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, sym_string, STATE(722), 1, - sym_primary_expression, - STATE(1038), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [13643] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - ACTIONS(777), 1, - anon_sym_lambda, - STATE(572), 1, sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(935), 1, + STATE(999), 1, sym_expression, - ACTIONS(304), 2, + STATE(1298), 1, + sym_with_item, + ACTIONS(621), 2, sym_ellipsis, sym_float, - STATE(992), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34115,9 +34441,14 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13739] = 3, + [14131] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(933), 1, + anon_sym_except, + STATE(289), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, ACTIONS(929), 13, sym__string_start, sym__template_string_start, @@ -34132,7 +34463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(931), 38, + ACTIONS(931), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34145,17 +34476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -34171,684 +34499,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(933), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13857] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(937), 1, - anon_sym_for, - ACTIONS(939), 1, - anon_sym_with, - ACTIONS(941), 1, - anon_sym_def, - ACTIONS(280), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(302), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(265), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [13930] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(947), 1, - anon_sym_elif, - STATE(331), 1, - aux_sym_if_statement_repeat1, - STATE(431), 1, - sym_elif_clause, - STATE(528), 1, - sym_else_clause, - ACTIONS(943), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(945), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13999] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1016), 1, - sym_expression, - STATE(1305), 1, - sym_with_item, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [14094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(951), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(953), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14212] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(947), 1, - anon_sym_elif, - STATE(331), 1, - aux_sym_if_statement_repeat1, - STATE(431), 1, - sym_elif_clause, - STATE(542), 1, - sym_else_clause, - ACTIONS(957), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(959), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14281] = 8, + [14194] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(851), 1, anon_sym_else, - ACTIONS(961), 1, + ACTIONS(940), 1, anon_sym_elif, - STATE(384), 1, + STATE(382), 1, aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - STATE(529), 1, - sym_else_clause, - ACTIONS(943), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(945), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(951), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(963), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14468] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(961), 1, - anon_sym_elif, - STATE(293), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - STATE(512), 1, - sym_else_clause, - ACTIONS(969), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(967), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14537] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(961), 1, - anon_sym_elif, - STATE(308), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, + STATE(417), 1, sym_elif_clause, STATE(524), 1, sym_else_clause, - ACTIONS(973), 13, - sym__dedent, + ACTIONS(936), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -34859,7 +34526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(971), 33, + ACTIONS(938), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34893,15 +34560,76 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14606] = 5, + [14263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(940), 1, + anon_sym_elif, + STATE(309), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + STATE(521), 1, + sym_else_clause, + ACTIONS(942), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(944), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 1, anon_sym_except, - STATE(298), 2, + STATE(292), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(977), 13, + ACTIONS(948), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -34915,7 +34643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(975), 35, + ACTIONS(946), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34951,9 +34679,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14669] = 3, + [14395] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(953), 1, + anon_sym_except, + STATE(293), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, ACTIONS(929), 13, sym__dedent, sym__string_start, @@ -34968,7 +34701,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(931), 38, + ACTIONS(931), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(956), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(958), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35007,18 +34793,186 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14728] = 10, + [14517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(962), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(956), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(958), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(964), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(966), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14694] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(270), 1, anon_sym_COMMA, ACTIONS(278), 1, anon_sym_COLON_EQ, - ACTIONS(982), 1, + ACTIONS(968), 1, anon_sym_for, - ACTIONS(984), 1, + ACTIONS(970), 1, anon_sym_with, - ACTIONS(986), 1, + ACTIONS(972), 1, anon_sym_def, ACTIONS(280), 2, anon_sym_COLON, @@ -35070,129 +35024,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [14801] = 5, + [14767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(988), 1, - anon_sym_except, - STATE(301), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(977), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(975), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(974), 1, anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, + ACTIONS(976), 1, anon_sym_with, - anon_sym_match, + ACTIONS(978), 1, anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(933), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [14840] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(995), 1, - anon_sym_except, - STATE(303), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(993), 13, + STATE(312), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(560), 1, + sym_else_clause, + ACTIONS(982), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -35206,7 +35114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(991), 35, + ACTIONS(980), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35219,12 +35127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -35242,92 +35148,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14986] = 21, + [14909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - ACTIONS(927), 1, - anon_sym_COLON, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1038), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [15081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(998), 1, - anon_sym_except, - STATE(305), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(993), 13, + ACTIONS(960), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35338,60 +35165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(991), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(963), 38, + ACTIONS(962), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35430,81 +35204,155 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15203] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(947), 1, - anon_sym_elif, - STATE(292), 1, - aux_sym_if_statement_repeat1, - STATE(431), 1, - sym_elif_clause, - STATE(534), 1, - sym_else_clause, - ACTIONS(973), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(971), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15272] = 8, + [14968] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(851), 1, anon_sym_else, - ACTIONS(961), 1, + ACTIONS(940), 1, anon_sym_elif, - STATE(384), 1, + STATE(290), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + STATE(502), 1, + sym_else_clause, + ACTIONS(982), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(980), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15037] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1033), 1, + sym_expression, + STATE(1345), 1, + sym_exception_list, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [15132] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(310), 1, aux_sym_if_statement_repeat1, STATE(433), 1, sym_elif_clause, - STATE(472), 1, + STATE(522), 1, sym_else_clause, - ACTIONS(957), 13, + ACTIONS(942), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -35518,7 +35366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(959), 33, + ACTIONS(944), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35552,20 +35400,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15341] = 8, + [15201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, - anon_sym_else, - ACTIONS(947), 1, - anon_sym_elif, - STATE(288), 1, - aux_sym_if_statement_repeat1, - STATE(431), 1, - sym_elif_clause, - STATE(498), 1, - sym_else_clause, - ACTIONS(969), 13, + ACTIONS(986), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -35579,58 +35417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(967), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [15410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(953), 38, + ACTIONS(988), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35669,1458 +35456,127 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15469] = 21, + [15260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, + ACTIONS(986), 13, + sym__dedent, sym__string_start, - ACTIONS(629), 1, sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - ACTIONS(923), 1, - anon_sym_COLON, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1054), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [15564] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(949), 1, - sym_expression, - ACTIONS(75), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, + ACTIONS(988), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [15656] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1010), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [15748] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(983), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [15840] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1003), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [15932] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1131), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16024] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1005), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16116] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1115), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16208] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1175), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16300] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1138), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16392] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(902), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16484] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(999), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16576] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1140), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16668] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1008), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16760] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1136), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16852] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1009), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [16944] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1084), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17036] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(995), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17128] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1141), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17220] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1052), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17312] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1005), 1, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_elif, - STATE(331), 1, - aux_sym_if_statement_repeat1, - STATE(431), 1, - sym_elif_clause, - ACTIONS(1001), 13, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(990), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15378] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 1, + anon_sym_except, + STATE(308), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(948), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -37134,7 +35590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1003), 34, + ACTIONS(946), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37152,6 +35608,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15441] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + ACTIONS(940), 1, + anon_sym_elif, + STATE(382), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + STATE(491), 1, + sym_else_clause, + ACTIONS(997), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(999), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, anon_sym_with, anon_sym_match, anon_sym_def, @@ -37169,223 +35687,241 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17376] = 20, + [15510] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(369), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(489), 1, + sym_else_clause, + ACTIONS(997), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1128), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, + sym_ellipsis, + sym_float, + ACTIONS(999), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17468] = 20, + [15579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(992), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1159), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, + sym_ellipsis, + sym_float, + ACTIONS(990), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17560] = 20, + [15638] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(877), 1, + anon_sym_else, + ACTIONS(984), 1, + anon_sym_elif, + STATE(369), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + STATE(526), 1, + sym_else_clause, + ACTIONS(936), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(881), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, + sym_ellipsis, + sym_float, + ACTIONS(938), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + [15707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(964), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(966), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17652] = 20, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [15766] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -37398,957 +35934,20 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(380), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(386), 1, + ACTIONS(494), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, STATE(698), 1, sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, - STATE(1025), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17744] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, + STATE(702), 1, sym_primary_expression, - STATE(1107), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17836] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(878), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [17928] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1089), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18020] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1006), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18112] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(891), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(722), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(895), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(998), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18204] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(890), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18296] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1068), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18388] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(993), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18480] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(894), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18572] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1030), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18664] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(1008), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(918), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(455), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1010), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18758] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1033), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [18850] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, STATE(953), 1, sym_expression, ACTIONS(75), 2, @@ -38363,20 +35962,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38394,1364 +35993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18942] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(918), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19034] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1039), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19126] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1170), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19218] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1085), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19310] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(1014), 1, - sym__string_start, - STATE(1288), 1, - sym_string, - ACTIONS(280), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(302), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(265), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [19380] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(888), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19472] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(892), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19564] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(878), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19656] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1056), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19748] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(893), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19840] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(895), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [19932] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1100), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20024] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1155), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20116] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1083), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20208] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(908), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20300] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1079), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20392] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(904), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20484] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(966), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20576] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(634), 1, - sym_primary_expression, - STATE(1060), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [20668] = 20, + [15858] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -39768,17 +36010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(980), 1, + STATE(899), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -39792,20 +36034,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39823,7 +36065,79 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20760] = 20, + [15950] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(994), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16042] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39836,20 +36150,452 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(380), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(386), 1, + ACTIONS(494), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, STATE(698), 1, sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(972), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16134] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1169), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16226] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(890), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16318] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1126), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16410] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(963), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16502] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(898), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16594] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, STATE(1053), 1, sym_expression, ACTIONS(75), 2, @@ -39864,20 +36610,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39895,7 +36641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20852] = 20, + [16686] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -39916,13 +36662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1122), 1, + STATE(1166), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -39942,14 +36688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39967,7 +36713,151 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20944] = 20, + [16778] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1161), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16870] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(951), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [16962] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -39984,17 +36874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(891), 1, + STATE(904), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -40008,20 +36898,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40039,39 +36929,615 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21036] = 20, + [17054] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1094), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17146] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, ACTIONS(288), 1, anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1154), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17238] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1150), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17330] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1106), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17422] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1092), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17514] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1151), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17606] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1059), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17698] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(985), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [17790] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(889), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40080,20 +37546,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40111,79 +37577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21128] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(945), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [21220] = 20, + [17882] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -40204,13 +37598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(921), 1, + STATE(934), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -40230,14 +37624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40255,39 +37649,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21312] = 20, + [17974] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(263), 1, + sym_identifier, ACTIONS(288), 1, anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(637), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(900), 1, + STATE(879), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40296,20 +37690,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40327,7 +37721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21404] = 20, + [18066] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40340,21 +37734,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(380), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(386), 1, + ACTIONS(494), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, STATE(698), 1, sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, - STATE(948), 1, + STATE(702), 1, + sym_primary_expression, + STATE(1069), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40368,20 +37762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40399,92 +37793,20 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21496] = 20, + [18158] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(609), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(617), 1, anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(947), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [21588] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(891), 1, + ACTIONS(889), 1, sym_identifier, ACTIONS(897), 1, anon_sym_not, @@ -40492,40 +37814,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(901), 1, anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, sym_string, STATE(722), 1, - sym_primary_expression, - STATE(1086), 1, + sym_template_string, + STATE(1064), 1, sym_expression, - ACTIONS(623), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(617), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(609), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(895), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(998), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(805), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40543,7 +37865,223 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21680] = 20, + [18250] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(984), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18342] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1081), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18434] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1015), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18526] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -40564,13 +38102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1158), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -40590,14 +38128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40615,7 +38153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21772] = 20, + [18618] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -40636,11 +38174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, STATE(1142), 1, sym_expression, @@ -40662,14 +38200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40687,281 +38225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21864] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(1088), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [21956] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(380), 1, - sym_identifier, - ACTIONS(386), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(978), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(382), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(977), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [22048] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(701), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - STATE(896), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(697), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(876), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [22140] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1016), 1, - anon_sym_elif, - STATE(384), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - ACTIONS(1001), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1003), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22204] = 20, + [18710] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -40982,13 +38246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(637), 1, anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(570), 1, + sym_template_string, + STATE(652), 1, sym_primary_expression, - STATE(1163), 1, + STATE(910), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -41008,14 +38272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41033,7 +38297,295 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22296] = 20, + [18802] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1021), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18894] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1024), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [18986] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1027), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19078] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1043), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19170] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -41046,21 +38598,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(380), 1, + ACTIONS(488), 1, sym_identifier, - ACTIONS(386), 1, + ACTIONS(494), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(697), 1, - sym_primary_expression, STATE(698), 1, sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, - STATE(965), 1, + STATE(702), 1, + sym_primary_expression, + STATE(1140), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -41074,20 +38626,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(382), 5, + ACTIONS(490), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(977), 6, + STATE(955), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41105,20 +38657,92 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22388] = 20, + [19262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(627), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(891), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1058), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19354] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, sym_identifier, ACTIONS(897), 1, anon_sym_not, @@ -41126,40 +38750,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(901), 1, anon_sym_await, - STATE(704), 1, - sym_template_string, - STATE(706), 1, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, sym_string, STATE(722), 1, - sym_primary_expression, - STATE(1099), 1, + sym_template_string, + STATE(1029), 1, sym_expression, - ACTIONS(623), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(617), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(609), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(895), 5, + ACTIONS(893), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(998), 6, + STATE(996), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(805), 17, + STATE(809), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41177,7 +38801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22480] = 20, + [19446] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -41194,17 +38818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(691), 1, + ACTIONS(689), 1, sym_identifier, - ACTIONS(701), 1, + ACTIONS(699), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(570), 1, + sym_template_string, + STATE(653), 1, sym_primary_expression, - STATE(887), 1, + STATE(897), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -41218,20 +38842,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(697), 5, + ACTIONS(695), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(876), 6, + STATE(880), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41249,9 +38873,2496 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22572] = 3, + [19538] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(993), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19630] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1068), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19722] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1170), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19814] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(901), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19906] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(900), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [19998] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1091), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20090] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1160), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20182] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(896), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20274] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(895), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20366] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1003), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20458] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1128), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20550] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(970), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20642] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1164), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20734] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(969), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20826] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1005), 1, + anon_sym_elif, + STATE(369), 1, + aux_sym_if_statement_repeat1, + STATE(433), 1, + sym_elif_clause, + ACTIONS(1003), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1001), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [20890] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(889), 1, + sym_identifier, + ACTIONS(897), 1, + anon_sym_not, + ACTIONS(899), 1, + anon_sym_lambda, + ACTIONS(901), 1, + anon_sym_await, + STATE(718), 1, + sym_primary_expression, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(1019), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(893), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(996), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [20982] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(879), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21074] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(883), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21166] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1162), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21258] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(884), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21350] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(967), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21442] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1093), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21534] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21626] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1125), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21718] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(979), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21810] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1073), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [21902] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1008), 1, + sym__string_start, + STATE(1256), 1, + sym_string, + ACTIONS(280), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(302), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(265), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [21972] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 1, + anon_sym_elif, + STATE(382), 1, + aux_sym_if_statement_repeat1, + STATE(417), 1, + sym_elif_clause, + ACTIONS(1003), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1001), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22036] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(888), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22128] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(1083), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22220] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(1007), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22312] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(927), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22404] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(651), 1, + anon_sym_not, + ACTIONS(653), 1, + anon_sym_lambda, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(699), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(653), 1, + sym_primary_expression, + STATE(893), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(695), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22496] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(488), 1, + sym_identifier, + ACTIONS(494), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(702), 1, + sym_primary_expression, + STATE(1009), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(490), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(955), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22588] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(637), 1, + anon_sym_not, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1017), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(652), 1, + sym_primary_expression, + STATE(934), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(452), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1015), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(880), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [22682] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 1, + anon_sym_case, + STATE(412), 2, + sym_case_block, + aux_sym_cases_repeat1, ACTIONS(1021), 13, sym__dedent, sym__string_start, @@ -41266,7 +41377,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1019), 36, + ACTIONS(1019), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1025), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1027), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41303,63 +41465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22629] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - anon_sym_case, - STATE(397), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1023), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1025), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22690] = 3, + [22800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1031), 13, @@ -41413,10 +41519,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22747] = 3, + [22857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 13, + ACTIONS(1025), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -41430,7 +41536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1033), 36, + ACTIONS(1027), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41467,7 +41573,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22804] = 3, + [22914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1035), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 13, @@ -41521,7 +41681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22861] = 3, + [23028] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 13, @@ -41575,776 +41735,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1045), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [22975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1051), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23032] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 1, - anon_sym_case, - STATE(397), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1053), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1055), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23093] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1060), 1, - anon_sym_case, - STATE(398), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1053), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1055), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1065), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1041), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1043), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1037), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1039), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1069), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1073), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1073), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1033), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1069), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23610] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1075), 1, - anon_sym_case, - STATE(398), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1023), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1025), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1031), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1029), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23728] = 8, + [23085] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(270), 1, anon_sym_COMMA, ACTIONS(278), 1, anon_sym_COLON_EQ, - ACTIONS(1077), 1, + ACTIONS(1045), 1, sym_identifier, ACTIONS(280), 2, anon_sym_COLON, @@ -42396,115 +41794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - [23795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1019), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1051), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23909] = 3, + [23152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1047), 13, @@ -42521,7 +41811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1045), 36, + ACTIONS(1049), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42558,9 +41848,718 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [23966] = 3, + [23209] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1051), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1053), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1057), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1043), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1039), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1057), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1053), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1059), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1061), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1049), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1031), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1029), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1059), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1061), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_case, + STATE(409), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1063), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1065), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1035), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1070), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1072), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23954] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1074), 1, + anon_sym_case, + STATE(412), 2, + sym_case_block, + aux_sym_cases_repeat1, ACTIONS(1063), 13, sym__dedent, sym__string_start, @@ -42575,7 +42574,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1065), 36, + ACTIONS(1065), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1070), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1072), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42612,71 +42662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24023] = 7, + [24072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 1, - anon_sym_COMMA, - ACTIONS(1086), 1, - anon_sym_COLON_EQ, - ACTIONS(1088), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1090), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1084), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [24087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - STATE(533), 1, - sym_else_clause, - ACTIONS(1092), 13, + ACTIONS(1077), 1, + anon_sym_case, + STATE(409), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1021), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -42690,7 +42684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1094), 33, + ACTIONS(1019), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42724,45 +42718,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24147] = 3, + [24133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(869), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(855), 1, + anon_sym_finally, + STATE(523), 1, + sym_finally_clause, + ACTIONS(1079), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(867), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1081), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24193] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_COLON_EQ, + ACTIONS(1092), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1085), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1094), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42776,14 +42799,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym__semicolon, - [24203] = 3, + ACTIONS(1083), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1088), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [24257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 13, - sym__dedent, + ACTIONS(1096), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -42794,7 +42847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 35, + ACTIONS(1098), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42830,72 +42883,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24259] = 5, + [24313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_finally, - STATE(531), 1, - sym_finally_clause, - ACTIONS(1100), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1102), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24319] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, + ACTIONS(877), 1, anon_sym_else, - STATE(557), 1, + STATE(473), 1, sym_else_clause, - ACTIONS(1104), 13, + ACTIONS(1102), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -42906,7 +42904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1106), 33, + ACTIONS(1100), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42940,12 +42938,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24379] = 5, + [24373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, + ACTIONS(1106), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1104), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, anon_sym_else, - STATE(499), 1, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + STATE(513), 1, sym_else_clause, ACTIONS(1108), 13, sym__string_start, @@ -42995,7 +43046,115 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24439] = 22, + [24489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + STATE(548), 1, + sym_else_clause, + ACTIONS(1114), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1112), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [24549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(861), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym__semicolon, + [24605] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -43004,39 +43163,38 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(659), 1, + ACTIONS(667), 1, sym_identifier, - ACTIONS(661), 1, + ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(673), 1, + ACTIONS(681), 1, anon_sym_await, - ACTIONS(1112), 1, - anon_sym_RPAREN, - ACTIONS(1114), 1, + ACTIONS(1118), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1123), 1, + STATE(570), 1, + sym_template_string, + STATE(854), 1, sym_pattern, - STATE(1410), 1, - sym__patterns, + STATE(862), 1, + sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(742), 2, + ACTIONS(1116), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(735), 2, sym_attribute, sym_subscript, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(855), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -43045,13 +43203,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(665), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 15, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -43067,14 +43225,14 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24533] = 5, + [24697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, + ACTIONS(877), 1, anon_sym_else, - STATE(563), 1, + STATE(481), 1, sym_else_clause, - ACTIONS(1118), 13, + ACTIONS(1122), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -43088,7 +43246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1116), 33, + ACTIONS(1120), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43122,68 +43280,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24593] = 5, + [24757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, - anon_sym_else, - STATE(508), 1, - sym_else_clause, - ACTIONS(1120), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1122), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24653] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(518), 1, - sym_else_clause, + ACTIONS(881), 1, + anon_sym_finally, + STATE(499), 1, + sym_finally_clause, ACTIONS(1126), 13, sym__dedent, sym__string_start, @@ -43232,17 +43335,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24713] = 5, + [24817] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(851), 1, anon_sym_else, - STATE(494), 1, + STATE(532), 1, sym_else_clause, - ACTIONS(1092), 13, - sym__dedent, + ACTIONS(1114), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -43253,7 +43356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1094), 33, + ACTIONS(1112), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43287,9 +43390,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24773] = 3, + [24877] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(877), 1, + anon_sym_else, + STATE(505), 1, + sym_else_clause, ACTIONS(1130), 13, sym__dedent, sym__string_start, @@ -43304,7 +43411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1128), 35, + ACTIONS(1128), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43317,8 +43424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -43340,13 +43445,9 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24829] = 5, + [24937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_finally, - STATE(561), 1, - sym_finally_clause, ACTIONS(1132), 13, sym__string_start, sym__template_string_start, @@ -43361,221 +43462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1134), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - STATE(509), 1, - sym_else_clause, - ACTIONS(1118), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1116), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(875), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(873), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [25005] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(501), 1, - sym_else_clause, - ACTIONS(1104), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1106), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1138), 35, + ACTIONS(1134), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43611,170 +43498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25121] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(855), 1, - anon_sym_finally, - STATE(492), 1, - sym_finally_clause, - ACTIONS(1132), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1134), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1138), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25237] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(475), 1, - sym_else_clause, - ACTIONS(1108), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1110), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25297] = 7, + [24993] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(270), 1, @@ -43831,10 +43555,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [25361] = 3, + [25057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 13, + ACTIONS(877), 1, + anon_sym_else, + STATE(559), 1, + sym_else_clause, + ACTIONS(1108), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1110), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(881), 1, + anon_sym_finally, + STATE(479), 1, + sym_finally_clause, + ACTIONS(1079), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1081), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + STATE(545), 1, + sym_else_clause, + ACTIONS(1136), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -43848,7 +43686,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 35, + ACTIONS(1138), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1096), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1098), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43884,7 +43773,480 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25417] = 7, + [25293] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(854), 1, + sym_pattern, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(1140), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + STATE(510), 1, + sym_else_clause, + ACTIONS(1130), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1128), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(877), 1, + anon_sym_else, + STATE(537), 1, + sym_else_clause, + ACTIONS(1136), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1138), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + STATE(566), 1, + sym_else_clause, + ACTIONS(1102), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1100), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, + anon_sym_else, + STATE(483), 1, + sym_else_clause, + ACTIONS(1122), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1120), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1132), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1134), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [25681] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 1, + anon_sym_COMMA, + ACTIONS(1145), 1, + anon_sym_COLON_EQ, + ACTIONS(1147), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1149), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1088), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [25745] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + ACTIONS(1151), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1177), 1, + sym_pattern, + STATE(1416), 1, + sym__patterns, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [25839] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(585), 1, @@ -43941,19 +44303,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [25481] = 7, + [25903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_COLON_EQ, - ACTIONS(1145), 2, - anon_sym_COLON, + ACTIONS(867), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_EQ, - ACTIONS(1140), 3, - anon_sym_RPAREN, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1147), 13, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43967,167 +44355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1079), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1084), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [25545] = 21, + sym__semicolon, + [25959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(849), 1, - sym_pattern, - STATE(861), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(1149), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [25637] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(855), 1, - anon_sym_finally, - STATE(476), 1, - sym_finally_clause, - ACTIONS(1100), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1102), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 13, + ACTIONS(1106), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -44141,7 +44373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1128), 35, + ACTIONS(1104), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44177,139 +44409,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25753] = 5, + [26015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(497), 1, - sym_else_clause, - ACTIONS(1120), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1122), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25813] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(849), 1, - sym_pattern, - STATE(861), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(1151), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [25905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_else, - STATE(479), 1, - sym_else_clause, + ACTIONS(855), 1, + anon_sym_finally, + STATE(531), 1, + sym_finally_clause, ACTIONS(1126), 13, sym__string_start, sym__template_string_start, @@ -44358,554 +44464,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25965] = 21, + [26075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1182), 1, - sym_pattern, - STATE(1499), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [26056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1153), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1155), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26111] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1301), 1, - sym_pattern, - STATE(1479), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [26202] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1218), 1, - sym_pattern, - STATE(1411), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [26293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1157), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1161), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1163), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1165), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1165), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26513] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1274), 1, - sym_pattern, - STATE(1436), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [26604] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, + ACTIONS(1155), 1, anon_sym_COMMA, - ACTIONS(1178), 1, + ACTIONS(1162), 1, anon_sym_EQ, - ACTIONS(1176), 14, + ACTIONS(1160), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -44920,7 +44486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1174), 15, + ACTIONS(1158), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -44936,7 +44502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1169), 16, + ACTIONS(1153), 16, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -44953,16 +44519,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [26665] = 6, + [26136] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1237), 1, + sym_pattern, + STATE(1443), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26227] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1279), 1, + sym_pattern, + STATE(1504), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26318] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1306), 1, + sym_pattern, + STATE(1476), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1166), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26464] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 1, + anon_sym_COMMA, + ACTIONS(1177), 1, anon_sym_EQ, - ACTIONS(1140), 3, + ACTIONS(1175), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1173), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1168), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [26525] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 1, + anon_sym_EQ, + ACTIONS(1085), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1079), 14, + ACTIONS(1083), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_if, @@ -44977,7 +44860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1147), 14, + ACTIONS(1094), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -44992,7 +44875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1084), 15, + ACTIONS(1088), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -45008,68 +44891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [26726] = 6, + [26586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, - anon_sym_COMMA, - ACTIONS(1189), 1, - anon_sym_EQ, - ACTIONS(1187), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1185), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1180), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [26787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1193), 13, - sym__dedent, + ACTIONS(1179), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45080,7 +44908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1191), 34, + ACTIONS(1181), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45115,7 +44943,111 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26842] = 21, + [26641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1183), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1185), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1179), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1181), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26751] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -45124,37 +45056,37 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(659), 1, + ACTIONS(667), 1, sym_identifier, - ACTIONS(661), 1, + ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(673), 1, + ACTIONS(681), 1, anon_sym_await, - ACTIONS(1114), 1, + ACTIONS(1118), 1, anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(861), 1, + STATE(570), 1, + sym_template_string, + STATE(862), 1, sym_primary_expression, - STATE(1270), 1, + STATE(1233), 1, sym_pattern, - STATE(1439), 1, + STATE(1422), 1, sym_pattern_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(742), 2, + STATE(735), 2, sym_attribute, sym_subscript, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(855), 3, + STATE(853), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -45163,13 +45095,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(665), 5, + ACTIONS(673), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 15, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -45185,7 +45117,392 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [26933] = 3, + [26842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1189), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [26897] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1291), 1, + sym_pattern, + STATE(1507), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [26988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 1, + anon_sym_COMMA, + ACTIONS(1147), 1, + anon_sym_EQ, + ACTIONS(1149), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1088), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [27049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1183), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1185), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1193), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1166), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1193), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27269] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 13, @@ -45237,340 +45554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1193), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1191), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1157), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1161), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1163), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27153] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1081), 1, - anon_sym_COMMA, - ACTIONS(1088), 1, - anon_sym_EQ, - ACTIONS(1090), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1084), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [27214] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1183), 1, - sym_pattern, - STATE(1496), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [27305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1153), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1155), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27360] = 3, + [27324] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 13, @@ -45622,7 +45606,129 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27415] = 3, + [27379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1189), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27434] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1280), 1, + sym_pattern, + STATE(1428), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [27525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 13, @@ -45673,10 +45779,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27469] = 3, + [27579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1203), 13, + ACTIONS(875), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45690,7 +45796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1205), 33, + ACTIONS(873), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45724,7 +45830,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27523] = 3, + [27633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1205), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1203), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27687] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 13, @@ -45775,13 +45932,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27577] = 3, + [27741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 13, - sym__dedent, + ACTIONS(1211), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45792,7 +45949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1211), 33, + ACTIONS(1213), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45826,7 +45983,4631 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27631] = 3, + [27795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1215), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1219), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1223), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1227), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1229), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1231), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(849), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1235), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1239), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1243), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28281] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(854), 1, + sym_pattern, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [28369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1243), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1249), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1253), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1255), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1255), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1259), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1263), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1259), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1263), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1267), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1271), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [28963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1277), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1275), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1281), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1279), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1285), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1283), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1289), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1081), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1291), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1211), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1213), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1295), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1299), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1301), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1303), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29503] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_LPAREN, + ACTIONS(679), 1, + anon_sym_LBRACK, + ACTIONS(681), 1, + anon_sym_await, + ACTIONS(1118), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + STATE(1307), 1, + sym_pattern, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(735), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(853), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [29591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1309), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1307), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1313), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1315), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1317), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1321), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1323), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1309), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1307), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1327), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [29969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1313), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1333), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1289), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1295), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1337), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1335), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1253), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1327), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1337), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1335), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1126), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1124), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1339), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1341), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1339), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1341), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1235), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1345), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1321), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1345), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1349), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1351), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1353), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1357), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1355), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1249), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1293), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1291), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1361), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1231), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1239), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1285), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1283), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1365), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1363), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1367), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1373), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1371), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1375), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1223), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1357), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1355), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1081), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1351), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1353), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1303), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1367), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1267), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1281), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1279), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1359), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1361), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [31967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(849), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1227), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1229), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(873), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1325), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1323), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1349), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1219), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1126), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1124), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1205), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1203), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1375), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1271), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1333), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1299), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1301), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1315), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1317), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1373), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1371), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 13, @@ -45877,3345 +50658,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1215), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1219), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1225), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1229), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1227), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1231), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [27955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1237), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1241), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1245), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1211), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1249), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1205), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1251), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1255), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1261), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1259), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1265), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1263), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1269), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1267), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1273), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1271), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1102), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1275), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1249), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1279), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1283), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1287), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1291), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [28981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1295), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1301), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1299), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1303), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1305), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1229), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1227), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29197] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(849), 1, - sym_pattern, - STATE(861), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [29285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1309), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1307), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1291), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1311), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1313), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1273), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1271), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1317), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1315), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1277), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1275), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1321), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1319), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1301), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1299), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1323), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1325), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1329), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1327), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1331), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1303), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1305), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1335), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [29987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1339), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1341), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1295), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1317), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1315), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1134), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1245), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1241), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1237), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(857), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(859), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1329), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1327), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1225), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1345), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1343), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(849), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(847), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1219), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1349), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1351), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1353), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1351), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1353), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1355), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1357), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1231), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1269), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1267), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1287), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1345), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1343), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1335), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1359), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31229] = 3, + [32777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1365), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49260,112 +50709,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31283] = 3, + [32831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1367), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1371), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 13, + ACTIONS(1277), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49379,7 +50726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1331), 33, + ACTIONS(1275), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49413,7 +50760,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31445] = 3, + [32885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1215), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32939] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 13, @@ -49464,1299 +50862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1215), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1349), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1375), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1377), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1321), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1319), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1359), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1375), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1377), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31823] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(659), 1, - sym_identifier, - ACTIONS(661), 1, - anon_sym_LPAREN, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_await, - ACTIONS(1114), 1, - anon_sym_STAR, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - STATE(1303), 1, - sym_pattern, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(742), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(855), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(665), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [31911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1355), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1357), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1251), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1255), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1261), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1259), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(857), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(859), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1265), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1263), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1339), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1341), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1134), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1309), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1307), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1371), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(849), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(847), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1102), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1279), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1285), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1283), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1323), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1325), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1311), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1313), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1369), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1367), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1363), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [32883] = 18, + [32993] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -50773,16 +50879,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1385), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(861), 1, + STATE(570), 1, + sym_template_string, + STATE(862), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(745), 2, + STATE(740), 2, sym_attribute, sym_subscript, ACTIONS(296), 3, @@ -50804,7 +50910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 15, + STATE(649), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -50820,12 +50926,112 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [32965] = 5, + [33075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + STATE(573), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1088), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(312), 1, + sym__template_string_start, + STATE(572), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1088), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33185] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1391), 1, sym__template_string_start, - STATE(568), 2, + STATE(571), 2, sym_template_string, aux_sym_concatenated_template_string_repeat1, ACTIONS(1389), 6, @@ -50870,14 +51076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33020] = 5, + [33240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, - sym__string_start, - STATE(569), 2, - sym_string, - aux_sym_concatenated_string_repeat1, + ACTIONS(312), 1, + sym__template_string_start, + STATE(571), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, ACTIONS(1396), 6, anon_sym_as, anon_sym_STAR, @@ -50920,72 +51126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(312), 1, - sym__template_string_start, - STATE(568), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1403), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1401), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33130] = 5, + [33295] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, sym__string_start, - STATE(569), 2, + STATE(574), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1407), 6, + ACTIONS(1400), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1405), 34, + ACTIONS(1398), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51020,107 +51176,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33185] = 5, + [33350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, + ACTIONS(1406), 1, + sym__string_start, + STATE(574), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1404), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33405] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, sym__template_string_start, - STATE(570), 2, + ACTIONS(1409), 1, + anon_sym_not, + STATE(720), 1, + sym_string, + STATE(722), 1, sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1084), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + STATE(751), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33240] = 5, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33481] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, ACTIONS(310), 1, sym__string_start, - STATE(571), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1084), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 34, - anon_sym_DOT, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + ACTIONS(1411), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(663), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33295] = 16, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33557] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -51135,13 +51361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(576), 1, anon_sym_await, - ACTIONS(1409), 1, + ACTIONS(1413), 1, anon_sym_not, STATE(698), 1, sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, - STATE(712), 1, + STATE(717), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -51162,7 +51388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51180,67 +51406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [33371] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - ACTIONS(1411), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(683), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33447] = 16, + [33633] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -51255,512 +51421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(595), 1, anon_sym_await, - ACTIONS(1413), 1, - anon_sym_not, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(676), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33523] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, ACTIONS(1415), 1, anon_sym_not, - STATE(704), 1, - sym_template_string, - STATE(706), 1, + STATE(569), 1, sym_string, - STATE(732), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33599] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, + STATE(570), 1, sym_template_string, - STATE(573), 1, - sym_string, - STATE(683), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33672] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(672), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33745] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(676), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 35, - sym__template_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 35, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [33916] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(679), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [33989] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(665), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34062] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, STATE(667), 1, sym_primary_expression, ACTIONS(304), 2, @@ -51782,7 +51448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51800,7 +51466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [34135] = 15, + [33709] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -51815,11 +51481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(595), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(670), 1, + STATE(570), 1, + sym_template_string, + STATE(672), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, @@ -51840,7 +51506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51858,7 +51524,215 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [34208] = 3, + [33782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 35, + sym__string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1421), 35, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33880] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(706), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [33953] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(663), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34026] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1427), 6, @@ -51904,67 +51778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34257] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1433), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(858), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1431), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34334] = 15, + [34075] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -51981,181 +51795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, STATE(698), 1, sym_string, - STATE(699), 1, - sym_template_string, - STATE(721), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34407] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(663), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34480] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(714), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34553] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, + STATE(700), 1, sym_template_string, STATE(713), 1, sym_primary_expression, @@ -52178,7 +51818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(795), 17, + STATE(760), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52196,7 +51836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [34626] = 15, + [34148] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -52211,416 +51851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(605), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(661), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34699] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, + STATE(570), 1, sym_template_string, - STATE(573), 1, - sym_string, - STATE(677), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34772] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(720), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34845] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(668), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34918] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(669), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [34991] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(678), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35064] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(673), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35137] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, STATE(664), 1, sym_primary_expression, ACTIONS(304), 2, @@ -52642,7 +51876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52660,7 +51894,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [35210] = 15, + [34221] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(739), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34294] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -52675,11 +51967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(605), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(681), 1, + STATE(570), 1, + sym_template_string, + STATE(673), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, @@ -52700,7 +51992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52718,7 +52010,2041 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [35283] = 3, + [34367] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(712), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34440] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(736), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34513] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(683), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34586] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(734), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34659] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(677), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34732] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(741), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34805] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1433), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(859), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1431), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34882] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(667), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [34955] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(745), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35028] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(751), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35101] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(752), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35174] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(670), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35247] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(753), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35320] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(723), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35393] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(682), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35466] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(721), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35539] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(668), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35612] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(678), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35685] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(717), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35758] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(742), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35831] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(714), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35904] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(674), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [35977] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(707), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36050] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(708), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36123] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(685), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36196] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(662), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36269] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(671), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36342] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(705), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36415] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(746), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36488] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(681), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36561] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(698), 1, + sym_string, + STATE(700), 1, + sym_template_string, + STATE(710), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(760), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36634] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(720), 1, + sym_string, + STATE(722), 1, + sym_template_string, + STATE(744), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(809), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36707] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(679), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36780] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(680), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36853] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1385), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(862), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(740), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1383), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 15, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [36930] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1437), 6, @@ -52764,7 +54090,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35332] = 15, + [36979] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(666), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [37052] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -52779,11 +54163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(605), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, - STATE(682), 1, + STATE(570), 1, + sym_template_string, + STATE(676), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, @@ -52804,7 +54188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52822,7 +54206,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [35405] = 15, + [37125] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(570), 1, + sym_template_string, + STATE(665), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(583), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(649), 17, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_concatenated_template_string, + sym_await, + [37198] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -52837,10 +54279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(605), 1, anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, + STATE(569), 1, sym_string, + STATE(570), 1, + sym_template_string, STATE(684), 1, sym_primary_expression, ACTIONS(304), 2, @@ -52862,7 +54304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(658), 17, + STATE(649), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52880,1343 +54322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [35478] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(662), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35551] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(717), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35624] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(675), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35697] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(724), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35770] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(748), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35843] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(712), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35916] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(711), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [35989] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(747), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36062] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(744), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36135] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(680), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36208] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(739), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36281] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(709), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36354] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(705), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36427] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(708), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36500] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(83), 1, - sym__template_string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(699), 1, - sym_template_string, - STATE(710), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(795), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36573] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(738), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36646] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1385), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(861), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(745), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1383), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 15, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36723] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(752), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36796] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(754), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36869] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(728), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36942] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(729), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [37015] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(611), 1, - anon_sym_LPAREN, - ACTIONS(619), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - anon_sym_await, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - STATE(704), 1, - sym_template_string, - STATE(706), 1, - sym_string, - STATE(732), 1, - sym_primary_expression, - ACTIONS(623), 2, - sym_ellipsis, - sym_float, - ACTIONS(617), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(609), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(613), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(805), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [37088] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(572), 1, - sym_template_string, - STATE(573), 1, - sym_string, - STATE(674), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(658), 17, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [37161] = 3, + [37271] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 6, @@ -54261,7 +54367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37209] = 3, + [37319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1445), 6, @@ -54306,7 +54412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37257] = 3, + [37367] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1449), 6, @@ -54351,7 +54457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37305] = 3, + [37415] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1453), 6, @@ -54396,52 +54502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37401] = 3, + [37463] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1457), 6, @@ -54486,58 +54547,868 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37449] = 20, + [37511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_PIPE, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - ACTIONS(1479), 1, + ACTIONS(1461), 6, + anon_sym_as, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1483), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, - ACTIONS(1485), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(1487), 1, anon_sym_CARET, - ACTIONS(1491), 1, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1475), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1487), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1491), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1503), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1509), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1507), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38375] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1531), 1, + anon_sym_EQ, + ACTIONS(1535), 1, + anon_sym_not, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1543), 1, anon_sym_is, STATE(846), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1465), 2, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1467), 2, + ACTIONS(1519), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1473), 2, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1489), 2, + ACTIONS(1541), 2, anon_sym_LT, anon_sym_GT, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1481), 3, + ACTIONS(1533), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1469), 6, + ACTIONS(1521), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1463), 10, + ACTIONS(1515), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -54548,643 +55419,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [37531] = 3, + [38457] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 34, + ACTIONS(1511), 1, anon_sym_DOT, + ACTIONS(1513), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1527), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 6, + ACTIONS(1531), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1497), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1505), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1509), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1517), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1521), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [37963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1525), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1529), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1451), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38155] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1479), 1, - anon_sym_as, - ACTIONS(1543), 1, - anon_sym_PIPE, - ACTIONS(1547), 1, - anon_sym_STAR_STAR, ACTIONS(1551), 1, - anon_sym_not, - ACTIONS(1553), 1, - anon_sym_AMP, + anon_sym_PIPE, ACTIONS(1555), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(1559), 1, + anon_sym_not, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1567), 1, anon_sym_is, - STATE(844), 1, + STATE(845), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1537), 2, + ACTIONS(1545), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1539), 2, + ACTIONS(1547), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1545), 2, + ACTIONS(1553), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1557), 2, + ACTIONS(1565), 2, anon_sym_LT, anon_sym_GT, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1541), 6, + ACTIONS(1549), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1463), 10, + ACTIONS(1515), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -55195,142 +55481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [38237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38381] = 3, + [38539] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1571), 6, @@ -55375,7 +55526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38429] = 3, + [38587] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1575), 6, @@ -55420,7 +55571,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38477] = 3, + [38635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [38683] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1579), 6, @@ -55465,7 +55661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38525] = 3, + [38731] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1583), 6, @@ -55510,7 +55706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38573] = 3, + [38779] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1587), 6, @@ -55555,97 +55751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38717] = 3, + [38827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1591), 6, @@ -55690,7 +55796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38765] = 3, + [38875] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1595), 6, @@ -55735,23 +55841,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [38813] = 8, + [38923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, ACTIONS(1599), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -55761,130 +55867,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [38870] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_STAR_STAR, - ACTIONS(1555), 1, - anon_sym_CARET, - ACTIONS(1537), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1539), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1549), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [38937] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - ACTIONS(1487), 1, - anon_sym_CARET, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1467), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1473), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -55892,84 +55890,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [39004] = 8, + [38980] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1551), 1, + anon_sym_PIPE, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1603), 5, - anon_sym_as, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1603), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 28, + ACTIONS(1601), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39061] = 12, + [39051] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1551), 1, + anon_sym_PIPE, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - ACTIONS(1465), 2, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1467), 2, + ACTIONS(1547), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1473), 2, + ACTIONS(1553), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1481), 3, + ACTIONS(1557), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1607), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39122] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1607), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39193] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1611), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39264] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1603), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1601), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, ACTIONS(1599), 3, - anon_sym_EQ, + anon_sym_as, anon_sym_LT, anon_sym_GT, ACTIONS(1597), 21, @@ -55977,7 +56206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACK, @@ -55993,28 +56223,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39126] = 8, + [39400] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1607), 5, + ACTIONS(1615), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 28, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [39457] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 28, + ACTIONS(1617), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -56043,35 +56321,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39183] = 11, + [39514] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1473), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, + ACTIONS(1619), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 23, + ACTIONS(1617), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -56080,11 +56350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -56095,18 +56370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [39246] = 8, + [39571] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, ACTIONS(1599), 5, @@ -56144,185 +56419,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [39303] = 10, + [39628] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(1551), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [39364] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [39421] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1607), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [39478] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1543), 1, - anon_sym_PIPE, - ACTIONS(1547), 1, - anon_sym_STAR_STAR, - ACTIONS(1553), 1, - anon_sym_AMP, ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, anon_sym_CARET, - ACTIONS(1537), 2, + ACTIONS(1545), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1539), 2, + ACTIONS(1547), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1545), 2, + ACTIONS(1553), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -56349,34 +56475,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39549] = 14, + [39699] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - ACTIONS(1485), 1, + ACTIONS(1537), 1, anon_sym_AMP, - ACTIONS(1487), 1, + ACTIONS(1539), 1, anon_sym_CARET, - ACTIONS(1465), 2, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1467), 2, + ACTIONS(1519), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1473), 2, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1481), 3, + ACTIONS(1533), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -56404,33 +56530,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [39618] = 8, + [39768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1603), 5, + ACTIONS(1615), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 28, + ACTIONS(1613), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -56452,140 +56579,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39675] = 15, + [39825] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_PIPE, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - ACTIONS(1485), 1, - anon_sym_AMP, - ACTIONS(1487), 1, - anon_sym_CARET, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1467), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1473), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1611), 3, - anon_sym_EQ, + ACTIONS(1599), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 18, + ACTIONS(1597), 28, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39746] = 15, + [39882] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_PIPE, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1477), 1, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - ACTIONS(1485), 1, - anon_sym_AMP, - ACTIONS(1487), 1, - anon_sym_CARET, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1467), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1473), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1615), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [39817] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_STAR_STAR, - ACTIONS(1537), 2, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1553), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -56617,111 +56680,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39880] = 15, + [39945] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1543), 1, - anon_sym_PIPE, - ACTIONS(1547), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - ACTIONS(1553), 1, - anon_sym_AMP, - ACTIONS(1555), 1, - anon_sym_CARET, - ACTIONS(1537), 2, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1539), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1545), 2, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1533), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1619), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [39951] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_PIPE, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - ACTIONS(1485), 1, - anon_sym_AMP, - ACTIONS(1487), 1, - anon_sym_CARET, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1467), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1473), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1619), 3, + ACTIONS(1599), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 18, + ACTIONS(1597), 23, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56729,30 +56732,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [40022] = 12, + [40008] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 2, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1539), 2, + ACTIONS(1547), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1545), 2, + ACTIONS(1553), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -56760,7 +56765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 21, + ACTIONS(1597), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -56775,6 +56780,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40075] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -56782,34 +56838,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40087] = 14, + sym_type_conversion, + [40140] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1529), 1, anon_sym_STAR_STAR, - ACTIONS(1553), 1, - anon_sym_AMP, - ACTIONS(1555), 1, + ACTIONS(1539), 1, anon_sym_CARET, - ACTIONS(1537), 2, + ACTIONS(1517), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1539), 2, + ACTIONS(1519), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1545), 2, + ACTIONS(1525), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40207] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_STAR_STAR, + ACTIONS(1561), 1, + anon_sym_AMP, + ACTIONS(1563), 1, + anon_sym_CARET, + ACTIONS(1545), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1547), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1553), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -56837,24 +56948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40156] = 10, + [40276] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1555), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 2, + ACTIONS(1545), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1549), 3, + ACTIONS(1557), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -56888,74 +56999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40217] = 15, + [40337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1543), 1, - anon_sym_PIPE, - ACTIONS(1547), 1, - anon_sym_STAR_STAR, - ACTIONS(1553), 1, - anon_sym_AMP, ACTIONS(1555), 1, - anon_sym_CARET, - ACTIONS(1537), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1539), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1549), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1615), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40288] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, anon_sym_STAR_STAR, - STATE(643), 2, + STATE(642), 2, sym_argument_list, sym_generator_expression, ACTIONS(1599), 5, @@ -56993,7 +57048,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40345] = 4, + [40394] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + sym__template_string_start, + STATE(686), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1389), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1387), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 1, + sym__string_start, + STATE(688), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1404), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__template_string_start, + STATE(686), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1396), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1394), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1153), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [40699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + STATE(688), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1400), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40845] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(585), 1, @@ -57037,61 +57498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [40393] = 5, + [40893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - sym__string_start, - STATE(691), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1407), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1405), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 5, + ACTIONS(1173), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1180), 33, + ACTIONS(1168), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -57125,599 +57541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [40489] = 4, + [40939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_COLON_EQ, - ACTIONS(1084), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [40537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - sym__template_string_start, - STATE(693), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1403), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1401), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(599), 1, - anon_sym_COLON_EQ, - ACTIONS(265), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - sym__string_start, - STATE(691), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1394), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1174), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1169), 33, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [40731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1624), 1, - sym__template_string_start, - STATE(693), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1389), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1387), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40781] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON_EQ, - ACTIONS(1084), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym__template_string_start, - STATE(701), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1403), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1401), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(702), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1407), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1405), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40927] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 1, - anon_sym_EQ, ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1639), 1, - anon_sym_PIPE, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - ACTIONS(1649), 1, - anon_sym_not, - ACTIONS(1651), 1, - anon_sym_AMP, - ACTIONS(1653), 1, - anon_sym_CARET, - ACTIONS(1657), 1, - anon_sym_is, - STATE(857), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1635), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1641), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1655), 2, - anon_sym_LT, - anon_sym_GT, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1647), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1637), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1463), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [41006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, + sym__template_string_start, STATE(696), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1084), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - sym__template_string_start, - STATE(695), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1084), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1180), 32, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41149] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - sym__template_string_start, - STATE(701), 2, sym_template_string, aux_sym_concatenated_template_string_repeat1, ACTIONS(1389), 5, @@ -57756,14 +57585,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41198] = 5, + [40988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 1, + ACTIONS(1158), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1153), 32, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, sym__string_start, - STATE(702), 2, + STATE(699), 2, sym_string, aux_sym_concatenated_string_repeat1, + ACTIONS(1088), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + sym__string_start, + STATE(704), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1400), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym__template_string_start, + STATE(701), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1088), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym__template_string_start, + STATE(696), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, ACTIONS(1396), 5, anon_sym_STAR, anon_sym_EQ, @@ -57800,16 +57803,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41247] = 3, + [41229] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 5, + ACTIONS(1531), 1, + anon_sym_EQ, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1642), 1, + anon_sym_PIPE, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1652), 1, + anon_sym_not, + ACTIONS(1654), 1, + anon_sym_AMP, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1660), 1, + anon_sym_is, + STATE(850), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1658), 2, + anon_sym_LT, + anon_sym_GT, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1640), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1515), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [41308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1169), 32, + ACTIONS(1168), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -57842,72 +57904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41292] = 5, + [41353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 1, - sym__template_string_start, - STATE(689), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1084), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41340] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 5, + ACTIONS(1662), 1, + sym__string_start, + STATE(704), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1404), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 25, + ACTIONS(1402), 29, sym__newline, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -57915,6 +57930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57931,120 +57948,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41394] = 5, + [41402] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - sym__string_start, - STATE(686), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1084), 4, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1419), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 32, - sym__template_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41486] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - ACTIONS(1653), 1, - anon_sym_CARET, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1635), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1641), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(787), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, ACTIONS(1599), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -58066,28 +57999,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41550] = 10, + [41466] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1631), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1642), 1, + anon_sym_PIPE, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1645), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1633), 2, + ACTIONS(1654), 1, + anon_sym_AMP, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(787), 2, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1607), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1605), 15, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41534] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(788), 2, sym_argument_list, sym_generator_expression, ACTIONS(1599), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -58114,222 +58100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41608] = 12, + [41592] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1631), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1643), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1645), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1635), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1641), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 18, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41670] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - ACTIONS(1651), 1, - anon_sym_AMP, - ACTIONS(1653), 1, - anon_sym_CARET, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1635), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1641), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 16, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41736] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1639), 1, - anon_sym_PIPE, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - ACTIONS(1651), 1, - anon_sym_AMP, - ACTIONS(1653), 1, - anon_sym_CARET, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1635), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1641), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1615), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1613), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41804] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1641), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 20, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41864] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - STATE(787), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, ACTIONS(1599), 5, @@ -58364,147 +58146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41918] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1607), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 25, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1437), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1435), 32, - sym__template_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42016] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1639), 1, - anon_sym_PIPE, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - ACTIONS(1651), 1, - anon_sym_AMP, - ACTIONS(1653), 1, - anon_sym_CARET, - ACTIONS(1633), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1635), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1641), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1619), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1617), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [42084] = 3, + [41646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1427), 4, @@ -58545,7 +58187,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42128] = 3, + [41690] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 18, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41752] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41806] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 25, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41860] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1642), 1, + anon_sym_PIPE, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1654), 1, + anon_sym_AMP, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1611), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1609), 15, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41928] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1654), 1, + anon_sym_AMP, + ACTIONS(1656), 1, + anon_sym_CARET, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1638), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 16, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [41994] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1423), 4, @@ -58554,6 +58443,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, ACTIONS(1421), 32, + sym__template_string_start, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 32, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -58586,44 +58516,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42172] = 15, + [42082] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1632), 1, anon_sym_DOT, - ACTIONS(1631), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1639), 1, + ACTIONS(1642), 1, anon_sym_PIPE, - ACTIONS(1643), 1, + ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1645), 1, + ACTIONS(1648), 1, anon_sym_STAR_STAR, - ACTIONS(1651), 1, + ACTIONS(1654), 1, anon_sym_AMP, - ACTIONS(1653), 1, + ACTIONS(1656), 1, anon_sym_CARET, - ACTIONS(1633), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1635), 2, + ACTIONS(1638), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1641), 2, + ACTIONS(1644), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(787), 2, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1611), 3, + ACTIONS(1603), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 3, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1609), 15, + ACTIONS(1601), 15, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -58639,53 +58569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42240] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_DOT, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1643), 1, - anon_sym_LBRACK, - ACTIONS(1645), 1, - anon_sym_STAR_STAR, - STATE(787), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1603), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1601), 25, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [42294] = 19, + [42150] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1665), 1, @@ -58706,7 +58590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1693), 1, anon_sym_is, - STATE(860), 1, + STATE(863), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1669), 2, anon_sym_STAR, @@ -58720,7 +58604,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - STATE(812), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, ACTIONS(1683), 3, @@ -58734,7 +58618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1463), 7, + ACTIONS(1515), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58742,264 +58626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [42370] = 8, + [42226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1607), 4, + ACTIONS(1437), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42423] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1675), 1, - anon_sym_PIPE, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1689), 1, - anon_sym_CARET, - ACTIONS(1611), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1609), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42490] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, + ACTIONS(1435), 32, sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1195), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1196), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1352), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [42571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1427), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1425), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [42614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON_EQ, - ACTIONS(1081), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1084), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42661] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -59010,6 +58648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59025,84 +58667,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42714] = 11, + [42270] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, + ACTIONS(625), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1677), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(812), 2, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42318] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1644), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(788), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1683), 3, + ACTIONS(1599), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1650), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, ACTIONS(1597), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 30, sym__newline, - sym__string_start, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -59113,138 +58759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42816] = 22, + [42378] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1715), 1, - anon_sym_if, - ACTIONS(1717), 1, - anon_sym_COLON, - STATE(897), 1, + STATE(689), 2, sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1081), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [42897] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1675), 1, - anon_sym_PIPE, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1689), 1, - anon_sym_CARET, - ACTIONS(1615), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1088), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1613), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON_EQ, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(1084), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59266,21 +58802,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43011] = 3, + [42426] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1632), 1, + anon_sym_DOT, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1646), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_STAR_STAR, + STATE(788), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 30, + ACTIONS(1597), 25, sym__newline, - sym__template_string_start, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -59288,8 +58832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59306,7 +58848,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43054] = 3, + [42480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1158), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1160), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [42525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1437), 5, @@ -59346,27 +58929,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43097] = 5, + [42568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 1, - anon_sym_COLON_EQ, - ACTIONS(607), 1, - anon_sym_EQ, - ACTIONS(265), 4, + ACTIONS(1423), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 29, + ACTIONS(1421), 30, + sym__newline, + sym__template_string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59388,7 +58968,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43144] = 5, + sym__semicolon, + [42611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [42656] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1183), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1184), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1362), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [42737] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(599), 1, @@ -59430,157 +59111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43191] = 14, + [42784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1689), 1, - anon_sym_CARET, - ACTIONS(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43256] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(298), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(265), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(593), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [43358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, + ACTIONS(1145), 1, anon_sym_COLON_EQ, - ACTIONS(265), 5, + ACTIONS(1088), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 29, + ACTIONS(1083), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59610,415 +59152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1084), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1090), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [43448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1086), 1, - anon_sym_COLON_EQ, - ACTIONS(1084), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [43493] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1084), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1147), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [43591] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1196), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1205), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1352), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [43672] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1689), 1, - anon_sym_CARET, - ACTIONS(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 17, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43735] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_DOT, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1679), 1, - anon_sym_LBRACK, - ACTIONS(1681), 1, - anon_sym_STAR_STAR, - ACTIONS(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(812), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1185), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1187), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [43841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1169), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1174), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1176), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [43886] = 4, + [42829] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(298), 3, @@ -60059,7 +59193,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [43931] = 8, + [42874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(265), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(593), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [42919] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1184), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1277), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1362), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [43000] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1611), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1609), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1083), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1088), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1149), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43112] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1675), 1, + anon_sym_PIPE, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1607), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1605), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43179] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1715), 1, + anon_sym_if, + ACTIONS(1717), 1, + anon_sym_COLON, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [43260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1173), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1175), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43305] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1665), 1, @@ -60070,15 +59549,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1681), 1, anon_sym_STAR_STAR, - STATE(812), 2, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1603), 4, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1083), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1088), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1094), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43411] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43474] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 25, + ACTIONS(1597), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -60104,12 +59723,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43984] = 22, + [43527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(1419), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 30, + sym__newline, sym__string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [43570] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43627] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1687), 1, + anon_sym_AMP, + ACTIONS(1689), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43692] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1619), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43745] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + anon_sym_COLON_EQ, ACTIONS(629), 1, + anon_sym_EQ, + ACTIONS(265), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43792] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43845] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1088), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43892] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -60133,28 +60064,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(1723), 1, anon_sym_COLON, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1019), 2, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(1081), 4, + STATE(1089), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(981), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -60163,7 +60094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [44065] = 15, + [43973] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1665), 1, @@ -60180,7 +60111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1689), 1, anon_sym_CARET, - ACTIONS(1619), 2, + ACTIONS(1603), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1669), 2, @@ -60192,14 +60123,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1677), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(812), 2, + STATE(813), 2, sym_argument_list, sym_generator_expression, ACTIONS(1683), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1617), 15, + ACTIONS(1601), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -60215,16 +60146,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44132] = 3, + [44040] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 5, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1677), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1683), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1597), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44099] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 1, + anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_STAR_STAR, + STATE(813), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1599), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON_EQ, + ACTIONS(1142), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1088), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44199] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 29, + ACTIONS(1425), 30, + sym__newline, + sym__string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1173), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1168), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1503), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60254,16 +60400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44174] = 3, + [44328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 5, + ACTIONS(1465), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 29, + ACTIONS(1463), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60293,16 +60439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44216] = 3, + [44370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 5, + ACTIONS(265), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(298), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60332,16 +60478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44258] = 3, + [44412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 5, + ACTIONS(1088), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1169), 29, + ACTIONS(1083), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60371,85 +60517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44384] = 3, + [44454] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1579), 5, @@ -60488,96 +60556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44426] = 3, + [44496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1439), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1585), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1725), 1, + ACTIONS(613), 1, anon_sym_COLON_EQ, - ACTIONS(1084), 5, + ACTIONS(265), 5, anon_sym_STAR, anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1079), 28, + ACTIONS(298), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60606,16 +60596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44554] = 3, + [44540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 5, + ACTIONS(1575), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 29, + ACTIONS(1573), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60645,16 +60635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44596] = 3, + [44582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 5, + ACTIONS(1571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1505), 29, + ACTIONS(1569), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60684,51 +60674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44638] = 3, + [44624] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1517), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44680] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -60748,30 +60699,31 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - ACTIONS(1727), 1, + ACTIONS(1725), 1, anon_sym_RPAREN, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1019), 2, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, + STATE(1376), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1382), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(1081), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(981), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -60780,52 +60732,12 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [44758] = 4, + [44704] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1084), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44802] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -60845,30 +60757,30 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - ACTIONS(1727), 1, + ACTIONS(1725), 1, anon_sym_RBRACK, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1019), 2, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(1081), 4, + STATE(1206), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(981), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -60877,320 +60789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [44880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [44964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1581), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1509), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1497), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1185), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1180), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1185), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1180), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45218] = 3, + [44782] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1449), 5, @@ -61229,18 +60828,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [45260] = 4, + [44824] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1727), 1, + anon_sym_RBRACK, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [44902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [44944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1088), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44988] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1727), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45108] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45186] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1729), 1, + anon_sym_RBRACK, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [45264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1475), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45390] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1731), 1, anon_sym_COLON_EQ, - ACTIONS(265), 5, + ACTIONS(1088), 5, anon_sym_STAR, anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 28, + ACTIONS(1083), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61269,16 +61331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45304] = 3, + [45434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 5, + ACTIONS(1158), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1153), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61308,16 +61370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [45346] = 3, + [45476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 5, + ACTIONS(1461), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 29, + ACTIONS(1459), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61347,65 +61409,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [45388] = 22, + [45518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1473), 5, anon_sym_STAR, - ACTIONS(1701), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1729), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1168), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1509), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1507), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1487), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1585), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1439), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [45980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1593), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1491), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [46148] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 3, anon_sym_RPAREN, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1359), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1360), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45468] = 3, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1158), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1153), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46192] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1445), 5, @@ -61444,7 +62073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [45510] = 3, + [46234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1591), 5, @@ -61483,473 +62112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [45552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1451), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1521), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45636] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1731), 1, - anon_sym_RPAREN, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1081), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45714] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1729), 1, - anon_sym_RBRACK, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1180), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [45792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45834] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1174), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1169), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1529), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1451), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [45962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [46004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [46046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1525), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [46088] = 3, + [46276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1457), 5, @@ -61988,1244 +62151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [46130] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1731), 1, - anon_sym_RBRACK, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1081), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1585), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46249] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1733), 1, - sym_identifier, - ACTIONS(1735), 1, - anon_sym_RPAREN, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1293), 1, - sym_match_keyword_pattern, - STATE(1304), 1, - sym_match_positional_pattern, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1316), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(585), 1, - anon_sym_COLON_EQ, - ACTIONS(607), 1, - anon_sym_EQ, - ACTIONS(265), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46373] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1733), 1, - sym_identifier, - ACTIONS(1737), 1, - anon_sym_RPAREN, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1190), 1, - sym_match_keyword_pattern, - STATE(1337), 1, - sym_match_positional_pattern, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1316), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, - anon_sym_COLON_EQ, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(1084), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1079), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1493), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(298), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1451), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1521), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1525), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1451), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1531), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1529), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [46989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47030] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1733), 1, - sym_identifier, - ACTIONS(1739), 1, - anon_sym_RPAREN, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1251), 1, - sym_match_keyword_pattern, - STATE(1337), 1, - sym_match_positional_pattern, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1316), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1445), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1443), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1583), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1581), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1575), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1573), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(869), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(867), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47396] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - ACTIONS(629), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, - anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - STATE(897), 1, - sym_template_string, - STATE(898), 1, - sym_string, - STATE(1448), 1, - sym_pattern_class_name, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1019), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1081), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(981), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [47471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(875), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(873), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47553] = 3, + [46318] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1595), 4, @@ -63263,15 +62189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47594] = 3, + [46359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 4, + ACTIONS(1575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(1573), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63301,7 +62227,997 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47635] = 3, + [46400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(629), 1, + anon_sym_EQ, + ACTIONS(265), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46486] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1192), 1, + sym_match_keyword_pattern, + STATE(1200), 1, + sym_match_positional_pattern, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1373), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46647] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_STAR, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(1089), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1449), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1447), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46804] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1737), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1213), 1, + sym_match_keyword_pattern, + STATE(1332), 1, + sym_match_positional_pattern, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1373), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [46883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1509), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1507), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1487), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1451), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1491), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1443), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1495), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(861), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47375] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_DASH, + ACTIONS(1703), 1, + sym_match_wildcard_pattern, + ACTIONS(1705), 1, + anon_sym_LBRACK, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1739), 1, + anon_sym_RPAREN, + STATE(891), 1, + sym_template_string, + STATE(892), 1, + sym_string, + STATE(1242), 1, + sym_match_keyword_pattern, + STATE(1332), 1, + sym_match_positional_pattern, + STATE(1419), 1, + sym_pattern_class_name, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1014), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1373), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + STATE(980), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47495] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_COLON_EQ, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(1088), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1083), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47540] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1579), 4, @@ -63339,15 +63255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47676] = 3, + [47581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 4, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(1463), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63377,159 +63293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1505), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1509), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [47881] = 3, + [47622] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 4, @@ -63567,15 +63331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47922] = 3, + [47663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1587), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1585), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63605,12 +63369,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47963] = 20, + [47704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(1477), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1475), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1467), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1461), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1459), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(867), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(865), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [47991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [48032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1505), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1503), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [48073] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -63628,28 +63734,28 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1337), 1, + STATE(1332), 1, sym_match_positional_pattern, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1019), 2, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1316), 2, + STATE(1373), 2, sym__match_pattern, sym_match_as_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(981), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63658,12 +63764,12 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48036] = 19, + [48146] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -63681,26 +63787,26 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1019), 2, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1372), 2, + STATE(1384), 2, sym__match_pattern, sym_match_as_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(981), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63709,12 +63815,12 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48106] = 19, + [48216] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -63732,26 +63838,26 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1019), 2, + STATE(1014), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1335), 2, + STATE(1326), 2, sym__match_pattern, sym_match_as_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(981), 8, + STATE(980), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63760,12 +63866,12 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48176] = 17, + [48286] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -63783,20 +63889,20 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1741), 1, sym_match_wildcard_pattern, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(973), 8, + STATE(956), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63805,12 +63911,12 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48238] = 17, + [48348] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(629), 1, + ACTIONS(627), 1, sym__template_string_start, ACTIONS(1695), 1, sym_identifier, @@ -63828,20 +63934,20 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1743), 1, sym_match_wildcard_pattern, - STATE(897), 1, + STATE(891), 1, sym_template_string, - STATE(898), 1, + STATE(892), 1, sym_string, - STATE(1448), 1, + STATE(1419), 1, sym_pattern_class_name, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - STATE(938), 8, + STATE(939), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63850,7 +63956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48300] = 8, + [48410] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1750), 1, @@ -63859,7 +63965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(1758), 1, anon_sym_is, - STATE(843), 1, + STATE(844), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1755), 2, anon_sym_LT, @@ -63882,21 +63988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [48340] = 8, + [48450] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_not, ACTIONS(1559), 1, + anon_sym_not, + ACTIONS(1567), 1, anon_sym_is, ACTIONS(1763), 1, anon_sym_as, - STATE(845), 1, + STATE(847), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1557), 2, + ACTIONS(1565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1541), 6, + ACTIONS(1549), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -63914,7 +64020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [48380] = 8, + [48490] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 1, + anon_sym_not, + ACTIONS(1543), 1, + anon_sym_is, + ACTIONS(1763), 1, + anon_sym_EQ, + STATE(844), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1541), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1761), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [48530] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1750), 1, @@ -63923,7 +64061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(1774), 1, anon_sym_is, - STATE(845), 1, + STATE(847), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1771), 2, anon_sym_LT, @@ -63946,44 +64084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [48420] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 1, - anon_sym_not, - ACTIONS(1491), 1, - anon_sym_is, - ACTIONS(1763), 1, - anon_sym_EQ, - STATE(843), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1469), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1761), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48460] = 4, + [48570] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1779), 1, anon_sym_COMMA, - STATE(847), 1, + STATE(848), 1, aux_sym__patterns_repeat1, ACTIONS(1777), 18, anon_sym_RPAREN, @@ -64004,47 +64110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48490] = 16, + [48600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(1701), 1, - anon_sym_DASH, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1784), 1, - anon_sym_RBRACE, - ACTIONS(1786), 1, - anon_sym_STAR_STAR, - STATE(1110), 1, - sym_template_string, - STATE(1112), 1, - sym_string, - STATE(1361), 1, - sym_match_key_value_pattern, - STATE(1364), 1, - sym_match_double_star_pattern, - STATE(987), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1461), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - [48543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1788), 19, + ACTIONS(1782), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64064,7 +64133,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48568] = 16, + [48625] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1652), 1, + anon_sym_not, + ACTIONS(1660), 1, + anon_sym_is, + ACTIONS(1763), 1, + anon_sym_EQ, + STATE(856), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1658), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1640), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1761), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [48662] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, @@ -64077,31 +64175,102 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - ACTIONS(1782), 1, + ACTIONS(1784), 1, sym_identifier, ACTIONS(1786), 1, - anon_sym_STAR_STAR, - ACTIONS(1790), 1, anon_sym_RBRACE, - STATE(1110), 1, + ACTIONS(1788), 1, + anon_sym_STAR_STAR, + STATE(1119), 1, sym_template_string, - STATE(1112), 1, + STATE(1120), 1, sym_string, - STATE(1187), 1, + STATE(1273), 1, sym_match_key_value_pattern, - STATE(1322), 1, + STATE(1337), 1, sym_match_double_star_pattern, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1461), 2, + STATE(1471), 2, sym_match_literal_pattern, sym_match_value_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - [48621] = 16, + [48715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(825), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(298), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [48744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1790), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48794] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, @@ -64114,31 +64283,31 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - ACTIONS(1782), 1, + ACTIONS(1784), 1, sym_identifier, - ACTIONS(1786), 1, + ACTIONS(1788), 1, anon_sym_STAR_STAR, ACTIONS(1792), 1, anon_sym_RBRACE, - STATE(1110), 1, + STATE(1119), 1, sym_template_string, - STATE(1112), 1, + STATE(1120), 1, sym_string, - STATE(1328), 1, + STATE(1339), 1, sym_match_double_star_pattern, - STATE(1361), 1, + STATE(1344), 1, sym_match_key_value_pattern, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1461), 2, + STATE(1471), 2, sym_match_literal_pattern, sym_match_value_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - [48674] = 8, + [48847] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1750), 1, @@ -64147,7 +64316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(1803), 1, anon_sym_is, - STATE(852), 1, + STATE(856), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1800), 2, anon_sym_LT, @@ -64167,7 +64336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [48711] = 2, + [48884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1806), 19, @@ -64190,117 +64359,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48736] = 2, + [48909] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1808), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [48761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1090), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [48786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(827), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(298), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1701), 1, anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(1709), 1, + sym_integer, + ACTIONS(1711), 1, + sym_float, + ACTIONS(1784), 1, + sym_identifier, + ACTIONS(1788), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [48815] = 8, + ACTIONS(1808), 1, + anon_sym_RBRACE, + STATE(1119), 1, + sym_template_string, + STATE(1120), 1, + sym_string, + STATE(1313), 1, + sym_match_double_star_pattern, + STATE(1344), 1, + sym_match_key_value_pattern, + STATE(977), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1471), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_none, + [48962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1649), 1, - anon_sym_not, - ACTIONS(1657), 1, - anon_sym_is, - ACTIONS(1763), 1, - anon_sym_EQ, - STATE(852), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1637), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1761), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [48852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 2, + ACTIONS(1088), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1810), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1079), 14, + ACTIONS(1083), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -64315,14 +64421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [48881] = 7, + [48991] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1815), 1, anon_sym_not, ACTIONS(1821), 1, anon_sym_is, - STATE(859), 1, + STATE(860), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1818), 2, anon_sym_LT, @@ -64342,14 +64448,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [48915] = 7, + [49025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_COMMA, + STATE(848), 1, + aux_sym__patterns_repeat1, + ACTIONS(1826), 16, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49053] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_DOT, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_PIPE, + ACTIONS(1527), 1, + anon_sym_LBRACK, + ACTIONS(1529), 1, + anon_sym_STAR_STAR, + ACTIONS(1537), 1, + anon_sym_AMP, + ACTIONS(1539), 1, + anon_sym_CARET, + ACTIONS(1517), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1519), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1525), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(642), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1533), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [49099] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1685), 1, anon_sym_not, ACTIONS(1693), 1, anon_sym_is, - STATE(859), 1, + STATE(860), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1691), 2, anon_sym_LT, @@ -64369,64 +64532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [48949] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1459), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_LPAREN, - ACTIONS(1471), 1, - anon_sym_PIPE, - ACTIONS(1475), 1, - anon_sym_LBRACK, - ACTIONS(1477), 1, - anon_sym_STAR_STAR, - ACTIONS(1485), 1, - anon_sym_AMP, - ACTIONS(1487), 1, - anon_sym_CARET, - ACTIONS(1465), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1467), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1473), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(643), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1481), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [48995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_COMMA, - STATE(847), 1, - aux_sym__patterns_repeat1, - ACTIONS(1826), 16, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [49023] = 12, + [49133] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 1, @@ -64441,34 +64547,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1838), 1, anon_sym_SLASH, - STATE(1296), 1, + STATE(1276), 1, sym_parameter, - STATE(1433), 1, + STATE(1448), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1325), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49066] = 6, + [49176] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(1828), 1, + sym_identifier, + ACTIONS(1830), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_STAR, + ACTIONS(1836), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, + anon_sym_SLASH, ACTIONS(1840), 1, - anon_sym_COMMA, + anon_sym_COLON, + STATE(1276), 1, + sym_parameter, + STATE(1435), 1, + sym_lambda_parameters, + STATE(1474), 1, + sym__parameters, + STATE(1331), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1278), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49219] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 1, + sym_identifier, + ACTIONS(1830), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_STAR, + ACTIONS(1836), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, + anon_sym_SLASH, ACTIONS(1842), 1, anon_sym_COLON, + STATE(1276), 1, + sym_parameter, + STATE(1423), 1, + sym_lambda_parameters, + STATE(1474), 1, + sym__parameters, + STATE(1331), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1278), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49262] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(1844), 1, + anon_sym_COMMA, + ACTIONS(1846), 1, + anon_sym_COLON, + ACTIONS(1848), 1, anon_sym_EQ, - STATE(862), 1, + STATE(861), 1, aux_sym__patterns_repeat1, - ACTIONS(1846), 13, + ACTIONS(1850), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64482,69 +64650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [49097] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1832), 1, - anon_sym_STAR, - ACTIONS(1836), 1, - anon_sym_STAR_STAR, - ACTIONS(1838), 1, - anon_sym_SLASH, - ACTIONS(1848), 1, - anon_sym_COLON, - STATE(1296), 1, - sym_parameter, - STATE(1475), 1, - sym_lambda_parameters, - STATE(1476), 1, - sym__parameters, - STATE(1325), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1299), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [49140] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1832), 1, - anon_sym_STAR, - ACTIONS(1836), 1, - anon_sym_STAR_STAR, - ACTIONS(1838), 1, - anon_sym_SLASH, - ACTIONS(1850), 1, - anon_sym_COLON, - STATE(1296), 1, - sym_parameter, - STATE(1402), 1, - sym_lambda_parameters, - STATE(1476), 1, - sym__parameters, - STATE(1325), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1299), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [49183] = 12, + [49293] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 1, @@ -64559,23 +64665,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1852), 1, anon_sym_COLON, - STATE(1296), 1, + STATE(1276), 1, sym_parameter, - STATE(1417), 1, + STATE(1397), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1325), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49226] = 12, + [49336] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 1, @@ -64590,23 +64696,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1854), 1, anon_sym_COLON, - STATE(1296), 1, + STATE(1276), 1, sym_parameter, - STATE(1383), 1, + STATE(1472), 1, sym_lambda_parameters, - STATE(1476), 1, + STATE(1474), 1, sym__parameters, - STATE(1325), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49269] = 13, + [49379] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, @@ -64619,25 +64725,25 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(1711), 1, sym_float, - ACTIONS(1782), 1, + ACTIONS(1784), 1, sym_identifier, - STATE(1110), 1, + STATE(1119), 1, sym_template_string, - STATE(1112), 1, + STATE(1120), 1, sym_string, - STATE(1361), 1, + STATE(1344), 1, sym_match_key_value_pattern, - STATE(987), 2, + STATE(977), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1461), 2, + STATE(1471), 2, sym_match_literal_pattern, sym_match_value_pattern, ACTIONS(1713), 3, sym_true, sym_false, sym_none, - [49313] = 11, + [49423] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1830), 1, @@ -64652,21 +64758,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1858), 1, anon_sym_RPAREN, - STATE(1228), 1, + STATE(1229), 1, sym_parameter, - STATE(1469), 1, + STATE(1473), 1, sym__parameters, - STATE(1267), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49353] = 10, + [49463] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1830), 1, @@ -64681,46 +64787,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1860), 1, anon_sym_RPAREN, - STATE(1282), 1, + STATE(1288), 1, sym_parameter, - STATE(1267), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49390] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1832), 1, - anon_sym_STAR, - ACTIONS(1836), 1, - anon_sym_STAR_STAR, - ACTIONS(1838), 1, - anon_sym_SLASH, - ACTIONS(1862), 1, - anon_sym_COLON, - STATE(1282), 1, - sym_parameter, - STATE(1325), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1299), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [49427] = 10, + [49500] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1830), 1, @@ -64735,26 +64814,26 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1862), 1, anon_sym_RPAREN, - STATE(1282), 1, + STATE(1288), 1, sym_parameter, - STATE(1267), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49464] = 4, + [49537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1842), 1, + ACTIONS(1846), 1, anon_sym_COLON, - ACTIONS(1844), 1, + ACTIONS(1848), 1, anon_sym_EQ, - ACTIONS(1846), 13, + ACTIONS(1850), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64768,7 +64847,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [49489] = 10, + [49562] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 1, + sym_identifier, + ACTIONS(1830), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_STAR, + ACTIONS(1836), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, + anon_sym_SLASH, + ACTIONS(1862), 1, + anon_sym_COLON, + STATE(1288), 1, + sym_parameter, + STATE(1331), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1278), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49599] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1828), 1, @@ -64783,38 +64889,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1860), 1, anon_sym_COLON, - STATE(1282), 1, + STATE(1288), 1, sym_parameter, - STATE(1325), 2, + STATE(1331), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49526] = 3, + [49636] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_as, - ACTIONS(1463), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [49548] = 9, + ACTIONS(1828), 1, + sym_identifier, + ACTIONS(1830), 1, + anon_sym_LPAREN, + ACTIONS(1832), 1, + anon_sym_STAR, + ACTIONS(1836), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, + anon_sym_SLASH, + STATE(1288), 1, + sym_parameter, + STATE(1331), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1278), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [49670] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1830), 1, @@ -64827,19 +64939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1856), 1, sym_identifier, - STATE(1282), 1, + STATE(1288), 1, sym_parameter, - STATE(1267), 2, + STATE(1222), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1299), 6, + STATE(1278), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49582] = 3, + [49704] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1866), 1, @@ -64858,37 +64970,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [49604] = 9, + [49726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, - anon_sym_LPAREN, - ACTIONS(1832), 1, - anon_sym_STAR, - ACTIONS(1836), 1, - anon_sym_STAR_STAR, - ACTIONS(1838), 1, - anon_sym_SLASH, - STATE(1282), 1, - sym_parameter, - STATE(1325), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1299), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [49638] = 4, + ACTIONS(1531), 1, + anon_sym_as, + ACTIONS(1515), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [49748] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1870), 1, anon_sym_DOT, - STATE(880), 1, + STATE(881), 1, aux_sym_match_value_pattern_repeat1, ACTIONS(1868), 10, anon_sym_import, @@ -64901,16 +65007,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49660] = 5, + [49770] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(1873), 1, + anon_sym_DOT, ACTIONS(1875), 1, + anon_sym_LPAREN, + STATE(902), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1877), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(1877), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1873), 8, + ACTIONS(1879), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1885), 1, + anon_sym_as, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1879), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + STATE(982), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1891), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49864] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1901), 1, + anon_sym_COLON, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1455), 1, + sym__comprehension_clauses, + [49901] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1901), 1, + anon_sym_COLON, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1403), 1, + sym__comprehension_clauses, + [49938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1911), 1, + anon_sym_as, + ACTIONS(1909), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49963] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1913), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64919,57 +65167,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49683] = 12, + [49986] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1885), 1, - anon_sym_COLON, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1883), 1, anon_sym_or, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1450), 1, - sym__comprehension_clauses, - [49720] = 12, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1915), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(627), 1, + sym__template_string_start, + STATE(689), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1917), 8, anon_sym_RPAREN, - ACTIONS(1899), 1, anon_sym_COMMA, - ACTIONS(1902), 1, anon_sym_as, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1387), 1, - sym__comprehension_clauses, - [49757] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1917), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1921), 1, + anon_sym_as, + ACTIONS(1919), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1868), 11, @@ -64984,36 +65252,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49774] = 7, + [50091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - STATE(986), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1904), 6, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1909), 8, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49801] = 5, + [50114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1919), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1925), 1, + anon_sym_as, + ACTIONS(1923), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + [50156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1915), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1925), 1, + anon_sym_as, + ACTIONS(1923), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1923), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_or, + sym_type_conversion, + [50223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1923), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, anon_sym_DOT, - ACTIONS(1910), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - STATE(880), 1, + STATE(881), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1912), 8, + ACTIONS(1931), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65022,340 +65392,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49824] = 5, + [50267] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1916), 1, - anon_sym_as, - ACTIONS(1914), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1918), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1920), 1, - anon_sym_as, - ACTIONS(1918), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49891] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1924), 1, - anon_sym_as, - ACTIONS(1922), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1920), 1, - anon_sym_as, - ACTIONS(1918), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - [49937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1918), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_or, - sym_type_conversion, - [49956] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1926), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49977] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1928), 1, - anon_sym_as, - ACTIONS(1873), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50002] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1930), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50025] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1932), 1, - anon_sym_as, - ACTIONS(1926), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50048] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - sym__template_string_start, - STATE(689), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1934), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__string_start, - STATE(686), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1934), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50090] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1885), 1, - anon_sym_COLON, ACTIONS(1887), 1, - anon_sym_async, + anon_sym_and, ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, anon_sym_or, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1391), 1, - sym__comprehension_clauses, - [50127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1936), 1, - anon_sym_as, - ACTIONS(1930), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(1903), 1, anon_sym_async, + ACTIONS(1905), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50152] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1885), 1, - anon_sym_COLON, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1489), 1, - sym__comprehension_clauses, - [50189] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1922), 8, + ACTIONS(1933), 1, anon_sym_RPAREN, + ACTIONS(1935), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_DOT, ACTIONS(1938), 1, - anon_sym_LPAREN, - STATE(886), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1940), 8, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50235] = 4, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1400), 1, + sym__comprehension_clauses, + [50304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1914), 9, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1940), 1, + anon_sym_as, + ACTIONS(1913), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50256] = 9, + [50329] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1901), 1, + anon_sym_COLON, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1463), 1, + sym__comprehension_clauses, + [50366] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, @@ -65364,70 +65470,95 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1950), 1, sym__string_end, - STATE(931), 1, + STATE(919), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50286] = 9, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1952), 1, - anon_sym_LBRACE2, - ACTIONS(1958), 1, - sym__not_escape_sequence, - ACTIONS(1961), 1, - sym__string_end, - STATE(906), 1, - aux_sym_string_repeat1, - STATE(1017), 1, - aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, - sym_string_content, - ACTIONS(1955), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50316] = 9, + [50396] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, sym__not_escape_sequence, ACTIONS(1948), 1, sym_comment, - ACTIONS(1963), 1, + ACTIONS(1952), 1, sym__string_end, - STATE(906), 1, + STATE(914), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50346] = 5, + [50426] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(1965), 7, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1467), 1, + sym__comprehension_clauses, + [50460] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1954), 1, + anon_sym_RPAREN, + ACTIONS(1956), 1, + anon_sym_COMMA, + STATE(936), 1, + sym_for_in_clause, + STATE(1264), 1, + aux_sym_argument_list_repeat1, + STATE(1499), 1, + sym__comprehension_clauses, + [50494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1958), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -65435,126 +65566,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50368] = 9, + [50516] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(1962), 1, + anon_sym_COMMA, + STATE(936), 1, + sym_for_in_clause, + STATE(1286), 1, + aux_sym_argument_list_repeat1, + STATE(1426), 1, + sym__comprehension_clauses, + [50550] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1441), 1, + sym__comprehension_clauses, + [50584] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, sym__not_escape_sequence, ACTIONS(1948), 1, sym_comment, - ACTIONS(1967), 1, + ACTIONS(1964), 1, sym__string_end, - STATE(933), 1, + STATE(922), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50398] = 11, + [50614] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1966), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50644] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1968), 1, + sym__string_end, + STATE(920), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50674] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1970), 1, + sym__string_end, + STATE(923), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1969), 1, - anon_sym_RPAREN, - ACTIONS(1971), 1, - anon_sym_COMMA, - STATE(943), 1, - sym_for_in_clause, - STATE(1264), 1, - aux_sym_argument_list_repeat1, - STATE(1472), 1, - sym__comprehension_clauses, - [50432] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1891), 1, - anon_sym_RBRACK, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1422), 1, - sym__comprehension_clauses, - [50466] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1973), 1, - anon_sym_RPAREN, - ACTIONS(1975), 1, - anon_sym_COMMA, - STATE(943), 1, - sym_for_in_clause, - STATE(1221), 1, - aux_sym_argument_list_repeat1, - STATE(1387), 1, - sym__comprehension_clauses, - [50500] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1977), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, - anon_sym_COMMA, - STATE(943), 1, - sym_for_in_clause, - STATE(1280), 1, - aux_sym_argument_list_repeat1, - STATE(1390), 1, - sym__comprehension_clauses, - [50534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1983), 2, + ACTIONS(1974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1981), 8, + ACTIONS(1972), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65563,91 +65711,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50552] = 11, - ACTIONS(3), 1, + [50722] = 9, + ACTIONS(1948), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1891), 1, - anon_sym_RBRACK, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1388), 1, - sym__comprehension_clauses, - [50586] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1891), 1, - anon_sym_RBRACK, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1381), 1, - sym__comprehension_clauses, - [50620] = 9, + ACTIONS(1976), 1, + anon_sym_LBRACE2, + ACTIONS(1982), 1, + sym__not_escape_sequence, + ACTIONS(1985), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1979), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50752] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, sym__not_escape_sequence, ACTIONS(1948), 1, sym_comment, - ACTIONS(1985), 1, + ACTIONS(1987), 1, sym__string_end, - STATE(906), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1987), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50672] = 9, + [50782] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, @@ -65656,19 +65762,42 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1989), 1, sym__string_end, - STATE(930), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50702] = 9, + [50812] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1933), 1, + anon_sym_RPAREN, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1400), 1, + sym__comprehension_clauses, + [50846] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, @@ -65677,124 +65806,46 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1991), 1, sym__string_end, - STATE(906), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50732] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1993), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50754] = 9, + [50876] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, sym__not_escape_sequence, ACTIONS(1948), 1, sym_comment, - ACTIONS(1995), 1, + ACTIONS(1993), 1, sym__string_end, - STATE(907), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50784] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1997), 1, - sym__string_end, - STATE(927), 1, - aux_sym_string_repeat1, - STATE(1017), 1, - aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, - sym_string_content, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50814] = 11, + [50906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(1897), 1, - anon_sym_RPAREN, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1387), 1, - sym__comprehension_clauses, - [50848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1999), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2003), 2, + ACTIONS(1997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2001), 8, + ACTIONS(1995), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65803,7 +65854,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50888] = 9, + [50924] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(1999), 1, + sym__string_end, + STATE(918), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50954] = 9, + ACTIONS(1942), 1, + anon_sym_LBRACE2, + ACTIONS(1946), 1, + sym__not_escape_sequence, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2001), 1, + sym__string_end, + STATE(929), 1, + aux_sym_string_repeat1, + STATE(1037), 1, + aux_sym_string_content_repeat1, + STATE(1046), 1, + sym_string_content, + STATE(1054), 1, + sym_interpolation, + ACTIONS(1944), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2003), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [51006] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1401), 1, + sym__comprehension_clauses, + [51040] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, @@ -65812,63 +65945,59 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(2005), 1, sym__string_end, - STATE(906), 1, + STATE(918), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50918] = 11, + [51070] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2007), 1, + anon_sym_RPAREN, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1426), 1, + sym__comprehension_clauses, + [51104] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2007), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2009), 7, anon_sym_RPAREN, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1472), 1, - sym__comprehension_clauses, - [50952] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2009), 1, - sym__string_end, - STATE(920), 1, - aux_sym_string_repeat1, - STATE(1017), 1, - aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, - sym_string_content, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50982] = 9, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [51126] = 9, ACTIONS(1942), 1, anon_sym_LBRACE2, ACTIONS(1946), 1, @@ -65877,161 +66006,121 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(2011), 1, sym__string_end, - STATE(906), 1, + STATE(925), 1, aux_sym_string_repeat1, - STATE(1017), 1, + STATE(1037), 1, aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, + STATE(1046), 1, sym_string_content, + STATE(1054), 1, + sym_interpolation, ACTIONS(1944), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [51012] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, + [51156] = 11, + ACTIONS(3), 1, sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, ACTIONS(2013), 1, - sym__string_end, - STATE(906), 1, - aux_sym_string_repeat1, - STATE(1017), 1, - aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, - sym_string_content, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51042] = 11, + anon_sym_RPAREN, + ACTIONS(2015), 1, + anon_sym_COMMA, + STATE(936), 1, + sym_for_in_clause, + STATE(1188), 1, + aux_sym_argument_list_repeat1, + STATE(1400), 1, + sym__comprehension_clauses, + [51190] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1881), 1, - anon_sym_COMMA, + anon_sym_and, ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(2015), 1, - anon_sym_RPAREN, - STATE(943), 1, - sym_for_in_clause, - STATE(1069), 1, - aux_sym__collection_elements_repeat1, - STATE(1390), 1, - sym__comprehension_clauses, - [51076] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2017), 1, - sym__string_end, - STATE(906), 1, - aux_sym_string_repeat1, - STATE(1017), 1, - aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, - sym_string_content, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51106] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2019), 1, - sym__string_end, - STATE(917), 1, - aux_sym_string_repeat1, - STATE(1017), 1, - aux_sym_string_content_repeat1, - STATE(1058), 1, - sym_interpolation, - STATE(1059), 1, - sym_string_content, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(2021), 7, + ACTIONS(2017), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51155] = 6, + anon_sym_EQ, + sym_type_conversion, + [51212] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1887), 1, - anon_sym_async, + anon_sym_and, ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(2025), 1, + anon_sym_or, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, anon_sym_if, - ACTIONS(2023), 3, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2019), 1, + anon_sym_RPAREN, + STATE(936), 1, + sym_for_in_clause, + STATE(1079), 1, + aux_sym__collection_elements_repeat1, + STATE(1499), 1, + sym__comprehension_clauses, + [51246] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2023), 1, + anon_sym_if, + ACTIONS(2021), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(937), 3, + STATE(943), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [51178] = 6, + [51269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(2025), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51288] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2029), 1, - anon_sym_if, - ACTIONS(2032), 1, - anon_sym_async, - ACTIONS(2035), 1, - anon_sym_for, - ACTIONS(2027), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(937), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [51201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 1, anon_sym_PIPE, - STATE(940), 1, + STATE(944), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(2038), 7, + ACTIONS(2027), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66039,14 +66128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51220] = 4, + [51307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(2029), 1, anon_sym_PIPE, - STATE(939), 1, + STATE(938), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(2042), 7, + ACTIONS(2031), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66054,79 +66143,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 1, - anon_sym_PIPE, - STATE(939), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2047), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51258] = 4, + [51326] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, ACTIONS(1893), 1, - anon_sym_and, + anon_sym_COMMA, ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(2021), 7, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51277] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - STATE(986), 1, + STATE(982), 1, aux_sym_expression_list_repeat1, - ACTIONS(2049), 4, + ACTIONS(2033), 4, anon_sym_COLON, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [51302] = 6, + [51351] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1887), 1, - anon_sym_async, + anon_sym_and, ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(2025), 1, + anon_sym_or, + ACTIONS(2025), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2051), 3, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2037), 1, + anon_sym_if, + ACTIONS(2040), 1, + anon_sym_async, + ACTIONS(2043), 1, + anon_sym_for, + ACTIONS(2035), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(936), 3, + STATE(942), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [51325] = 4, + [51393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2023), 1, + anon_sym_if, + ACTIONS(2046), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(942), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [51416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_PIPE, + STATE(944), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2048), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1889), 1, anon_sym_or, - ACTIONS(2021), 7, + ACTIONS(2025), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -66134,21 +66240,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51344] = 4, + [51454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(1926), 6, - sym__newline, - anon_sym_from, + ACTIONS(2053), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [51362] = 2, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2057), 8, @@ -66160,49 +66276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51376] = 3, + [51496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(1918), 7, - sym__newline, - anon_sym_from, + ACTIONS(2059), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_EQ, - anon_sym_or, - sym__semicolon, - [51392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(1918), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [51410] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(1922), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [51430] = 2, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2061), 8, @@ -66214,45 +66300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51444] = 2, + [51524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2055), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(1914), 6, + ACTIONS(1879), 6, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, sym__semicolon, - [51490] = 2, + [51542] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2067), 8, @@ -66264,10 +66326,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51504] = 2, + [51556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 8, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(1913), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + sym__semicolon, + [51576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2071), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66276,42 +66353,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51518] = 8, + [51590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2071), 1, - anon_sym_from, - ACTIONS(2073), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2075), 2, + ACTIONS(1515), 8, sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, sym__semicolon, - [51544] = 4, + [51604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 1, + ACTIONS(2048), 8, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(957), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_COMMA, + STATE(958), 1, aux_sym_expression_list_repeat1, - ACTIONS(2077), 6, + ACTIONS(2075), 6, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [51562] = 2, + [51650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 8, + ACTIONS(2080), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66320,57 +66415,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51576] = 2, + [51664] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2088), 1, - anon_sym_COMMA, - STATE(964), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2086), 6, - anon_sym_RPAREN, - anon_sym_if, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2082), 1, anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51608] = 2, + ACTIONS(2084), 1, + anon_sym_def, + ACTIONS(2086), 1, + anon_sym_class, + STATE(527), 2, + sym_function_definition, + sym_class_definition, + STATE(1045), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [51688] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51636] = 2, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2088), 1, + anon_sym_async, + ACTIONS(2090), 1, + anon_sym_def, + ACTIONS(2092), 1, + anon_sym_class, + STATE(553), 2, + sym_function_definition, + sym_class_definition, + STATE(1045), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [51712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2094), 8, @@ -66382,36 +66461,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51650] = 4, + [51726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 1, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(1909), 5, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(964), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2096), 6, + anon_sym_EQ, + sym__semicolon, + [51746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2098), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_and, + ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(2102), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51668] = 5, + [51806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, + ACTIONS(2104), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(1987), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(1923), 6, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, sym__semicolon, - [51688] = 2, + [51838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(1923), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + sym__semicolon, + [51854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 8, @@ -66423,211 +66589,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [51702] = 6, + [51882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, + ACTIONS(2110), 1, + anon_sym_COMMA, + STATE(988), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2108), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2116), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1917), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2121), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2017), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + sym__semicolon, + [51998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + anon_sym_PIPE, + ACTIONS(2125), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, anon_sym_DOT, - ACTIONS(1938), 1, + ACTIONS(1875), 1, anon_sym_LPAREN, - ACTIONS(2101), 1, + ACTIONS(2129), 1, anon_sym_EQ, - STATE(886), 1, + STATE(902), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1940), 4, + ACTIONS(1877), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [51724] = 4, + [52036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(2133), 1, anon_sym_COMMA, - STATE(972), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2103), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51742] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2109), 1, - anon_sym_COMMA, - STATE(960), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2107), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51760] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2111), 1, - anon_sym_async, - ACTIONS(2113), 1, - anon_sym_def, - ACTIONS(2115), 1, - anon_sym_class, - STATE(544), 2, - sym_function_definition, - sym_class_definition, - STATE(1064), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [51784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - anon_sym_COMMA, - STATE(964), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2119), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [51886] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(1930), 5, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [51906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51920] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, + STATE(958), 1, + aux_sym_expression_list_repeat1, ACTIONS(2131), 6, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - anon_sym_PIPE, - ACTIONS(2133), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51954] = 2, + anon_sym_EQ, + sym_type_conversion, + [52054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 8, + ACTIONS(2135), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66636,68 +66737,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51968] = 5, + [52068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2055), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2059), 1, + ACTIONS(1919), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, anon_sym_if, - ACTIONS(1873), 5, + anon_sym_EQ, + sym__semicolon, + [52086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(1915), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, sym__semicolon, - [51988] = 2, + [52106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2139), 8, - anon_sym_RPAREN, + ACTIONS(2137), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(958), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2131), 6, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [52002] = 7, + anon_sym_EQ, + sym_type_conversion, + [52124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_AT, ACTIONS(2141), 1, + anon_sym_COMMA, + STATE(978), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2139), 6, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(2143), 1, - anon_sym_def, - ACTIONS(2145), 1, - anon_sym_class, - STATE(547), 2, - sym_function_definition, - sym_class_definition, - STATE(1064), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [52026] = 4, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52142] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2145), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2143), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52160] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2147), 1, + anon_sym_from, ACTIONS(2149), 1, anon_sym_COMMA, - STATE(957), 1, + STATE(1082), 1, aux_sym_expression_list_repeat1, - ACTIONS(2147), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [52044] = 2, + ACTIONS(2151), 2, + sym__newline, + sym__semicolon, + [52186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 8, + ACTIONS(2153), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66706,33 +66838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [52058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2151), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - anon_sym_COMMA, - STATE(957), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2147), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [52090] = 2, + [52200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2155), 8, @@ -66744,168 +66850,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [52104] = 7, + [52214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(2055), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2059), 1, + ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2073), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2157), 2, - sym__newline, - sym__semicolon, - [52127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 7, + ACTIONS(2157), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [52140] = 5, + [52233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(2159), 1, anon_sym_if, - ACTIONS(1893), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1895), 1, - anon_sym_or, - ACTIONS(2161), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [52159] = 6, - ACTIONS(1948), 1, - sym_comment, ACTIONS(2163), 1, - anon_sym_LBRACE2, - ACTIONS(2168), 1, - sym__not_escape_sequence, + anon_sym_or, + ACTIONS(1915), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [52252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1879), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_except, + ACTIONS(2167), 1, + anon_sym_finally, + STATE(549), 1, + sym_finally_clause, + STATE(239), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(259), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [52290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [52303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_except, ACTIONS(2171), 1, - sym__string_end, - STATE(994), 1, - aux_sym_string_content_repeat1, - ACTIONS(2165), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [52180] = 5, + anon_sym_finally, + STATE(478), 1, + sym_finally_clause, + STATE(255), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(257), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, + ACTIONS(2165), 1, + anon_sym_except, + ACTIONS(2167), 1, + anon_sym_finally, + STATE(469), 1, + sym_finally_clause, + STATE(260), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(261), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [52345] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 1, anon_sym_if, - ACTIONS(2175), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(1922), 4, + ACTIONS(2175), 1, + anon_sym_as, + ACTIONS(2173), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, - [52199] = 7, + [52366] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(2177), 1, + anon_sym_COMMA, ACTIONS(2179), 1, - sym_identifier, + anon_sym_as, ACTIONS(2181), 1, - anon_sym_DOT, - ACTIONS(2183), 1, - anon_sym___future__, - STATE(1129), 1, - aux_sym_import_prefix_repeat1, - STATE(1215), 1, - sym_import_prefix, - STATE(1414), 2, - sym_relative_import, - sym_dotted_name, - [52222] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(1999), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - sym__semicolon, - [52241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52254] = 5, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [52391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(1873), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [52273] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2073), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2185), 2, - sym__newline, - sym__semicolon, - [52296] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, - ACTIONS(2187), 1, - anon_sym_COMMA, - ACTIONS(2189), 1, - anon_sym_RBRACE, - STATE(943), 1, - sym_for_in_clause, - STATE(1240), 1, - aux_sym_dictionary_repeat1, - STATE(1380), 1, - sym__comprehension_clauses, - [52321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1999), 7, + ACTIONS(1891), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -66913,272 +66990,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [52334] = 4, + [52404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(1918), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2069), 1, anon_sym_if, - anon_sym_COLON, - [52351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - anon_sym_except, - ACTIONS(2193), 1, - anon_sym_finally, - STATE(521), 1, - sym_finally_clause, - STATE(242), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(248), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [52372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(1918), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_or, - [52387] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1160), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2197), 2, + ACTIONS(2009), 4, sym__newline, + anon_sym_from, + anon_sym_COMMA, sym__semicolon, - [52410] = 5, + [52423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2199), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [52429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(1926), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2069), 1, anon_sym_if, - anon_sym_COLON, - [52446] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(1930), 4, - anon_sym_RPAREN, + ACTIONS(1958), 4, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [52465] = 4, + sym__semicolon, + [52442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(1914), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [52482] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, + ACTIONS(2183), 1, sym_identifier, - ACTIONS(2203), 1, + ACTIONS(2185), 1, anon_sym_STAR, - ACTIONS(2205), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(1353), 4, + STATE(1327), 4, sym_typevar_parameter, sym_typevartuple_parameter, sym_paramspec_parameter, sym__type_parameter, - [52501] = 2, + [52461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 7, - anon_sym_RPAREN, + ACTIONS(2149), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52527] = 6, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2189), 2, + sym__newline, + sym__semicolon, + [52484] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, - anon_sym_except, - ACTIONS(2211), 1, - anon_sym_finally, - STATE(559), 1, - sym_finally_clause, - STATE(240), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(244), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [52548] = 8, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2191), 1, + anon_sym_COMMA, + ACTIONS(2193), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1207), 1, + aux_sym_dictionary_repeat1, + STATE(1404), 1, + sym__comprehension_clauses, + [52509] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1887), 1, - anon_sym_async, + anon_sym_and, ACTIONS(1889), 1, + anon_sym_or, + ACTIONS(1899), 1, + anon_sym_if, + ACTIONS(2195), 4, + anon_sym_COMMA, + anon_sym_async, anon_sym_for, - ACTIONS(2213), 1, - anon_sym_COMMA, - ACTIONS(2215), 1, anon_sym_RBRACE, - STATE(943), 1, - sym_for_in_clause, - STATE(1245), 1, - aux_sym_dictionary_repeat1, - STATE(1420), 1, - sym__comprehension_clauses, - [52573] = 6, + [52528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2219), 1, - anon_sym_as, - ACTIONS(2217), 3, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2197), 1, + anon_sym_COMMA, + STATE(1167), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2199), 2, + sym__newline, + sym__semicolon, + [52551] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2197), 1, + anon_sym_COMMA, + STATE(1134), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2201), 2, + sym__newline, + sym__semicolon, + [52574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2009), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [52594] = 6, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2221), 1, - anon_sym_LBRACE2, - ACTIONS(2225), 1, - sym__not_escape_sequence, - ACTIONS(2227), 1, - sym__string_end, - STATE(994), 1, - aux_sym_string_content_repeat1, - ACTIONS(2223), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [52615] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(2231), 1, - anon_sym_LPAREN, - ACTIONS(2233), 1, - anon_sym_STAR, - STATE(1095), 1, - sym_dotted_name, - STATE(1146), 1, - sym_aliased_import, - STATE(1330), 1, - sym_wildcard_import, - STATE(1331), 1, - sym__import_list, - [52640] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2237), 1, - anon_sym_as, - ACTIONS(2235), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [52655] = 5, + anon_sym_EQ, + sym_type_conversion, + [52587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, + ACTIONS(2169), 1, + anon_sym_except, + ACTIONS(2171), 1, + anon_sym_finally, + STATE(551), 1, + sym_finally_clause, + STATE(250), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(252), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [52608] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2239), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - sym_identifier, + ACTIONS(2069), 1, + anon_sym_if, ACTIONS(2203), 1, + anon_sym_COMMA, + STATE(1130), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2205), 2, + sym__newline, + sym__semicolon, + [52631] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2207), 1, + sym_identifier, + ACTIONS(2209), 1, + anon_sym_DOT, + ACTIONS(2211), 1, + anon_sym___future__, + STATE(1171), 1, + aux_sym_import_prefix_repeat1, + STATE(1219), 1, + sym_import_prefix, + STATE(1420), 2, + sym_relative_import, + sym_dotted_name, + [52654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2215), 1, + anon_sym_as, + ACTIONS(2213), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1909), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [52688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + sym_identifier, + ACTIONS(2185), 1, anon_sym_STAR, - ACTIONS(2205), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(1286), 4, + STATE(1240), 4, sym_typevar_parameter, sym_typevartuple_parameter, sym_paramspec_parameter, sym__type_parameter, - [52693] = 2, + [52707] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2217), 1, + anon_sym_COMMA, + ACTIONS(2219), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1246), 1, + aux_sym_dictionary_repeat1, + STATE(1445), 1, + sym__comprehension_clauses, + [52732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2221), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 7, @@ -67189,1050 +67248,1124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [52706] = 2, + [52758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 7, + ACTIONS(2116), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1919), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2223), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_EQ, - sym_type_conversion, - [52719] = 7, + [52807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2073), 1, + ACTIONS(2225), 7, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1078), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(1923), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_or, + [52835] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1903), 1, + anon_sym_async, + ACTIONS(1905), 1, + anon_sym_for, + ACTIONS(2227), 1, + anon_sym_COMMA, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(936), 1, + sym_for_in_clause, + STATE(1251), 1, + aux_sym_dictionary_repeat1, + STATE(1462), 1, + sym__comprehension_clauses, + [52860] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2231), 2, + sym__newline, + sym__semicolon, + [52883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1923), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [52900] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + ACTIONS(2235), 1, + anon_sym_LPAREN, + ACTIONS(2237), 1, + anon_sym_STAR, + STATE(1105), 1, + sym_dotted_name, + STATE(1159), 1, + sym_aliased_import, + STATE(1335), 1, + sym_wildcard_import, + STATE(1338), 1, + sym__import_list, + [52925] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(1913), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [52944] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1891), 2, + sym__newline, + sym__semicolon, + [52967] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2239), 2, + sym__newline, + sym__semicolon, + [52990] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1082), 1, aux_sym_expression_list_repeat1, ACTIONS(2241), 2, sym__newline, sym__semicolon, - [52742] = 5, + [53013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, + ACTIONS(2159), 1, anon_sym_if, - ACTIONS(1965), 4, - sym__newline, - anon_sym_from, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(2177), 1, anon_sym_COMMA, - sym__semicolon, - [52761] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - anon_sym_except, - ACTIONS(2211), 1, - anon_sym_finally, - STATE(553), 1, - sym_finally_clause, - STATE(259), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(260), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [52782] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - anon_sym_async, - ACTIONS(1889), 1, - anon_sym_for, ACTIONS(2243), 1, - anon_sym_COMMA, + anon_sym_as, ACTIONS(2245), 1, - anon_sym_RBRACE, - STATE(943), 1, - sym_for_in_clause, - STATE(1234), 1, - aux_sym_dictionary_repeat1, - STATE(1392), 1, - sym__comprehension_clauses, - [52807] = 7, + anon_sym_COLON, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [53038] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, + ACTIONS(2159), 1, anon_sym_if, - ACTIONS(2073), 1, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(2177), 1, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2247), 2, - sym__newline, - sym__semicolon, - [52830] = 6, - ACTIONS(3), 1, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(2249), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [53063] = 6, + ACTIONS(1948), 1, sym_comment, - ACTIONS(2191), 1, - anon_sym_except, - ACTIONS(2193), 1, - anon_sym_finally, - STATE(525), 1, - sym_finally_clause, - STATE(256), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(262), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [52851] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1106), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2249), 2, - sym__newline, - sym__semicolon, - [52874] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2073), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1904), 2, - sym__newline, - sym__semicolon, - [52897] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, ACTIONS(2251), 1, - anon_sym_COMMA, - STATE(1119), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2253), 2, - sym__newline, - sym__semicolon, - [52920] = 5, + anon_sym_LBRACE2, + ACTIONS(2256), 1, + sym__not_escape_sequence, + ACTIONS(2259), 1, + sym__string_end, + STATE(1035), 1, + aux_sym_string_content_repeat1, + ACTIONS(2253), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [53084] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, + ACTIONS(2159), 1, anon_sym_if, - ACTIONS(2255), 3, - sym__newline, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(2177), 1, anon_sym_COMMA, - sym__semicolon, - [52938] = 4, + ACTIONS(2261), 1, + anon_sym_as, + ACTIONS(2263), 1, + anon_sym_COLON, + STATE(1178), 1, + aux_sym_exception_list_repeat1, + [53109] = 6, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2265), 1, + anon_sym_LBRACE2, + ACTIONS(2269), 1, + sym__not_escape_sequence, + ACTIONS(2271), 1, + sym__string_end, + STATE(1035), 1, + aux_sym_string_content_repeat1, + ACTIONS(2267), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [53130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, + ACTIONS(2273), 1, anon_sym_DOT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_match_value_pattern_repeat1, ACTIONS(1868), 4, sym__newline, anon_sym_COMMA, anon_sym_as, sym__semicolon, - [52954] = 2, + [53146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52966] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2262), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2264), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52980] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - ACTIONS(2266), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [53002] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2270), 1, - anon_sym_COLON, - ACTIONS(2268), 2, - anon_sym_COMMA, - anon_sym_as, - [53022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2272), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [53040] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2274), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2276), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53066] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2280), 1, - anon_sym_COLON, - ACTIONS(2278), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53086] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - ACTIONS(2282), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [53108] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2284), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2286), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2290), 1, - anon_sym_COLON, - ACTIONS(2288), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, + ACTIONS(1873), 1, anon_sym_DOT, STATE(1051), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2292), 4, + ACTIONS(2276), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [53158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 1, - anon_sym_DOT, - STATE(1066), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2292), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [53174] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - ACTIONS(2296), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [53196] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - ACTIONS(2298), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [53218] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - ACTIONS(2300), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [53240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_DOT, - STATE(880), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2302), 4, - anon_sym_import, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [53256] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2304), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [53274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2306), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [53292] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2310), 1, - anon_sym_COLON, - ACTIONS(2308), 2, - anon_sym_COMMA, - anon_sym_as, - [53312] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1977), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, - anon_sym_COMMA, - STATE(1280), 1, - aux_sym_argument_list_repeat1, - [53334] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2312), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [53352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2199), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [53370] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2314), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2316), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53384] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2318), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2320), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53398] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2322), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ, - [53416] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2326), 1, - anon_sym_COLON, - ACTIONS(2324), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, - anon_sym_COLON, - ACTIONS(2332), 1, - anon_sym_EQ, - STATE(1154), 1, - sym__type_bound, - STATE(1347), 1, - sym__type_param_default, - ACTIONS(2328), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(1906), 1, - anon_sym_COMMA, - ACTIONS(2334), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [53478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 1, - anon_sym_AT, - STATE(1064), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2336), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [53494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2343), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2341), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [53510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 1, - anon_sym_DOT, - STATE(1034), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2302), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [53526] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2346), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2348), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53540] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2161), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2352), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2350), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2354), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53589] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2356), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53606] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2358), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53623] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2360), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53640] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2364), 1, - anon_sym_COLON, - ACTIONS(2366), 1, - anon_sym_LBRACK, - STATE(1212), 1, - sym_type_parameters, - STATE(1430), 1, - sym_argument_list, - [53659] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2368), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2077), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [53691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2373), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2147), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [53706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2147), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [53721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2377), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53738] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2381), 1, - anon_sym_RBRACE, - ACTIONS(2383), 1, - anon_sym_EQ, - ACTIONS(2385), 1, - sym_type_conversion, - STATE(1495), 1, - sym_format_specifier, - [53757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2341), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [53768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2229), 1, - sym_identifier, - STATE(1114), 1, - sym_dotted_name, - STATE(1289), 1, - sym_aliased_import, - ACTIONS(2387), 2, - sym__newline, - sym__semicolon, - [53785] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2389), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2391), 2, - sym__newline, - sym__semicolon, - [53819] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2393), 2, - sym__newline, - sym__semicolon, - [53836] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2395), 1, - anon_sym_as, - ACTIONS(2397), 1, - anon_sym_COLON, - [53855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(1993), 2, - sym__newline, - sym__semicolon, - [53889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2401), 2, - sym__newline, - sym__semicolon, - [53906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(2403), 1, - anon_sym_LPAREN, - STATE(1095), 1, - sym_dotted_name, - STATE(1146), 1, - sym_aliased_import, - STATE(1336), 1, - sym__import_list, - [53925] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_COLON, - STATE(1197), 1, - sym_type_parameters, - STATE(1438), 1, - sym_argument_list, - [53944] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2407), 1, - anon_sym_RBRACE, - ACTIONS(2409), 1, - anon_sym_EQ, - ACTIONS(2411), 1, - sym_type_conversion, - STATE(1428), 1, - sym_format_specifier, - [53963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2415), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2413), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53978] = 6, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2418), 1, - anon_sym_RBRACE, - ACTIONS(2420), 1, - anon_sym_LBRACE2, - ACTIONS(2423), 1, - aux_sym_format_specifier_token1, - STATE(1094), 1, - aux_sym_format_specifier_repeat1, - STATE(1283), 1, - sym_interpolation, - [53997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2426), 1, - anon_sym_COMMA, - ACTIONS(2428), 1, - anon_sym_as, - STATE(1164), 1, - aux_sym__import_list_repeat1, - ACTIONS(2430), 2, - sym__newline, - sym__semicolon, - [54014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [54025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2434), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2350), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [54040] = 4, + [53162] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, anon_sym_COMMA, - STATE(1097), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2278), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + anon_sym_DOT, + STATE(1047), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2276), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + sym__semicolon, + [53200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2284), 1, + anon_sym_COLON, + ACTIONS(2282), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2286), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + [53238] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2288), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2290), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2294), 1, + anon_sym_AT, + STATE(1045), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2292), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [53268] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2297), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2299), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + anon_sym_DOT, + STATE(1038), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2301), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + sym__semicolon, + [53298] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2303), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2305), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53312] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2309), 1, + anon_sym_COLON, + ACTIONS(2307), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53332] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2311), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_DOT, + STATE(881), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2301), 4, + anon_sym_import, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [53370] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2313), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2315), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [53410] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2317), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2319), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53424] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2321), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53446] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2323), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2325), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_COMMA, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2327), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [53476] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2332), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [53494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2334), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [53512] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(1962), 1, + anon_sym_COMMA, + STATE(1286), 1, + aux_sym_argument_list_repeat1, + [53534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53546] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2340), 1, + anon_sym_COLON, + ACTIONS(2342), 1, + anon_sym_EQ, + STATE(1176), 1, + sym__type_bound, + STATE(1364), 1, + sym__type_param_default, + ACTIONS(2338), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2223), 3, + sym__newline, + anon_sym_EQ, + sym__semicolon, + [53584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 1, + anon_sym_if, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(2344), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [53602] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2346), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53624] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1893), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2348), 1, + anon_sym_COLON, + STATE(982), 1, + aux_sym_expression_list_repeat1, + [53646] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2350), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2352), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [53660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2354), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [53678] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2356), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [53696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1877), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2360), 1, + anon_sym_COLON, + ACTIONS(2358), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53728] = 6, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2362), 1, + anon_sym_RBRACE, + ACTIONS(2364), 1, + anon_sym_LBRACE2, + ACTIONS(2367), 1, + aux_sym_format_specifier_token1, + STATE(1072), 1, + aux_sym_format_specifier_repeat1, + STATE(1255), 1, + sym_interpolation, + [53747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2003), 2, + sym__newline, + sym__semicolon, + [53764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + ACTIONS(2370), 1, + anon_sym_LPAREN, + STATE(1105), 1, + sym_dotted_name, + STATE(1159), 1, + sym_aliased_import, + STATE(1343), 1, + sym__import_list, + [53783] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2372), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53800] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2376), 1, + anon_sym_RBRACE, + ACTIONS(2378), 1, + anon_sym_EQ, + ACTIONS(2380), 1, + sym_type_conversion, + STATE(1460), 1, + sym_format_specifier, + [53819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 1, + anon_sym_COMMA, + STATE(1099), 1, aux_sym__collection_elements_repeat1, - ACTIONS(1891), 3, + ACTIONS(2382), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [54055] = 6, + [53834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2436), 1, - anon_sym_as, - ACTIONS(2438), 1, - anon_sym_COLON, - [54074] = 5, + ACTIONS(2386), 1, + anon_sym_COMMA, + STATE(1096), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2131), 3, + sym__newline, + anon_sym_from, + sym__semicolon, + [53849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2440), 2, + ACTIONS(2388), 1, + anon_sym_COMMA, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2382), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2390), 2, sym__newline, sym__semicolon, - [54091] = 6, + [53881] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2392), 2, + sym__newline, + sym__semicolon, + [53898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2394), 1, + anon_sym_COMMA, + STATE(1096), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2131), 3, + sym__newline, + anon_sym_from, + sym__semicolon, + [53913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2195), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2398), 1, + anon_sym_COLON, + ACTIONS(2400), 1, + anon_sym_LBRACK, + STATE(1210), 1, + sym_type_parameters, + STATE(1402), 1, + sym_argument_list, + [53949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2402), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [53977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2406), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2408), 1, + anon_sym_RBRACE, + ACTIONS(2410), 1, + anon_sym_EQ, + ACTIONS(2412), 1, + sym_type_conversion, + STATE(1470), 1, + sym_format_specifier, + [54013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [54024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2414), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2416), 2, + sym__newline, + sym__semicolon, + [54058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2418), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2420), 2, + sym__newline, + sym__semicolon, + [54092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2422), 2, + sym__newline, + sym__semicolon, + [54109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_COMMA, + STATE(1077), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(1907), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, + anon_sym_COMMA, + STATE(1096), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2075), 3, + sym__newline, + anon_sym_from, + sym__semicolon, + [54139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + ACTIONS(2427), 2, + sym__newline, + sym__semicolon, + [54156] = 6, ACTIONS(1948), 1, sym_comment, - ACTIONS(2442), 1, + ACTIONS(2429), 1, anon_sym_RBRACE, - ACTIONS(2444), 1, + ACTIONS(2431), 1, anon_sym_LBRACE2, - ACTIONS(2446), 1, + ACTIONS(2433), 1, aux_sym_format_specifier_token1, STATE(1104), 1, aux_sym_format_specifier_repeat1, - STATE(1283), 1, + STATE(1255), 1, sym_interpolation, - [54110] = 5, + [54175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, + ACTIONS(2437), 1, + anon_sym_COMMA, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2435), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2440), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, sym_identifier, - STATE(1114), 1, + STATE(1132), 1, sym_dotted_name, STATE(1289), 1, sym_aliased_import, - ACTIONS(2448), 2, + ACTIONS(2427), 2, sym__newline, sym__semicolon, - [54127] = 5, + [54224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, - sym_identifier, - STATE(1114), 1, - sym_dotted_name, - STATE(1289), 1, - sym_aliased_import, - ACTIONS(2448), 2, - sym__newline, - sym__semicolon, - [54144] = 6, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2442), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2444), 1, + anon_sym_COLON, + STATE(1239), 1, + sym_type_parameters, + STATE(1444), 1, + sym_argument_list, + [54260] = 6, ACTIONS(1948), 1, sym_comment, - ACTIONS(2444), 1, + ACTIONS(2431), 1, anon_sym_LBRACE2, - ACTIONS(2450), 1, + ACTIONS(2446), 1, anon_sym_RBRACE, - ACTIONS(2452), 1, + ACTIONS(2448), 1, aux_sym_format_specifier_token1, - STATE(1094), 1, + STATE(1072), 1, aux_sym_format_specifier_repeat1, - STATE(1283), 1, + STATE(1255), 1, sym_interpolation, - [54163] = 2, + [54279] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2450), 1, + anon_sym_COMMA, + ACTIONS(2452), 1, + anon_sym_as, + STATE(1145), 1, + aux_sym__import_list_repeat1, + ACTIONS(2454), 2, + sym__newline, + sym__semicolon, + [54296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2456), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54313] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1868), 5, @@ -68241,2941 +68374,2989 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, sym__semicolon, - [54174] = 4, + [54324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1161), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2454), 2, - sym__newline, - sym__semicolon, - [54188] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2456), 1, - anon_sym_else, - [54204] = 4, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1359), 1, + sym_parameters, + STATE(1367), 1, + sym_type_parameters, + [54340] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2460), 1, anon_sym_COMMA, - STATE(847), 1, - aux_sym__patterns_repeat1, - ACTIONS(2458), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [54218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - sym_identifier, - STATE(1130), 1, - sym_dotted_name, - STATE(1271), 1, - sym_aliased_import, - STATE(1401), 1, - sym__import_list, - [54234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(1934), 1, - anon_sym_COLON, - STATE(570), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - [54248] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - sym_identifier, - STATE(1130), 1, - sym_dotted_name, - STATE(1271), 1, - sym_aliased_import, - STATE(1395), 1, - sym__import_list, - [54264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(1934), 1, - anon_sym_COLON, - STATE(571), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - [54278] = 4, + STATE(1124), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2462), 2, + sym__newline, + sym__semicolon, + [54354] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2464), 1, anon_sym_COMMA, - STATE(1113), 1, - aux_sym__import_list_repeat1, - ACTIONS(2467), 2, + STATE(1110), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2354), 2, sym__newline, sym__semicolon, - [54292] = 3, + [54368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 1, - anon_sym_as, - ACTIONS(2469), 3, - sym__newline, + ACTIONS(2467), 1, anon_sym_COMMA, - sym__semicolon, - [54304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2471), 1, - anon_sym_else, - [54320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_COMMA, - STATE(1118), 1, + STATE(1111), 1, aux_sym_print_statement_repeat1, - ACTIONS(2475), 2, + ACTIONS(2470), 2, sym__newline, sym__semicolon, - [54334] = 4, + [54382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2479), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2472), 1, anon_sym_COLON, + [54398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + sym_identifier, + STATE(1105), 1, + sym_dotted_name, + STATE(1159), 1, + sym_aliased_import, + STATE(1352), 1, + sym__import_list, + [54414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_DOT, + STATE(1114), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2474), 2, + anon_sym_import, + sym_identifier, + [54428] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2481), 1, - anon_sym_EQ, - ACTIONS(2477), 2, + anon_sym_COMMA, + STATE(1115), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2479), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [54442] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_COMMA, + STATE(848), 1, + aux_sym__patterns_repeat1, + ACTIONS(2484), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 4, anon_sym_RPAREN, anon_sym_COMMA, - [54348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2483), 1, - anon_sym_COMMA, - STATE(1156), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2485), 2, - sym__newline, - sym__semicolon, - [54362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2487), 1, - anon_sym_COMMA, - STATE(1156), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2489), 2, - sym__newline, - sym__semicolon, - [54376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, anon_sym_COLON, - ACTIONS(2491), 1, - anon_sym_RBRACE, - ACTIONS(2493), 1, - sym_type_conversion, - STATE(1389), 1, - sym_format_specifier, - [54392] = 4, + anon_sym_EQ, + [54466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, + ACTIONS(2157), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1121), 1, - aux_sym_global_statement_repeat1, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1917), 1, + anon_sym_COLON, + STATE(572), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + [54490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(1917), 1, + anon_sym_COLON, + STATE(573), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + [54504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2490), 1, + anon_sym_EQ, + ACTIONS(2488), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [54516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2492), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2494), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [54536] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 1, + anon_sym_COMMA, + STATE(1111), 1, + aux_sym_print_statement_repeat1, ACTIONS(2498), 2, sym__newline, sym__semicolon, - [54406] = 5, + [54550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(1883), 1, anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, ACTIONS(2500), 1, anon_sym_COLON, - [54422] = 4, + [54566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2502), 1, + anon_sym_COLON, + [54582] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2504), 1, - anon_sym_COMMA, - STATE(1108), 1, - aux_sym__patterns_repeat1, - ACTIONS(2502), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [54436] = 5, + sym_identifier, + STATE(1172), 1, + sym_dotted_name, + STATE(1182), 1, + sym_aliased_import, + STATE(1447), 1, + sym__import_list, + [54598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 1, - anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, ACTIONS(2506), 1, - anon_sym_LPAREN, - STATE(1307), 1, - sym_type_parameters, - STATE(1376), 1, - sym_parameters, - [54452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [54462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [54472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_LPAREN, - STATE(1355), 1, - sym_type_parameters, - STATE(1367), 1, - sym_parameters, - [54488] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2512), 1, anon_sym_COLON, - [54504] = 4, + [54614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, - anon_sym_DOT, - STATE(1148), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2514), 2, - anon_sym_import, + ACTIONS(2504), 1, sym_identifier, - [54518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2430), 1, - anon_sym_RPAREN, - ACTIONS(2518), 1, - anon_sym_COMMA, - ACTIONS(2520), 1, - anon_sym_as, - STATE(1201), 1, - aux_sym__import_list_repeat1, - [54534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2522), 1, - anon_sym_else, - [54550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2239), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [54560] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 1, - anon_sym_case, - STATE(515), 1, - sym_cases, - STATE(390), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54574] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2448), 1, - anon_sym_RPAREN, - ACTIONS(2462), 1, - sym_identifier, - STATE(1262), 1, + STATE(1172), 1, sym_dotted_name, - STATE(1374), 1, + STATE(1182), 1, sym_aliased_import, - [54590] = 4, + STATE(1386), 1, + sym__import_list, + [54630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, - anon_sym_case, - STATE(502), 1, - sym_cases, - STATE(390), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54604] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2526), 1, - anon_sym_COLON, - [54620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2448), 1, - anon_sym_RPAREN, - ACTIONS(2462), 1, - sym_identifier, - STATE(1262), 1, - sym_dotted_name, - STATE(1374), 1, - sym_aliased_import, - [54636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2528), 1, - anon_sym_COLON, - [54652] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2530), 1, - anon_sym_RBRACE, - ACTIONS(2532), 1, - sym_type_conversion, - STATE(1444), 1, - sym_format_specifier, - [54668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2534), 1, - anon_sym_COLON, - [54684] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2536), 1, - anon_sym_COLON, - [54700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2538), 1, - anon_sym_COLON, - [54716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [54726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 1, - anon_sym_RPAREN, - ACTIONS(2462), 1, - sym_identifier, - STATE(1262), 1, - sym_dotted_name, - STATE(1374), 1, - sym_aliased_import, - [54742] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2542), 1, - anon_sym_else, - [54758] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2426), 1, + ACTIONS(2508), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym__import_list_repeat1, - ACTIONS(2430), 2, - sym__newline, - sym__semicolon, - [54772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1999), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - sym__semicolon, - [54782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_DOT, - STATE(1148), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2544), 2, - anon_sym_import, - sym_identifier, - [54796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - STATE(1368), 1, - sym__type_param_default, - ACTIONS(2549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54810] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - STATE(1339), 1, - sym__type_param_default, - ACTIONS(2551), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 1, - anon_sym_EQ, - ACTIONS(2553), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [54836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 1, - anon_sym_case, - STATE(495), 1, - sym_cases, - STATE(407), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, - anon_sym_COMMA, - STATE(1121), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2561), 2, - sym__newline, - sym__semicolon, - [54864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 1, - anon_sym_EQ, - STATE(1348), 1, - sym__type_param_default, - ACTIONS(2563), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [54878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2565), 1, - anon_sym_COLON, - [54894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(1156), 1, + STATE(1111), 1, aux_sym_print_statement_repeat1, - ACTIONS(2570), 2, + ACTIONS(2510), 2, sym__newline, sym__semicolon, - [54908] = 4, + [54644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(2512), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1131), 1, + aux_sym__import_list_repeat1, + ACTIONS(2515), 2, + sym__newline, + sym__semicolon, + [54658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 1, + anon_sym_as, + ACTIONS(2517), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [54670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 1, + anon_sym_COMMA, + STATE(1131), 1, + aux_sym__import_list_repeat1, + ACTIONS(2521), 2, + sym__newline, + sym__semicolon, + [54684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 1, + anon_sym_COMMA, + STATE(1110), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2523), 2, + sym__newline, + sym__semicolon, + [54698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2525), 1, + anon_sym_COMMA, + STATE(1135), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2528), 2, + sym__newline, + sym__semicolon, + [54712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1322), 1, + sym_type_parameters, + STATE(1355), 1, + sym_parameters, + [54728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_case, + STATE(541), 1, + sym_cases, + STATE(414), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_case, + STATE(484), 1, + sym_cases, + STATE(414), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2532), 1, + anon_sym_RBRACE, + ACTIONS(2534), 1, + sym_type_conversion, + STATE(1410), 1, + sym_format_specifier, + [54772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + anon_sym_and, + ACTIONS(2065), 1, + anon_sym_or, + ACTIONS(2069), 1, + anon_sym_if, + ACTIONS(2536), 1, + sym__newline, + [54788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 1, + anon_sym_COMMA, + STATE(1057), 1, aux_sym_open_sequence_match_pattern_repeat1, ACTIONS(1723), 2, anon_sym_if, anon_sym_COLON, - [54922] = 5, + [54802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2540), 1, + anon_sym_else, + [54818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2544), 2, + sym__newline, + sym__semicolon, + [54832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_COMMA, + STATE(1155), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2546), 2, + sym__newline, + sym__semicolon, + [54846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 1, + anon_sym_COMMA, + STATE(1131), 1, + aux_sym__import_list_repeat1, + ACTIONS(2521), 2, + sym__newline, + sym__semicolon, + [54860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_RPAREN, + ACTIONS(2504), 1, sym_identifier, - STATE(1095), 1, + STATE(1226), 1, sym_dotted_name, - STATE(1146), 1, - sym_aliased_import, STATE(1358), 1, - sym__import_list, - [54938] = 5, + sym_aliased_import, + [54876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2574), 1, - anon_sym_COLON, - [54954] = 4, + ACTIONS(2550), 1, + anon_sym_case, + STATE(530), 1, + sym_cases, + STATE(390), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1161), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2576), 2, - sym__newline, - sym__semicolon, - [54968] = 4, + ACTIONS(2550), 1, + anon_sym_case, + STATE(529), 1, + sym_cases, + STATE(390), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, - anon_sym_COMMA, - STATE(1161), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2312), 2, - sym__newline, - sym__semicolon, - [54982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [54992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2581), 1, - anon_sym_COLON, - [55008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_COMMA, - STATE(1113), 1, - aux_sym__import_list_repeat1, - ACTIONS(2585), 2, - sym__newline, - sym__semicolon, - [55022] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2587), 1, - anon_sym_COMMA, - STATE(1113), 1, - aux_sym__import_list_repeat1, - ACTIONS(2585), 2, - sym__newline, - sym__semicolon, - [55036] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 1, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2458), 1, anon_sym_LPAREN, - STATE(1320), 1, + STATE(1317), 1, sym_type_parameters, - STATE(1356), 1, + STATE(1349), 1, sym_parameters, - [55052] = 4, + [54920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, - anon_sym_COMMA, - STATE(1167), 1, - aux_sym_with_clause_repeat1, - ACTIONS(2589), 2, - anon_sym_RPAREN, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2552), 1, anon_sym_COLON, - [55066] = 5, + [54936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2554), 1, + anon_sym_COLON, + [54952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2556), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2559), 2, + anon_sym_as, + anon_sym_COLON, + [54966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2458), 1, anon_sym_LPAREN, STATE(1319), 1, sym_type_parameters, - STATE(1354), 1, + STATE(1350), 1, sym_parameters, - [55082] = 5, + [54982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, + ACTIONS(1881), 1, anon_sym_and, - ACTIONS(1879), 1, + ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2594), 1, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2561), 1, anon_sym_COLON, - [55098] = 5, + [54998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_and, - ACTIONS(2055), 1, - anon_sym_or, - ACTIONS(2059), 1, - anon_sym_if, - ACTIONS(2596), 1, - sym__newline, - [55114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(1153), 1, + STATE(1135), 1, aux_sym_global_statement_repeat1, - ACTIONS(2598), 2, + ACTIONS(2563), 2, sym__newline, sym__semicolon, - [55128] = 4, + [55012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(1174), 1, + STATE(1135), 1, aux_sym_global_statement_repeat1, - ACTIONS(2600), 2, + ACTIONS(2565), 2, sym__newline, sym__semicolon, - [55142] = 4, + [55026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 1, - anon_sym_case, - STATE(496), 1, - sym_cases, - STATE(407), 2, - sym_case_block, - aux_sym_cases_repeat1, - [55156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, - anon_sym_COMMA, - STATE(1121), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2602), 2, - sym__newline, - sym__semicolon, - [55170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - anon_sym_if, - ACTIONS(1877), 1, - anon_sym_and, - ACTIONS(1879), 1, - anon_sym_or, - ACTIONS(2604), 1, + ACTIONS(2569), 1, anon_sym_COLON, - [55186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_RPAREN, - ACTIONS(2606), 1, - anon_sym_COMMA, - STATE(1275), 1, - aux_sym__parameters_repeat1, - [55199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_RPAREN, - ACTIONS(2608), 1, - anon_sym_COMMA, - STATE(1167), 1, - aux_sym_with_clause_repeat1, - [55212] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_RPAREN, - ACTIONS(2610), 1, - sym_identifier, - STATE(1341), 1, - sym_match_keyword_pattern, - [55225] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_RBRACE, - ACTIONS(2264), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, - anon_sym_COMMA, - ACTIONS(2614), 1, - anon_sym_RBRACK, - STATE(1217), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2616), 1, - anon_sym_RPAREN, - ACTIONS(2618), 1, - anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [55262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1840), 1, - anon_sym_COMMA, - ACTIONS(2621), 1, - anon_sym_in, - STATE(862), 1, - aux_sym__patterns_repeat1, - [55275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1840), 1, - anon_sym_COMMA, - ACTIONS(2623), 1, - anon_sym_in, - STATE(862), 1, - aux_sym__patterns_repeat1, - [55288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2625), 1, - sym__semicolon, - ACTIONS(2627), 1, - sym__newline, - STATE(1302), 1, - aux_sym__simple_statements_repeat1, - [55301] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2274), 1, - anon_sym_RBRACE, - ACTIONS(2276), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2629), 1, + ACTIONS(2571), 1, anon_sym_EQ, - ACTIONS(2631), 2, + ACTIONS(2567), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2573), 1, + anon_sym_COLON, + [55056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2450), 1, + anon_sym_COMMA, + STATE(1133), 1, + aux_sym__import_list_repeat1, + ACTIONS(2454), 2, sym__newline, sym__semicolon, - [55323] = 4, + [55070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2635), 1, - anon_sym_RBRACE, - STATE(1252), 1, - aux_sym_match_mapping_pattern_repeat1, - [55336] = 4, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2575), 1, + anon_sym_else, + [55086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2577), 1, + anon_sym_COLON, + [55102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2579), 1, + anon_sym_COLON, + [55118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, anon_sym_RPAREN, - ACTIONS(2637), 1, - anon_sym_COMMA, - STATE(1209), 1, - aux_sym_match_class_pattern_repeat2, - [55349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, + ACTIONS(2504), 1, sym_identifier, - STATE(1262), 1, + STATE(1226), 1, sym_dotted_name, - STATE(1374), 1, + STATE(1358), 1, sym_aliased_import, - [55362] = 4, + [55134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2581), 1, + anon_sym_else, + [55150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, anon_sym_RPAREN, - ACTIONS(2639), 1, - anon_sym_COMMA, - STATE(1229), 1, - aux_sym_match_class_pattern_repeat2, - [55375] = 4, + ACTIONS(2504), 1, + sym_identifier, + STATE(1226), 1, + sym_dotted_name, + STATE(1358), 1, + sym_aliased_import, + [55166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2583), 1, + anon_sym_COLON, + [55182] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 1, + anon_sym_COMMA, + STATE(1110), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2585), 2, + sym__newline, + sym__semicolon, + [55196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2009), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + sym__semicolon, + [55206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2587), 1, + anon_sym_COLON, + [55222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_and, + ACTIONS(1883), 1, + anon_sym_or, + ACTIONS(1895), 1, + anon_sym_if, + ACTIONS(2589), 1, + anon_sym_else, + [55238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, + anon_sym_DOT, + STATE(1114), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2591), 2, + anon_sym_import, + sym_identifier, + [55252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2454), 1, anon_sym_RPAREN, - ACTIONS(2643), 1, + ACTIONS(2595), 1, anon_sym_COMMA, - STATE(1191), 1, - aux_sym_match_class_pattern_repeat1, - [55388] = 2, + ACTIONS(2597), 1, + anon_sym_as, + STATE(1305), 1, + aux_sym__import_list_repeat1, + [55268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 3, + ACTIONS(2599), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [55278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_EQ, + STATE(1321), 1, + sym__type_param_default, + ACTIONS(2601), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_EQ, + STATE(1323), 1, + sym__type_param_default, + ACTIONS(2603), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 1, + anon_sym_EQ, + STATE(1325), 1, + sym__type_param_default, + ACTIONS(2605), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [55320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2609), 1, + anon_sym_COMMA, + STATE(1116), 1, + aux_sym__patterns_repeat1, + ACTIONS(2607), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [55334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2611), 2, + anon_sym_as, + anon_sym_COLON, + [55348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2613), 1, + anon_sym_RBRACE, + ACTIONS(2615), 1, + sym_type_conversion, + STATE(1458), 1, + sym_format_specifier, + [55364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_COMMA, + ACTIONS(2620), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [55377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + sym__semicolon, + ACTIONS(2624), 1, + sym__newline, + STATE(1299), 1, + aux_sym__simple_statements_repeat1, + [55390] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2454), 1, + anon_sym_RPAREN, + ACTIONS(2595), 1, + anon_sym_COMMA, + STATE(1267), 1, + aux_sym__import_list_repeat1, + [55403] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2626), 1, + anon_sym_if, + ACTIONS(2628), 1, + anon_sym_COLON, + STATE(1506), 1, + sym_guard, + [55416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2630), 1, + anon_sym_COMMA, + ACTIONS(2632), 2, + anon_sym_if, + anon_sym_COLON, + [55427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 3, sym__newline, anon_sym_EQ, sym__semicolon, - [55397] = 4, + [55436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, - anon_sym_COMMA, - ACTIONS(2648), 1, - anon_sym_RBRACK, - STATE(1199), 1, - aux_sym_type_parameters_repeat1, - [55410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2650), 3, + ACTIONS(2634), 3, anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, - [55419] = 4, + [55445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2636), 1, + anon_sym_COMMA, + ACTIONS(2638), 1, + anon_sym_RBRACK, + STATE(1248), 1, + aux_sym_type_parameters_repeat1, + [55458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2640), 1, + anon_sym_RPAREN, + ACTIONS(2642), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [55471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2644), 1, + anon_sym_RPAREN, + ACTIONS(2646), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [55484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2504), 1, + sym_identifier, + STATE(1226), 1, + sym_dotted_name, + STATE(1358), 1, + sym_aliased_import, + [55497] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2288), 1, + anon_sym_RBRACE, + ACTIONS(2290), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + anon_sym_RPAREN, + ACTIONS(2650), 1, + anon_sym_COMMA, + STATE(1295), 1, + aux_sym_match_class_pattern_repeat2, + [55521] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2652), 1, - anon_sym_if, + anon_sym_RPAREN, ACTIONS(2654), 1, - anon_sym_COLON, - STATE(1456), 1, - sym_guard, - [55432] = 3, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [55534] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2656), 1, - anon_sym_COMMA, - ACTIONS(2658), 2, - anon_sym_if, - anon_sym_COLON, - [55443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2660), 1, - anon_sym_COLON, - STATE(1445), 1, - sym_argument_list, - [55456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [55465] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 1, - anon_sym_COMMA, - ACTIONS(2667), 1, - anon_sym_RBRACK, - STATE(1199), 1, - aux_sym_type_parameters_repeat1, - [55478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1739), 1, anon_sym_RPAREN, - ACTIONS(2610), 1, - sym_identifier, - STATE(1341), 1, - sym_match_keyword_pattern, - [55491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_RPAREN, - ACTIONS(2669), 1, + ACTIONS(2658), 1, anon_sym_COMMA, - STATE(1263), 1, - aux_sym__import_list_repeat1, - [55504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_RPAREN, - ACTIONS(2671), 1, - anon_sym_COMMA, - STATE(1263), 1, - aux_sym__import_list_repeat1, - [55517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [55526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2673), 1, - sym__semicolon, - ACTIONS(2676), 1, - sym__newline, - STATE(1204), 1, - aux_sym__simple_statements_repeat1, - [55539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2652), 1, - anon_sym_if, - ACTIONS(2678), 1, - anon_sym_COLON, - STATE(1470), 1, - sym_guard, - [55552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_COLON, - ACTIONS(2680), 1, - anon_sym_COMMA, - STATE(1278), 1, - aux_sym__parameters_repeat1, - [55565] = 2, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [55547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1425), 3, sym__newline, anon_sym_in, sym__semicolon, - [55574] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2284), 1, - anon_sym_RBRACE, - ACTIONS(2286), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55585] = 4, + [55556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_RPAREN, - ACTIONS(2684), 1, - anon_sym_COMMA, - STATE(1209), 1, - aux_sym_match_class_pattern_repeat2, - [55598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1187), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [55607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 1, - sym_identifier, - ACTIONS(2689), 1, - sym_match_wildcard_pattern, - STATE(1096), 1, - sym_match_capture_pattern, - [55620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LPAREN, - ACTIONS(2691), 1, - anon_sym_COLON, - STATE(1453), 1, - sym_argument_list, - [55633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_RPAREN, - ACTIONS(2693), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, + ACTIONS(2661), 1, sym__semicolon, - ACTIONS(2697), 1, + ACTIONS(2664), 1, sym__newline, - STATE(1230), 1, + STATE(1196), 1, aux_sym__simple_statements_repeat1, - [55659] = 4, + [55569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 1, - sym_identifier, - ACTIONS(2699), 1, - anon_sym_import, - STATE(1478), 1, - sym_dotted_name, - [55672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 1, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_RBRACE, - STATE(1216), 1, - aux_sym_match_mapping_pattern_repeat1, - [55685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_RBRACK, - ACTIONS(2706), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1840), 1, - anon_sym_COMMA, - ACTIONS(2708), 1, - anon_sym_in, - STATE(862), 1, - aux_sym__patterns_repeat1, - [55711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_DOT, - ACTIONS(1912), 1, - anon_sym_COLON, - STATE(880), 1, - aux_sym_match_value_pattern_repeat1, - [55724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(2015), 1, + ACTIONS(2019), 1, anon_sym_RPAREN, - STATE(1287), 1, + STATE(1293), 1, aux_sym__collection_elements_repeat1, - [55737] = 4, + [55582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1862), 1, + anon_sym_COLON, + ACTIONS(2666), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym__parameters_repeat1, + [55595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 3, + sym__newline, + anon_sym_in, + sym__semicolon, + [55604] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + anon_sym_RPAREN, + ACTIONS(2668), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_match_class_pattern_repeat1, + [55617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2670), 1, + anon_sym_COMMA, + ACTIONS(2673), 1, + anon_sym_RBRACK, + STATE(1201), 1, + aux_sym_index_expression_list_repeat1, + [55630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_COMMA, + ACTIONS(2678), 1, + anon_sym_RBRACE, + STATE(1202), 1, + aux_sym_match_mapping_pattern_repeat1, + [55643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2680), 1, + anon_sym_COMMA, + ACTIONS(2682), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_index_expression_list_repeat1, + [55656] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + anon_sym_RPAREN, + ACTIONS(2686), 1, + anon_sym_COMMA, + STATE(1189), 1, + aux_sym_argument_list_repeat1, + [55669] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2013), 1, + anon_sym_RPAREN, + ACTIONS(2015), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_argument_list_repeat1, + [55682] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2688), 1, + anon_sym_COMMA, + ACTIONS(2690), 1, + anon_sym_RBRACK, + STATE(1232), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2692), 1, + anon_sym_COMMA, + ACTIONS(2694), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [55708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_COMMA, + ACTIONS(2698), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [55721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [55730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2700), 1, + anon_sym_COLON, + STATE(1413), 1, + sym_argument_list, + [55743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(556), 1, + sym__newline, + ACTIONS(2702), 1, + sym__semicolon, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, + [55756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2704), 1, + sym__semicolon, + ACTIONS(2706), 1, + sym__newline, + STATE(1231), 1, + aux_sym__simple_statements_repeat1, + [55769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1739), 1, + anon_sym_RPAREN, + ACTIONS(2708), 1, + anon_sym_COMMA, + STATE(1249), 1, + aux_sym_match_class_pattern_repeat2, + [55782] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2710), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(2712), 1, - anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [55750] = 4, + sym_match_wildcard_pattern, + STATE(1086), 1, + sym_match_capture_pattern, + [55795] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2191), 1, + anon_sym_COMMA, + ACTIONS(2193), 1, + anon_sym_RBRACE, + STATE(1208), 1, + aux_sym_dictionary_repeat1, + [55808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, + anon_sym_RPAREN, ACTIONS(2714), 1, - anon_sym_RPAREN, - ACTIONS(2716), 1, anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [55763] = 4, + STATE(1216), 1, + aux_sym__import_list_repeat1, + [55821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2718), 1, - anon_sym_RPAREN, - ACTIONS(2720), 1, - anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [55776] = 4, + ACTIONS(2717), 1, + anon_sym_EQ, + ACTIONS(2719), 2, + sym__newline, + sym__semicolon, + [55832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1897), 1, anon_sym_COMMA, ACTIONS(2007), 1, anon_sym_RPAREN, - STATE(1287), 1, + STATE(1293), 1, aux_sym__collection_elements_repeat1, - [55789] = 4, + [55845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_COMMA, - ACTIONS(2215), 1, - anon_sym_RBRACE, - STATE(1241), 1, - aux_sym_dictionary_repeat1, - [55802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 1, + ACTIONS(2207), 1, sym_identifier, - ACTIONS(2722), 1, - anon_sym_RPAREN, - STATE(1341), 1, - sym_match_keyword_pattern, - [55815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_COMMA, - ACTIONS(2726), 1, - anon_sym_RBRACK, - STATE(1261), 1, - aux_sym_index_expression_list_repeat1, - [55828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_RPAREN, - ACTIONS(2730), 1, - anon_sym_COMMA, - STATE(1176), 1, - aux_sym__parameters_repeat1, - [55841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, - anon_sym_RPAREN, - ACTIONS(2732), 1, - anon_sym_COMMA, - STATE(1209), 1, - aux_sym_match_class_pattern_repeat2, - [55854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - sym__newline, - ACTIONS(2734), 1, - sym__semicolon, - STATE(1204), 1, - aux_sym__simple_statements_repeat1, - [55867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2736), 1, - anon_sym_RPAREN, - ACTIONS(2738), 1, - anon_sym_COMMA, - STATE(1222), 1, - aux_sym_argument_list_repeat1, - [55880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_RPAREN, - ACTIONS(1975), 1, - anon_sym_COMMA, - STATE(1223), 1, - aux_sym_argument_list_repeat1, - [55893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2229), 1, - sym_identifier, - STATE(1114), 1, + ACTIONS(2721), 1, + anon_sym_import, + STATE(1489), 1, sym_dotted_name, - STATE(1289), 1, - sym_aliased_import, - [55906] = 4, + [55858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 1, + ACTIONS(1897), 1, anon_sym_COMMA, - ACTIONS(2742), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, - [55919] = 4, + ACTIONS(1933), 1, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym__collection_elements_repeat1, + [55871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2725), 1, + anon_sym_RPAREN, + STATE(1333), 1, + sym_match_keyword_pattern, + [55884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_COLON, + ACTIONS(2567), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2746), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, - [55932] = 4, + [55895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(560), 1, - sym__newline, - ACTIONS(2748), 1, - sym__semicolon, - STATE(1204), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(1954), 1, + anon_sym_RPAREN, + ACTIONS(1956), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_argument_list_repeat1, + [55908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_DOT, + ACTIONS(1931), 1, + anon_sym_COLON, + STATE(881), 1, + aux_sym_match_value_pattern_repeat1, + [55921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_COMMA, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(1247), 1, + aux_sym_dictionary_repeat1, + [55934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 1, + anon_sym_as, + ACTIONS(2517), 2, + anon_sym_RPAREN, + anon_sym_COMMA, [55945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2750), 1, - anon_sym_RBRACE, - STATE(1465), 1, - sym_format_specifier, + ACTIONS(2729), 1, + sym__semicolon, + ACTIONS(2731), 1, + sym__newline, + STATE(1211), 1, + aux_sym__simple_statements_repeat1, [55958] = 3, - ACTIONS(1948), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_RBRACE, - ACTIONS(2348), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, + ACTIONS(2147), 1, + anon_sym_from, + ACTIONS(2151), 2, + sym__newline, + sym__semicolon, [55969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 1, + ACTIONS(2733), 1, + anon_sym_RPAREN, + ACTIONS(2735), 1, anon_sym_COMMA, - ACTIONS(2245), 1, - anon_sym_RBRACE, - STATE(1235), 1, - aux_sym_dictionary_repeat1, + STATE(1253), 1, + aux_sym__parameters_repeat1, [55982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2737), 1, + anon_sym_RPAREN, + ACTIONS(2739), 1, anon_sym_COMMA, - ACTIONS(2754), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, + STATE(1265), 1, + aux_sym_argument_list_repeat1, [55995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_COMMA, - ACTIONS(2758), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, + ACTIONS(562), 1, + sym__newline, + ACTIONS(2741), 1, + sym__semicolon, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, [56008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_RPAREN, - ACTIONS(2760), 1, + ACTIONS(1727), 1, + anon_sym_RBRACK, + ACTIONS(2743), 1, anon_sym_COMMA, - STATE(1191), 1, - aux_sym_match_class_pattern_repeat1, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, [56021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - ACTIONS(1897), 1, - anon_sym_RPAREN, - STATE(1287), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(2745), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, [56034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, - sym_identifier, - ACTIONS(2762), 1, + ACTIONS(1727), 1, anon_sym_RPAREN, - STATE(1341), 1, - sym_match_keyword_pattern, + ACTIONS(2747), 1, + anon_sym_COMMA, + STATE(1057), 1, + aux_sym_open_sequence_match_pattern_repeat1, [56047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(2749), 1, + anon_sym_RPAREN, + ACTIONS(2751), 1, anon_sym_COMMA, - ACTIONS(2766), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, [56060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2749), 1, anon_sym_RPAREN, - ACTIONS(2768), 1, - anon_sym_COMMA, - STATE(1209), 1, - aux_sym_match_class_pattern_repeat2, + STATE(1333), 1, + sym_match_keyword_pattern, [56073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - ACTIONS(2773), 1, - anon_sym_RBRACK, - STATE(1247), 1, - aux_sym_index_expression_list_repeat1, + ACTIONS(2753), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, [56086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2777), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, + ACTIONS(2757), 1, + anon_sym_COLON, + STATE(1272), 1, + aux_sym_with_clause_repeat1, [56099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, - sym__semicolon, - ACTIONS(2781), 1, - sym__newline, - STATE(1236), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(2396), 1, + anon_sym_LPAREN, + ACTIONS(2759), 1, + anon_sym_COLON, + STATE(1451), 1, + sym_argument_list, [56112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, - sym_identifier, - ACTIONS(2783), 1, - anon_sym_RPAREN, - STATE(1341), 1, - sym_match_keyword_pattern, - [56125] = 4, + ACTIONS(2636), 1, + anon_sym_COMMA, + ACTIONS(2761), 1, + anon_sym_RBRACK, + STATE(1187), 1, + aux_sym_type_parameters_repeat1, + [56125] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2323), 1, + anon_sym_RBRACE, + ACTIONS(2325), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - ACTIONS(2732), 1, + ACTIONS(2765), 1, anon_sym_COMMA, - STATE(1246), 1, + STATE(1235), 1, aux_sym_match_class_pattern_repeat2, - [56138] = 4, + [56149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 1, - anon_sym_RBRACE, - ACTIONS(2785), 1, + ACTIONS(2680), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym_match_mapping_pattern_repeat1, - [56151] = 4, + ACTIONS(2767), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_index_expression_list_repeat1, + [56162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, - anon_sym_COMMA, - ACTIONS(2189), 1, + ACTIONS(2233), 1, + sym_identifier, + STATE(1132), 1, + sym_dotted_name, + STATE(1289), 1, + sym_aliased_import, + [56175] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2303), 1, anon_sym_RBRACE, - STATE(1248), 1, + ACTIONS(2305), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56186] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2769), 1, + anon_sym_COMMA, + ACTIONS(2771), 1, + anon_sym_RBRACE, + STATE(1180), 1, aux_sym_dictionary_repeat1, - [56164] = 4, + [56199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, + ACTIONS(2773), 1, anon_sym_COMMA, - STATE(1277), 1, - aux_sym_argument_list_repeat1, - [56177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 1, - anon_sym_RPAREN, - ACTIONS(2789), 1, - anon_sym_COMMA, - STATE(1279), 1, - aux_sym_argument_list_repeat1, - [56190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1969), 1, - anon_sym_RPAREN, - ACTIONS(1971), 1, - anon_sym_COMMA, - STATE(1272), 1, - aux_sym_argument_list_repeat1, - [56203] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_COMMA, - ACTIONS(2791), 1, - anon_sym_RBRACK, - STATE(1261), 1, - aux_sym_index_expression_list_repeat1, - [56216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2071), 1, - anon_sym_from, - ACTIONS(2075), 2, - sym__newline, - sym__semicolon, - [56227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 1, - anon_sym_RPAREN, - ACTIONS(2795), 1, - anon_sym_COMMA, - STATE(1269), 1, - aux_sym_argument_list_repeat1, - [56240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2530), 1, + ACTIONS(2775), 1, anon_sym_RBRACE, - STATE(1444), 1, - sym_format_specifier, - [56253] = 4, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [56212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2777), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(2780), 1, anon_sym_RBRACK, - STATE(1247), 1, - aux_sym_index_expression_list_repeat1, - [56266] = 3, + STATE(1248), 1, + aux_sym_type_parameters_repeat1, + [56225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, - anon_sym_as, - ACTIONS(2469), 2, + ACTIONS(2763), 1, anon_sym_RPAREN, + ACTIONS(2765), 1, anon_sym_COMMA, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 1, + sym_identifier, + ACTIONS(2763), 1, + anon_sym_RPAREN, + STATE(1333), 1, + sym_match_keyword_pattern, + [56251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + anon_sym_COMMA, + ACTIONS(2784), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [56264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2786), 1, + anon_sym_RBRACE, + STATE(1408), 1, + sym_format_specifier, [56277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2467), 1, + ACTIONS(1862), 1, anon_sym_RPAREN, - ACTIONS(2801), 1, + ACTIONS(2788), 1, anon_sym_COMMA, - STATE(1263), 1, - aux_sym__import_list_repeat1, - [56290] = 4, + STATE(1281), 1, + aux_sym__parameters_repeat1, + [56290] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2350), 1, + anon_sym_RBRACE, + ACTIONS(2352), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56301] = 3, + ACTIONS(1948), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_RBRACE, + ACTIONS(2792), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2794), 1, + anon_sym_in, + ACTIONS(2796), 2, + sym__newline, + sym__semicolon, + [56323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 1, + anon_sym_COMMA, + ACTIONS(2800), 1, + anon_sym_RBRACK, + STATE(1201), 1, + aux_sym_index_expression_list_repeat1, + [56336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_LBRACK, + ACTIONS(2802), 1, + anon_sym_EQ, + STATE(1392), 1, + sym_type_parameters, + [56349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2217), 1, + anon_sym_COMMA, + ACTIONS(2219), 1, + anon_sym_RBRACE, + STATE(1269), 1, + aux_sym_dictionary_repeat1, + [56362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(1962), 1, + anon_sym_COMMA, + STATE(1283), 1, + aux_sym_argument_list_repeat1, + [56375] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2804), 1, anon_sym_RPAREN, ACTIONS(2806), 1, anon_sym_COMMA, - STATE(1181), 1, + STATE(1285), 1, aux_sym_argument_list_repeat1, - [56303] = 4, + [56388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(2528), 3, + sym__newline, + anon_sym_COMMA, + sym__semicolon, + [56397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2680), 1, anon_sym_COMMA, ACTIONS(2808), 1, anon_sym_RBRACK, - STATE(1261), 1, + STATE(1257), 1, aux_sym_index_expression_list_repeat1, - [56316] = 4, + [56410] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2810), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(2812), 1, - anon_sym_COLON, - STATE(1167), 1, - aux_sym_with_clause_repeat1, - [56329] = 3, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56423] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2814), 1, - anon_sym_COLON, - ACTIONS(2477), 2, anon_sym_RPAREN, + ACTIONS(2816), 1, anon_sym_COMMA, - [56340] = 4, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2532), 1, + anon_sym_RBRACE, + STATE(1410), 1, + sym_format_specifier, + [56449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, anon_sym_RPAREN, ACTIONS(2818), 1, anon_sym_COMMA, - STATE(1177), 1, - aux_sym_with_clause_repeat1, - [56353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 1, - anon_sym_RPAREN, - ACTIONS(2822), 1, - anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [56366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1840), 1, - anon_sym_COMMA, - ACTIONS(2824), 1, - anon_sym_in, - STATE(862), 1, - aux_sym__patterns_repeat1, - [56379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2430), 1, - anon_sym_RPAREN, - ACTIONS(2518), 1, - anon_sym_COMMA, - STATE(1202), 1, + STATE(1216), 1, aux_sym__import_list_repeat1, - [56392] = 4, + [56462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, - anon_sym_RPAREN, - ACTIONS(2828), 1, - anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [56405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2553), 3, + ACTIONS(2820), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56414] = 4, + [56471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 1, + ACTIONS(2822), 1, + anon_sym_COMMA, + ACTIONS(2824), 1, + anon_sym_RBRACE, + STATE(1180), 1, + aux_sym_dictionary_repeat1, + [56484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2613), 1, + anon_sym_RBRACE, + STATE(1458), 1, + sym_format_specifier, + [56497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 1, + anon_sym_EQ, + ACTIONS(2567), 2, + anon_sym_COMMA, + anon_sym_COLON, + [56508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_COMMA, + ACTIONS(2826), 1, + anon_sym_COLON, + STATE(1115), 1, + aux_sym_with_clause_repeat1, + [56521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 1, anon_sym_COMMA, ACTIONS(2830), 1, - anon_sym_in, - STATE(862), 1, - aux_sym__patterns_repeat1, - [56427] = 4, + anon_sym_RBRACE, + STATE(1301), 1, + aux_sym_match_mapping_pattern_repeat1, + [56534] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2832), 1, anon_sym_RPAREN, ACTIONS(2834), 1, anon_sym_COMMA, - STATE(1275), 1, - aux_sym__parameters_repeat1, - [56440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_COMMA, - ACTIONS(2837), 1, - anon_sym_COLON, - STATE(1266), 1, + STATE(1294), 1, aux_sym_with_clause_repeat1, - [56453] = 4, + [56547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - ACTIONS(2841), 1, + ACTIONS(2836), 1, anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [56466] = 4, + STATE(1309), 1, + aux_sym_match_class_pattern_repeat1, + [56560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(2733), 1, anon_sym_COLON, - ACTIONS(2843), 1, + ACTIONS(2838), 1, anon_sym_COMMA, - STATE(1278), 1, + STATE(1198), 1, aux_sym__parameters_repeat1, - [56479] = 4, + [56573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2626), 1, + anon_sym_if, + ACTIONS(2840), 1, + anon_sym_COLON, + STATE(1464), 1, + sym_guard, + [56586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [56595] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1844), 1, + anon_sym_COMMA, + ACTIONS(2842), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1844), 1, + anon_sym_COMMA, + ACTIONS(2844), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56621] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2846), 1, anon_sym_RPAREN, ACTIONS(2848), 1, anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [56492] = 4, + STATE(1281), 1, + aux_sym__parameters_repeat1, + [56634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, - anon_sym_RPAREN, - ACTIONS(2852), 1, - anon_sym_COMMA, - STATE(1181), 1, - aux_sym_argument_list_repeat1, - [56505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(2854), 1, - anon_sym_RBRACE, - STATE(1477), 1, - sym_format_specifier, - [56518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 3, + ACTIONS(2488), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56527] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_RBRACE, - ACTIONS(2858), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56538] = 4, + [56643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, + ACTIONS(2851), 1, + anon_sym_RPAREN, + ACTIONS(2853), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56656] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 1, anon_sym_COLON, - ACTIONS(2491), 1, - anon_sym_RBRACE, - STATE(1389), 1, - sym_format_specifier, - [56551] = 2, + ACTIONS(2855), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym__parameters_repeat1, + [56669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [56560] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, - anon_sym_COMMA, + ACTIONS(2858), 1, + anon_sym_RPAREN, ACTIONS(2860), 1, - anon_sym_RBRACK, - STATE(1193), 1, - aux_sym_type_parameters_repeat1, - [56573] = 4, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, - anon_sym_RPAREN, ACTIONS(2862), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym__collection_elements_repeat1, - [56586] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_RPAREN, ACTIONS(2864), 1, - anon_sym_in, - ACTIONS(2866), 2, - sym__newline, - sym__semicolon, - [56597] = 2, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 3, + ACTIONS(2374), 1, + anon_sym_COLON, + ACTIONS(2866), 1, + anon_sym_RBRACE, + STATE(1497), 1, + sym_format_specifier, + [56708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [56717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 3, sym__newline, anon_sym_COMMA, sym__semicolon, - [56606] = 2, + [56726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2868), 3, sym__newline, anon_sym_COMMA, sym__semicolon, - [56615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 1, - anon_sym_LBRACK, - ACTIONS(2870), 1, - anon_sym_EQ, - STATE(1408), 1, - sym_type_parameters, - [56628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_RBRACE, - STATE(1292), 1, - aux_sym_dictionary_repeat1, - [56641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2877), 1, - anon_sym_RPAREN, - ACTIONS(2879), 1, - anon_sym_COMMA, - STATE(1188), 1, - aux_sym_match_class_pattern_repeat2, - [56654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2881), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [56663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2481), 1, - anon_sym_EQ, - ACTIONS(2477), 2, - anon_sym_COMMA, - anon_sym_COLON, - [56674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_COLON, - ACTIONS(2883), 1, - anon_sym_COMMA, - STATE(1206), 1, - aux_sym__parameters_repeat1, - [56687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(2885), 1, - anon_sym_RPAREN, - STATE(1300), 1, - aux_sym__collection_elements_repeat1, - [56700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_COMMA, - ACTIONS(2887), 1, - anon_sym_RPAREN, - STATE(1097), 1, - aux_sym__collection_elements_repeat1, - [56713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2477), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [56722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2350), 1, - anon_sym_RPAREN, - ACTIONS(2889), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym__collection_elements_repeat1, [56735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 1, + ACTIONS(1844), 1, anon_sym_COMMA, - ACTIONS(2891), 1, + ACTIONS(2870), 1, anon_sym_in, - STATE(862), 1, + STATE(861), 1, aux_sym__patterns_repeat1, - [56748] = 4, + [56748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(556), 1, - sym__newline, - ACTIONS(2893), 1, - sym__semicolon, - STATE(1204), 1, - aux_sym__simple_statements_repeat1, - [56761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2872), 3, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_EQ, + [56757] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2382), 1, + anon_sym_RPAREN, + ACTIONS(2874), 1, + anon_sym_COMMA, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, [56770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 1, + ACTIONS(923), 1, anon_sym_RPAREN, - ACTIONS(2897), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_match_class_pattern_repeat1, - [56783] = 2, + STATE(1115), 1, + aux_sym_with_clause_repeat1, + [56783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 3, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(2878), 1, + anon_sym_COMMA, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, + anon_sym_RPAREN, + ACTIONS(2882), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_argument_list_repeat1, + [56809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2382), 1, + anon_sym_RPAREN, + ACTIONS(2884), 1, + anon_sym_COMMA, + STATE(1099), 1, + aux_sym__collection_elements_repeat1, + [56822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2479), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56792] = 3, + [56831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 1, - anon_sym_COLON, - ACTIONS(2901), 1, - anon_sym_DASH_GT, - [56802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_LPAREN, - STATE(1342), 1, - sym_parameters, - [56812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 2, + ACTIONS(558), 1, sym__newline, + ACTIONS(2886), 1, sym__semicolon, - [56820] = 2, + STATE(1196), 1, + aux_sym__simple_statements_repeat1, + [56844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 2, - sym__newline, - sym__semicolon, - [56828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 1, + ACTIONS(1737), 1, + anon_sym_RPAREN, + ACTIONS(2723), 1, sym_identifier, - STATE(1371), 1, - sym_match_capture_pattern, - [56838] = 2, + STATE(1333), 1, + sym_match_keyword_pattern, + [56857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 2, - sym__newline, - sym__semicolon, - [56846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 2, - anon_sym_except, - anon_sym_finally, - [56854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_DOT, - STATE(1219), 1, - aux_sym_match_value_pattern_repeat1, - [56864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 2, - sym__newline, - sym__semicolon, - [56880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 2, - sym__newline, - sym__semicolon, - [56896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 2, - sym__newline, - sym__semicolon, - [56904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_LPAREN, - STATE(1350), 1, - sym_parameters, - [56914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym_parameters, - [56924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 2, - anon_sym_except, - anon_sym_finally, - [56932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2635), 1, + ACTIONS(1792), 1, anon_sym_RBRACE, - ACTIONS(2921), 1, + ACTIONS(2888), 1, anon_sym_COMMA, - [56942] = 2, + STATE(1202), 1, + aux_sym_match_mapping_pattern_repeat1, + [56870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 2, + ACTIONS(2890), 1, + anon_sym_RPAREN, + ACTIONS(2892), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [56950] = 2, + STATE(1302), 1, + aux_sym_match_class_pattern_repeat2, + [56883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 2, - sym__newline, - sym__semicolon, - [56958] = 2, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(2895), 1, + anon_sym_RPAREN, + STATE(1297), 1, + aux_sym__collection_elements_repeat1, + [56896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 2, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(2897), 1, + anon_sym_RPAREN, + STATE(1077), 1, + aux_sym__collection_elements_repeat1, + [56909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, + anon_sym_RPAREN, + ACTIONS(2899), 1, + anon_sym_COMMA, + STATE(1216), 1, + aux_sym__import_list_repeat1, + [56922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1844), 1, + anon_sym_COMMA, + ACTIONS(2901), 1, + anon_sym_in, + STATE(861), 1, + aux_sym__patterns_repeat1, + [56935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56966] = 2, + [56944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2358), 2, + ACTIONS(1739), 1, + anon_sym_RPAREN, + ACTIONS(2723), 1, + sym_identifier, + STATE(1333), 1, + sym_match_keyword_pattern, + [56957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_RPAREN, + ACTIONS(2907), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym_match_class_pattern_repeat1, + [56970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2442), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56974] = 3, + [56978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, - sym_integer, - ACTIONS(2927), 1, - sym_float, - [56984] = 3, + ACTIONS(2910), 2, + sym__newline, + sym__semicolon, + [56986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, - anon_sym_COMMA, - ACTIONS(2931), 1, - anon_sym_RBRACE, + ACTIONS(992), 2, + anon_sym_except, + anon_sym_finally, [56994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(2912), 1, anon_sym_COMMA, - STATE(1077), 1, - aux_sym_expression_list_repeat1, + ACTIONS(2914), 1, + anon_sym_RBRACE, [57004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 2, + ACTIONS(2916), 2, sym__newline, sym__semicolon, [57012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 2, + ACTIONS(2918), 2, sym__newline, sym__semicolon, [57020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 2, + ACTIONS(2920), 2, sym__newline, sym__semicolon, - [57028] = 2, + [57028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 2, - sym__newline, - sym__semicolon, - [57036] = 2, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_parameters, + [57038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [57044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2941), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 2, - sym__newline, - sym__semicolon, - [57060] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 2, + ACTIONS(964), 2, anon_sym_except, anon_sym_finally, - [57076] = 2, + [57046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 2, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1348), 1, + sym_parameters, + [57056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_COLON, + ACTIONS(2924), 1, + anon_sym_DASH_GT, + [57066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2926), 2, anon_sym_COMMA, anon_sym_RBRACK, + [57074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_parameters, [57084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 2, - sym__newline, - sym__semicolon, + ACTIONS(2928), 2, + anon_sym_COMMA, + anon_sym_RBRACK, [57092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 2, + ACTIONS(2372), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2930), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2932), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57100] = 3, + [57116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_COLON, - ACTIONS(2951), 1, - anon_sym_DASH_GT, - [57110] = 2, + ACTIONS(2934), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 2, - anon_sym_except, - anon_sym_finally, - [57118] = 2, + ACTIONS(2149), 1, + anon_sym_COMMA, + STATE(1078), 1, + aux_sym_expression_list_repeat1, + [57134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2241), 2, sym__newline, sym__semicolon, - [57126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2953), 2, - sym__newline, - sym__semicolon, [57142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1891), 2, + sym__newline, + sym__semicolon, [57150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 2, + ACTIONS(2567), 2, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_COLON, [57158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [57166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_COLON, - ACTIONS(2963), 1, - anon_sym_DASH_GT, - [57176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2965), 1, - anon_sym_COLON, - ACTIONS(2967), 1, - anon_sym_DASH_GT, - [57186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [57196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2973), 1, - anon_sym_COLON, - ACTIONS(2975), 1, - anon_sym_DASH_GT, - [57214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_LPAREN, - STATE(1306), 1, - sym_parameters, - [57224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2977), 1, - anon_sym_COLON, - ACTIONS(2979), 1, - anon_sym_DASH_GT, - [57234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 2, - sym__newline, - sym__semicolon, - [57242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 2, - sym__newline, - sym__semicolon, - [57250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2656), 1, - anon_sym_COMMA, - ACTIONS(2983), 1, + ACTIONS(2905), 2, anon_sym_RPAREN, - [57260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 1, anon_sym_COMMA, - STATE(1213), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [57270] = 2, + [57166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 2, + ACTIONS(2890), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [57182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 2, + sym__newline, + sym__semicolon, + [57190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2940), 1, + sym_integer, + ACTIONS(2942), 1, + sym_float, + [57200] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_RBRACE, + ACTIONS(2944), 1, + anon_sym_COMMA, + [57210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2946), 2, + sym__newline, + sym__semicolon, + [57218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, + anon_sym_COMMA, + [57228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 2, + sym__newline, + sym__semicolon, + [57236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_DOT, + STATE(1224), 1, + aux_sym_match_value_pattern_repeat1, + [57246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + sym_identifier, + STATE(1370), 1, + sym_match_capture_pattern, + [57256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 2, + sym__newline, + sym__semicolon, + [57264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 2, anon_sym_COMMA, anon_sym_RBRACE, - [57278] = 3, + [57272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2243), 1, + anon_sym_as, + ACTIONS(2245), 1, + anon_sym_COLON, + [57282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(2249), 1, + anon_sym_COLON, + [57292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 1, + anon_sym_COLON, + ACTIONS(2958), 1, + anon_sym_DASH_GT, + [57302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2960), 1, + anon_sym_COLON, + ACTIONS(2962), 1, + anon_sym_DASH_GT, + [57312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2964), 1, + anon_sym_COLON, + ACTIONS(2966), 1, + anon_sym_DASH_GT, + [57322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_COLON, + ACTIONS(2970), 1, + anon_sym_DASH_GT, + [57332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 1, + sym_identifier, + STATE(1333), 1, + sym_match_keyword_pattern, + [57342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 2, + sym__newline, + sym__semicolon, + [57350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2976), 1, + anon_sym_DASH_GT, + [57360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_as, + ACTIONS(2181), 1, + anon_sym_COLON, + [57370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 1, + anon_sym_COLON, + ACTIONS(2980), 1, + anon_sym_DASH_GT, + [57380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 2, + sym__newline, + sym__semicolon, + [57388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 2, + sym__newline, + sym__semicolon, + [57396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_COLON, + ACTIONS(2988), 1, + anon_sym_DASH_GT, + [57414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 2, + anon_sym_except, + anon_sym_finally, + [57422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 1, sym_integer, - ACTIONS(2989), 1, + ACTIONS(2992), 1, sym_float, - [57288] = 2, + [57432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 1, + anon_sym_COMMA, + STATE(1141), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [57442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [57450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 2, + sym__newline, + sym__semicolon, + [57466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3002), 1, + sym_integer, + ACTIONS(3004), 1, + sym_float, + [57476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(1320), 1, + sym_parameters, + [57486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2664), 2, + sym__newline, + sym__semicolon, + [57502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [57518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(956), 2, + anon_sym_except, + anon_sym_finally, + [57526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2868), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57296] = 3, + [57542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_expression_list_repeat1, + [57552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2630), 1, + anon_sym_COMMA, + ACTIONS(3014), 1, + anon_sym_RPAREN, + [57562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2239), 2, + sym__newline, + sym__semicolon, + [57570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2261), 1, + anon_sym_as, + ACTIONS(2263), 1, + anon_sym_COLON, + [57588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 2, + sym__newline, + sym__semicolon, + [57596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3018), 2, + sym__newline, + sym__semicolon, + [57604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [57614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 2, + anon_sym_except, + anon_sym_finally, + [57622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_COLON, + [57637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_RPAREN, + [57644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3028), 1, + anon_sym_RBRACE, + [57651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1792), 1, anon_sym_RBRACE, - ACTIONS(2991), 1, - anon_sym_COMMA, - [57306] = 3, + [57658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 1, - anon_sym_COMMA, - STATE(989), 1, - aux_sym_expression_list_repeat1, - [57316] = 2, + ACTIONS(3030), 1, + anon_sym_RBRACE, + [57665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 2, - anon_sym_except, - anon_sym_finally, - [57324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_COLON, - ACTIONS(2995), 1, - anon_sym_DASH_GT, - [57334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 2, - anon_sym_COMMA, + ACTIONS(3032), 1, anon_sym_RBRACK, - [57342] = 3, + [57672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - sym_integer, - ACTIONS(3001), 1, - sym_float, - [57352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 1, - sym_identifier, - STATE(1341), 1, - sym_match_keyword_pattern, - [57362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 2, + ACTIONS(3034), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [57394] = 2, + [57679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 2, - sym__newline, - sym__semicolon, - [57402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 1, - anon_sym_COLON, - ACTIONS(3011), 1, - anon_sym_DASH_GT, - [57412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_COLON, - [57419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2296), 1, - anon_sym_COLON, - [57426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_RBRACE, - [57433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 1, - anon_sym_RBRACE, - [57440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3019), 1, - anon_sym_RBRACK, - [57447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 1, - anon_sym_RBRACE, - [57454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3023), 1, - anon_sym_COLON, - [57461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1784), 1, - anon_sym_RBRACE, - [57468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - sym_identifier, - [57475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_in, - [57482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 1, - anon_sym_RPAREN, - [57489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3031), 1, - anon_sym_RBRACK, - [57496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - anon_sym_RBRACE, - [57503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_RPAREN, - [57510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_RBRACE, - [57517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_RBRACE, - [57524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 1, - sym_identifier, - [57531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 1, - sym_identifier, - [57538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_RPAREN, - [57545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 1, - anon_sym_RPAREN, - [57552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_in, - [57559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 1, - sym_identifier, - [57566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3051), 1, - sym_identifier, - [57573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2726), 1, - anon_sym_RBRACK, - [57580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_RPAREN, - [57587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_COLON, - [57594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_RPAREN, - [57601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_RBRACE, - [57608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 1, - anon_sym_RBRACE, - [57615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_RBRACE, - [57622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 1, - anon_sym_RBRACK, - [57629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, + ACTIONS(3036), 1, anon_sym_EQ, - [57636] = 2, + [57686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_RPAREN, - [57643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_RPAREN, - [57650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2708), 1, - anon_sym_in, - [57657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 1, - anon_sym_COLON, - [57664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_COLON, - [57671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_import, - [57678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - sym_identifier, - [57685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_RPAREN, - [57692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_COLON, - [57699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_in, - [57706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 1, - anon_sym_RPAREN, - [57713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3087), 1, - anon_sym_RBRACE, - [57720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_import, - [57727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, + ACTIONS(3038), 1, anon_sym_RBRACK, - [57734] = 2, + [57693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_RPAREN, - [57741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_COLON, - [57748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 1, - anon_sym_RBRACK, - [57755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 1, - anon_sym_COLON, - [57762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 1, - anon_sym_COLON, - [57769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, + ACTIONS(3040), 1, anon_sym_RBRACE, - [57776] = 2, + [57700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(3042), 1, + anon_sym_COLON, + [57707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 1, + anon_sym_RBRACE, + [57714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_COLON, + [57721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, sym_identifier, - [57783] = 2, + [57728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - anon_sym_COLON, - [57790] = 2, + ACTIONS(3050), 1, + anon_sym_in, + [57735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, + ACTIONS(3052), 1, + anon_sym_RPAREN, + [57742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_RBRACK, + [57749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, anon_sym_COLON, - [57797] = 2, + [57756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, + anon_sym_RBRACE, + [57763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 1, + anon_sym_RBRACE, + [57770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_RPAREN, + [57777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3064), 1, + anon_sym_COLON, + [57784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 1, + anon_sym_RBRACK, + [57791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym_RBRACE, + [57798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + anon_sym_RPAREN, + [57805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2866), 1, + anon_sym_RBRACE, + [57812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3070), 1, + sym_identifier, + [57819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3072), 1, + sym_identifier, + [57826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + anon_sym_COLON, + [57833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + sym_identifier, + [57840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_COLON, + [57847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_RPAREN, + [57854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3082), 1, + anon_sym_in, + [57861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + sym_identifier, + [57868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3086), 1, + anon_sym_LPAREN, + [57875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + anon_sym_import, + [57882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + sym_identifier, + [57889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2745), 1, + anon_sym_in, + [57896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_COLON, + [57903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3094), 1, + anon_sym_in, + [57910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_COLON, + [57917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3098), 1, + anon_sym_RPAREN, + [57924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 1, + anon_sym_import, + [57931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2844), 1, + anon_sym_in, + [57938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 1, + anon_sym_STAR, + [57945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 1, + anon_sym_COLON, + [57952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, + anon_sym_COLON, + [57959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3106), 1, + anon_sym_COLON, + [57966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_COLON, + [57973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3110), 1, + anon_sym_RBRACK, + [57980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3112), 1, + anon_sym_COLON, + [57987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 1, + anon_sym_RPAREN, + [57994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2311), 1, + anon_sym_COLON, + [58001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3116), 1, + anon_sym_RBRACK, + [58008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, + anon_sym_COLON, + [58015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_COLON, + [58022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3122), 1, + anon_sym_RBRACK, + [58029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3124), 1, + anon_sym_RBRACE, + [58036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, + anon_sym_in, + [58043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + anon_sym_COLON, + [58050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3128), 1, + anon_sym_RBRACE, + [58057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_COLON, + [58064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 1, + anon_sym_RPAREN, + [58071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + anon_sym_COLON, + [58078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3134), 1, + anon_sym_COLON, + [58085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3136), 1, + anon_sym_COLON, + [58092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3138), 1, + anon_sym_COLON, + [58099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3140), 1, + anon_sym_COLON, + [58106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, + anon_sym_COLON, + [58113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 1, + anon_sym_RBRACK, + [58120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_RBRACE, + [58127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3144), 1, + anon_sym_RBRACE, + [58134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3146), 1, + anon_sym_RBRACE, + [58141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 1, + anon_sym_RBRACE, + [58148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3148), 1, + anon_sym_COLON, + [58155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_RBRACE, + [58162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3150), 1, + anon_sym_COLON, + [58169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3152), 1, + anon_sym_RBRACE, + [58176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3154), 1, + anon_sym_RBRACE, + [58183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3156), 1, + anon_sym_COLON, + [58190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3158), 1, + anon_sym_COLON, + [58197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + anon_sym_COLON, + [58204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3162), 1, + anon_sym_RBRACK, + [58211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3164), 1, + anon_sym_RPAREN, + [58218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2808), 1, anon_sym_RBRACK, - [57804] = 2, + [58225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - [57811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 1, - anon_sym_COLON, - [57818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3111), 1, - anon_sym_COLON, - [57825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_in, - [57832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 1, - anon_sym_COLON, - [57839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_COLON, - [57846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 1, - anon_sym_in, - [57853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 1, - anon_sym_RBRACK, - [57860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3119), 1, - anon_sym_COLON, - [57867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 1, - anon_sym_COLON, - [57874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_COLON, - [57881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2854), 1, + ACTIONS(2532), 1, anon_sym_RBRACE, - [57888] = 2, + [58232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3166), 1, anon_sym_COLON, - [57895] = 2, + [58239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3168), 1, anon_sym_COLON, - [57902] = 2, + [58246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(3170), 1, + anon_sym_RPAREN, + [58253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, anon_sym_COLON, - [57909] = 2, + [58260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - anon_sym_LPAREN, - [57916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_COLON, - [57923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 1, - anon_sym_RBRACE, - [57930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3135), 1, - anon_sym_RBRACK, - [57937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 1, - anon_sym_COLON, - [57944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_COLON, - [57951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_COLON, - [57958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_RBRACK, - [57965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 1, - anon_sym_COLON, - [57972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3147), 1, - anon_sym_COLON, - [57979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - anon_sym_COLON, - [57986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_RBRACE, - [57993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 1, - anon_sym_COLON, - [58000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_COLON, - [58007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 1, - anon_sym_RBRACE, - [58014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(925), 1, - anon_sym_STAR, - [58021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2101), 1, + ACTIONS(2129), 1, anon_sym_EQ, - [58028] = 2, + [58267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, - anon_sym_RBRACE, - [58035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 1, - sym_identifier, - [58042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 1, - sym_identifier, - [58049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 1, - sym_identifier, - [58056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_RPAREN, - [58063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_COLON, - [58070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_COLON, - [58077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 1, - anon_sym_RPAREN, - [58084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_for, - [58091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, - sym_identifier, - [58098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_COLON, - [58105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 1, - anon_sym_COLON, - [58112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_RBRACE, - [58119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_import, - [58126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 1, + ACTIONS(2901), 1, anon_sym_in, - [58133] = 2, + [58274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3174), 1, + sym_identifier, + [58281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, + anon_sym_COLON, + [58288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 1, + anon_sym_COLON, + [58295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_RPAREN, + [58302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 1, + sym_identifier, + [58309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 1, + sym_identifier, + [58316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3186), 1, + anon_sym_in, + [58323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3188), 1, + sym_identifier, + [58330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + anon_sym_def, + [58337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + sym_identifier, + [58344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3192), 1, + sym_identifier, + [58351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3194), 1, ts_builtin_sym_end, - [58140] = 2, + [58358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3196), 1, + anon_sym_import, + [58365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_COLON, + [58372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3198), 1, sym_identifier, - [58147] = 2, + [58379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_RBRACE, - [58154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 1, + ACTIONS(3200), 1, sym_identifier, - [58161] = 2, + [58386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3202), 1, sym_identifier, - [58168] = 2, + [58393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3204), 1, sym_identifier, - [58175] = 2, + [58400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - sym_identifier, - [58182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 1, + ACTIONS(903), 1, anon_sym_STAR, - [58189] = 2, + [58407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3206), 1, anon_sym_COLON, - [58196] = 2, + [58414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3208), 1, anon_sym_RBRACE, - [58203] = 2, + [58421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3210), 1, + anon_sym_for, + [58428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 1, + anon_sym_RPAREN, + [58435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 1, sym_identifier, - [58210] = 2, + [58442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3216), 1, + sym_identifier, + [58449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 1, + sym_identifier, + [58456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3220), 1, + anon_sym_COLON, + [58463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 1, anon_sym_in, - [58217] = 2, + [58470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 1, + ACTIONS(972), 1, anon_sym_def, - [58224] = 2, + [58477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 1, - sym_identifier, - [58231] = 2, + ACTIONS(3222), 1, + anon_sym_COLON, + [58484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - sym_identifier, - [58238] = 2, + ACTIONS(2870), 1, + anon_sym_in, + [58491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(3224), 1, + anon_sym_COLON, + [58498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 1, anon_sym_RBRACE, - [58245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 1, - anon_sym_in, - [58252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - anon_sym_def, - [58259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_COLON, - [58266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2621), 1, - anon_sym_in, - [58273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_COLON, - [58280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 1, - anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(152)] = 0, [SMALL_STATE(153)] = 117, [SMALL_STATE(154)] = 241, - [SMALL_STATE(155)] = 351, - [SMALL_STATE(156)] = 475, - [SMALL_STATE(157)] = 597, - [SMALL_STATE(158)] = 723, - [SMALL_STATE(159)] = 833, - [SMALL_STATE(160)] = 955, + [SMALL_STATE(155)] = 367, + [SMALL_STATE(156)] = 489, + [SMALL_STATE(157)] = 613, + [SMALL_STATE(158)] = 735, + [SMALL_STATE(159)] = 845, + [SMALL_STATE(160)] = 967, [SMALL_STATE(161)] = 1077, - [SMALL_STATE(162)] = 1188, + [SMALL_STATE(162)] = 1198, [SMALL_STATE(163)] = 1309, [SMALL_STATE(164)] = 1420, [SMALL_STATE(165)] = 1541, @@ -71183,45 +71364,45 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(167)] = 1773, [SMALL_STATE(168)] = 1881, [SMALL_STATE(169)] = 1993, - [SMALL_STATE(170)] = 2105, - [SMALL_STATE(171)] = 2213, + [SMALL_STATE(170)] = 2107, + [SMALL_STATE(171)] = 2215, [SMALL_STATE(172)] = 2327, - [SMALL_STATE(173)] = 2439, - [SMALL_STATE(174)] = 2551, + [SMALL_STATE(173)] = 2437, + [SMALL_STATE(174)] = 2547, [SMALL_STATE(175)] = 2659, - [SMALL_STATE(176)] = 2769, + [SMALL_STATE(176)] = 2771, [SMALL_STATE(177)] = 2879, [SMALL_STATE(178)] = 2991, [SMALL_STATE(179)] = 3103, [SMALL_STATE(180)] = 3212, [SMALL_STATE(181)] = 3321, - [SMALL_STATE(182)] = 3430, - [SMALL_STATE(183)] = 3541, - [SMALL_STATE(184)] = 3650, - [SMALL_STATE(185)] = 3759, - [SMALL_STATE(186)] = 3868, - [SMALL_STATE(187)] = 3977, - [SMALL_STATE(188)] = 4086, - [SMALL_STATE(189)] = 4191, - [SMALL_STATE(190)] = 4300, - [SMALL_STATE(191)] = 4409, - [SMALL_STATE(192)] = 4520, - [SMALL_STATE(193)] = 4629, - [SMALL_STATE(194)] = 4742, - [SMALL_STATE(195)] = 4847, - [SMALL_STATE(196)] = 4956, - [SMALL_STATE(197)] = 5067, - [SMALL_STATE(198)] = 5176, - [SMALL_STATE(199)] = 5285, - [SMALL_STATE(200)] = 5394, - [SMALL_STATE(201)] = 5499, - [SMALL_STATE(202)] = 5608, - [SMALL_STATE(203)] = 5717, - [SMALL_STATE(204)] = 5826, - [SMALL_STATE(205)] = 5935, - [SMALL_STATE(206)] = 6044, - [SMALL_STATE(207)] = 6155, - [SMALL_STATE(208)] = 6268, + [SMALL_STATE(182)] = 3426, + [SMALL_STATE(183)] = 3535, + [SMALL_STATE(184)] = 3644, + [SMALL_STATE(185)] = 3753, + [SMALL_STATE(186)] = 3862, + [SMALL_STATE(187)] = 3971, + [SMALL_STATE(188)] = 4080, + [SMALL_STATE(189)] = 4189, + [SMALL_STATE(190)] = 4298, + [SMALL_STATE(191)] = 4407, + [SMALL_STATE(192)] = 4518, + [SMALL_STATE(193)] = 4623, + [SMALL_STATE(194)] = 4728, + [SMALL_STATE(195)] = 4837, + [SMALL_STATE(196)] = 4946, + [SMALL_STATE(197)] = 5051, + [SMALL_STATE(198)] = 5160, + [SMALL_STATE(199)] = 5269, + [SMALL_STATE(200)] = 5382, + [SMALL_STATE(201)] = 5491, + [SMALL_STATE(202)] = 5600, + [SMALL_STATE(203)] = 5711, + [SMALL_STATE(204)] = 5820, + [SMALL_STATE(205)] = 5929, + [SMALL_STATE(206)] = 6038, + [SMALL_STATE(207)] = 6149, + [SMALL_STATE(208)] = 6260, [SMALL_STATE(209)] = 6373, [SMALL_STATE(210)] = 6482, [SMALL_STATE(211)] = 6591, @@ -71230,17 +71411,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(214)] = 6912, [SMALL_STATE(215)] = 7018, [SMALL_STATE(216)] = 7124, - [SMALL_STATE(217)] = 7230, - [SMALL_STATE(218)] = 7336, + [SMALL_STATE(217)] = 7218, + [SMALL_STATE(218)] = 7324, [SMALL_STATE(219)] = 7430, [SMALL_STATE(220)] = 7536, [SMALL_STATE(221)] = 7642, [SMALL_STATE(222)] = 7747, - [SMALL_STATE(223)] = 7850, - [SMALL_STATE(224)] = 7955, + [SMALL_STATE(223)] = 7852, + [SMALL_STATE(224)] = 7957, [SMALL_STATE(225)] = 8060, [SMALL_STATE(226)] = 8165, - [SMALL_STATE(227)] = 8270, + [SMALL_STATE(227)] = 8268, [SMALL_STATE(228)] = 8373, [SMALL_STATE(229)] = 8475, [SMALL_STATE(230)] = 8577, @@ -71253,1268 +71434,1276 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(237)] = 9291, [SMALL_STATE(238)] = 9393, [SMALL_STATE(239)] = 9495, - [SMALL_STATE(240)] = 9596, + [SMALL_STATE(240)] = 9568, [SMALL_STATE(241)] = 9669, [SMALL_STATE(242)] = 9770, - [SMALL_STATE(243)] = 9843, - [SMALL_STATE(244)] = 9904, - [SMALL_STATE(245)] = 9977, - [SMALL_STATE(246)] = 10078, - [SMALL_STATE(247)] = 10139, - [SMALL_STATE(248)] = 10240, - [SMALL_STATE(249)] = 10313, - [SMALL_STATE(250)] = 10412, - [SMALL_STATE(251)] = 10513, - [SMALL_STATE(252)] = 10614, - [SMALL_STATE(253)] = 10715, - [SMALL_STATE(254)] = 10816, - [SMALL_STATE(255)] = 10915, - [SMALL_STATE(256)] = 11016, - [SMALL_STATE(257)] = 11089, - [SMALL_STATE(258)] = 11190, + [SMALL_STATE(243)] = 9871, + [SMALL_STATE(244)] = 9970, + [SMALL_STATE(245)] = 10031, + [SMALL_STATE(246)] = 10092, + [SMALL_STATE(247)] = 10191, + [SMALL_STATE(248)] = 10292, + [SMALL_STATE(249)] = 10393, + [SMALL_STATE(250)] = 10494, + [SMALL_STATE(251)] = 10567, + [SMALL_STATE(252)] = 10668, + [SMALL_STATE(253)] = 10741, + [SMALL_STATE(254)] = 10840, + [SMALL_STATE(255)] = 10941, + [SMALL_STATE(256)] = 11014, + [SMALL_STATE(257)] = 11115, + [SMALL_STATE(258)] = 11188, [SMALL_STATE(259)] = 11289, [SMALL_STATE(260)] = 11362, [SMALL_STATE(261)] = 11435, - [SMALL_STATE(262)] = 11536, + [SMALL_STATE(262)] = 11508, [SMALL_STATE(263)] = 11609, - [SMALL_STATE(264)] = 11705, - [SMALL_STATE(265)] = 11801, - [SMALL_STATE(266)] = 11897, - [SMALL_STATE(267)] = 11995, - [SMALL_STATE(268)] = 12091, - [SMALL_STATE(269)] = 12189, - [SMALL_STATE(270)] = 12285, - [SMALL_STATE(271)] = 12381, - [SMALL_STATE(272)] = 12477, - [SMALL_STATE(273)] = 12573, - [SMALL_STATE(274)] = 12671, - [SMALL_STATE(275)] = 12769, - [SMALL_STATE(276)] = 12867, - [SMALL_STATE(277)] = 12963, - [SMALL_STATE(278)] = 13061, - [SMALL_STATE(279)] = 13157, - [SMALL_STATE(280)] = 13253, - [SMALL_STATE(281)] = 13351, - [SMALL_STATE(282)] = 13447, - [SMALL_STATE(283)] = 13545, - [SMALL_STATE(284)] = 13643, - [SMALL_STATE(285)] = 13739, - [SMALL_STATE(286)] = 13798, - [SMALL_STATE(287)] = 13857, - [SMALL_STATE(288)] = 13930, - [SMALL_STATE(289)] = 13999, - [SMALL_STATE(290)] = 14094, - [SMALL_STATE(291)] = 14153, - [SMALL_STATE(292)] = 14212, - [SMALL_STATE(293)] = 14281, - [SMALL_STATE(294)] = 14350, - [SMALL_STATE(295)] = 14409, - [SMALL_STATE(296)] = 14468, - [SMALL_STATE(297)] = 14537, - [SMALL_STATE(298)] = 14606, - [SMALL_STATE(299)] = 14669, - [SMALL_STATE(300)] = 14728, - [SMALL_STATE(301)] = 14801, - [SMALL_STATE(302)] = 14864, - [SMALL_STATE(303)] = 14923, - [SMALL_STATE(304)] = 14986, - [SMALL_STATE(305)] = 15081, - [SMALL_STATE(306)] = 15144, - [SMALL_STATE(307)] = 15203, - [SMALL_STATE(308)] = 15272, - [SMALL_STATE(309)] = 15341, - [SMALL_STATE(310)] = 15410, - [SMALL_STATE(311)] = 15469, - [SMALL_STATE(312)] = 15564, - [SMALL_STATE(313)] = 15656, - [SMALL_STATE(314)] = 15748, - [SMALL_STATE(315)] = 15840, - [SMALL_STATE(316)] = 15932, - [SMALL_STATE(317)] = 16024, - [SMALL_STATE(318)] = 16116, - [SMALL_STATE(319)] = 16208, - [SMALL_STATE(320)] = 16300, - [SMALL_STATE(321)] = 16392, - [SMALL_STATE(322)] = 16484, - [SMALL_STATE(323)] = 16576, - [SMALL_STATE(324)] = 16668, - [SMALL_STATE(325)] = 16760, - [SMALL_STATE(326)] = 16852, - [SMALL_STATE(327)] = 16944, - [SMALL_STATE(328)] = 17036, - [SMALL_STATE(329)] = 17128, - [SMALL_STATE(330)] = 17220, - [SMALL_STATE(331)] = 17312, - [SMALL_STATE(332)] = 17376, - [SMALL_STATE(333)] = 17468, - [SMALL_STATE(334)] = 17560, - [SMALL_STATE(335)] = 17652, - [SMALL_STATE(336)] = 17744, - [SMALL_STATE(337)] = 17836, - [SMALL_STATE(338)] = 17928, - [SMALL_STATE(339)] = 18020, - [SMALL_STATE(340)] = 18112, - [SMALL_STATE(341)] = 18204, - [SMALL_STATE(342)] = 18296, - [SMALL_STATE(343)] = 18388, - [SMALL_STATE(344)] = 18480, - [SMALL_STATE(345)] = 18572, - [SMALL_STATE(346)] = 18664, - [SMALL_STATE(347)] = 18758, - [SMALL_STATE(348)] = 18850, - [SMALL_STATE(349)] = 18942, - [SMALL_STATE(350)] = 19034, - [SMALL_STATE(351)] = 19126, - [SMALL_STATE(352)] = 19218, - [SMALL_STATE(353)] = 19310, - [SMALL_STATE(354)] = 19380, - [SMALL_STATE(355)] = 19472, - [SMALL_STATE(356)] = 19564, - [SMALL_STATE(357)] = 19656, - [SMALL_STATE(358)] = 19748, - [SMALL_STATE(359)] = 19840, - [SMALL_STATE(360)] = 19932, - [SMALL_STATE(361)] = 20024, - [SMALL_STATE(362)] = 20116, - [SMALL_STATE(363)] = 20208, - [SMALL_STATE(364)] = 20300, - [SMALL_STATE(365)] = 20392, - [SMALL_STATE(366)] = 20484, - [SMALL_STATE(367)] = 20576, - [SMALL_STATE(368)] = 20668, - [SMALL_STATE(369)] = 20760, - [SMALL_STATE(370)] = 20852, - [SMALL_STATE(371)] = 20944, - [SMALL_STATE(372)] = 21036, - [SMALL_STATE(373)] = 21128, - [SMALL_STATE(374)] = 21220, - [SMALL_STATE(375)] = 21312, - [SMALL_STATE(376)] = 21404, - [SMALL_STATE(377)] = 21496, - [SMALL_STATE(378)] = 21588, - [SMALL_STATE(379)] = 21680, - [SMALL_STATE(380)] = 21772, - [SMALL_STATE(381)] = 21864, - [SMALL_STATE(382)] = 21956, - [SMALL_STATE(383)] = 22048, - [SMALL_STATE(384)] = 22140, - [SMALL_STATE(385)] = 22204, - [SMALL_STATE(386)] = 22296, - [SMALL_STATE(387)] = 22388, - [SMALL_STATE(388)] = 22480, - [SMALL_STATE(389)] = 22572, - [SMALL_STATE(390)] = 22629, - [SMALL_STATE(391)] = 22690, - [SMALL_STATE(392)] = 22747, - [SMALL_STATE(393)] = 22804, - [SMALL_STATE(394)] = 22861, - [SMALL_STATE(395)] = 22918, - [SMALL_STATE(396)] = 22975, - [SMALL_STATE(397)] = 23032, - [SMALL_STATE(398)] = 23093, - [SMALL_STATE(399)] = 23154, - [SMALL_STATE(400)] = 23211, - [SMALL_STATE(401)] = 23268, - [SMALL_STATE(402)] = 23325, - [SMALL_STATE(403)] = 23382, - [SMALL_STATE(404)] = 23439, - [SMALL_STATE(405)] = 23496, - [SMALL_STATE(406)] = 23553, - [SMALL_STATE(407)] = 23610, - [SMALL_STATE(408)] = 23671, - [SMALL_STATE(409)] = 23728, - [SMALL_STATE(410)] = 23795, - [SMALL_STATE(411)] = 23852, - [SMALL_STATE(412)] = 23909, - [SMALL_STATE(413)] = 23966, - [SMALL_STATE(414)] = 24023, - [SMALL_STATE(415)] = 24087, - [SMALL_STATE(416)] = 24147, - [SMALL_STATE(417)] = 24203, - [SMALL_STATE(418)] = 24259, - [SMALL_STATE(419)] = 24319, - [SMALL_STATE(420)] = 24379, - [SMALL_STATE(421)] = 24439, - [SMALL_STATE(422)] = 24533, - [SMALL_STATE(423)] = 24593, - [SMALL_STATE(424)] = 24653, - [SMALL_STATE(425)] = 24713, - [SMALL_STATE(426)] = 24773, - [SMALL_STATE(427)] = 24829, - [SMALL_STATE(428)] = 24889, - [SMALL_STATE(429)] = 24949, - [SMALL_STATE(430)] = 25005, - [SMALL_STATE(431)] = 25065, - [SMALL_STATE(432)] = 25121, - [SMALL_STATE(433)] = 25181, - [SMALL_STATE(434)] = 25237, - [SMALL_STATE(435)] = 25297, - [SMALL_STATE(436)] = 25361, - [SMALL_STATE(437)] = 25417, - [SMALL_STATE(438)] = 25481, - [SMALL_STATE(439)] = 25545, - [SMALL_STATE(440)] = 25637, - [SMALL_STATE(441)] = 25697, - [SMALL_STATE(442)] = 25753, - [SMALL_STATE(443)] = 25813, - [SMALL_STATE(444)] = 25905, - [SMALL_STATE(445)] = 25965, - [SMALL_STATE(446)] = 26056, - [SMALL_STATE(447)] = 26111, - [SMALL_STATE(448)] = 26202, - [SMALL_STATE(449)] = 26293, - [SMALL_STATE(450)] = 26348, - [SMALL_STATE(451)] = 26403, - [SMALL_STATE(452)] = 26458, - [SMALL_STATE(453)] = 26513, - [SMALL_STATE(454)] = 26604, - [SMALL_STATE(455)] = 26665, - [SMALL_STATE(456)] = 26726, - [SMALL_STATE(457)] = 26787, - [SMALL_STATE(458)] = 26842, - [SMALL_STATE(459)] = 26933, - [SMALL_STATE(460)] = 26988, - [SMALL_STATE(461)] = 27043, - [SMALL_STATE(462)] = 27098, - [SMALL_STATE(463)] = 27153, - [SMALL_STATE(464)] = 27214, - [SMALL_STATE(465)] = 27305, - [SMALL_STATE(466)] = 27360, - [SMALL_STATE(467)] = 27415, - [SMALL_STATE(468)] = 27469, - [SMALL_STATE(469)] = 27523, - [SMALL_STATE(470)] = 27577, - [SMALL_STATE(471)] = 27631, - [SMALL_STATE(472)] = 27685, - [SMALL_STATE(473)] = 27739, - [SMALL_STATE(474)] = 27793, - [SMALL_STATE(475)] = 27847, - [SMALL_STATE(476)] = 27901, - [SMALL_STATE(477)] = 27955, - [SMALL_STATE(478)] = 28009, - [SMALL_STATE(479)] = 28063, - [SMALL_STATE(480)] = 28117, - [SMALL_STATE(481)] = 28171, - [SMALL_STATE(482)] = 28225, - [SMALL_STATE(483)] = 28279, - [SMALL_STATE(484)] = 28333, - [SMALL_STATE(485)] = 28387, - [SMALL_STATE(486)] = 28441, - [SMALL_STATE(487)] = 28495, - [SMALL_STATE(488)] = 28549, - [SMALL_STATE(489)] = 28603, - [SMALL_STATE(490)] = 28657, - [SMALL_STATE(491)] = 28711, - [SMALL_STATE(492)] = 28765, - [SMALL_STATE(493)] = 28819, - [SMALL_STATE(494)] = 28873, - [SMALL_STATE(495)] = 28927, - [SMALL_STATE(496)] = 28981, - [SMALL_STATE(497)] = 29035, - [SMALL_STATE(498)] = 29089, - [SMALL_STATE(499)] = 29143, - [SMALL_STATE(500)] = 29197, - [SMALL_STATE(501)] = 29285, - [SMALL_STATE(502)] = 29339, - [SMALL_STATE(503)] = 29393, - [SMALL_STATE(504)] = 29447, - [SMALL_STATE(505)] = 29501, - [SMALL_STATE(506)] = 29555, - [SMALL_STATE(507)] = 29609, - [SMALL_STATE(508)] = 29663, - [SMALL_STATE(509)] = 29717, - [SMALL_STATE(510)] = 29771, - [SMALL_STATE(511)] = 29825, - [SMALL_STATE(512)] = 29879, - [SMALL_STATE(513)] = 29933, - [SMALL_STATE(514)] = 29987, - [SMALL_STATE(515)] = 30041, - [SMALL_STATE(516)] = 30095, - [SMALL_STATE(517)] = 30149, - [SMALL_STATE(518)] = 30203, - [SMALL_STATE(519)] = 30257, - [SMALL_STATE(520)] = 30311, - [SMALL_STATE(521)] = 30365, - [SMALL_STATE(522)] = 30419, - [SMALL_STATE(523)] = 30473, - [SMALL_STATE(524)] = 30527, - [SMALL_STATE(525)] = 30581, - [SMALL_STATE(526)] = 30635, - [SMALL_STATE(527)] = 30689, - [SMALL_STATE(528)] = 30743, - [SMALL_STATE(529)] = 30797, - [SMALL_STATE(530)] = 30851, - [SMALL_STATE(531)] = 30905, - [SMALL_STATE(532)] = 30959, - [SMALL_STATE(533)] = 31013, - [SMALL_STATE(534)] = 31067, - [SMALL_STATE(535)] = 31121, - [SMALL_STATE(536)] = 31175, - [SMALL_STATE(537)] = 31229, - [SMALL_STATE(538)] = 31283, - [SMALL_STATE(539)] = 31337, - [SMALL_STATE(540)] = 31391, - [SMALL_STATE(541)] = 31445, - [SMALL_STATE(542)] = 31499, - [SMALL_STATE(543)] = 31553, - [SMALL_STATE(544)] = 31607, - [SMALL_STATE(545)] = 31661, - [SMALL_STATE(546)] = 31715, - [SMALL_STATE(547)] = 31769, - [SMALL_STATE(548)] = 31823, - [SMALL_STATE(549)] = 31911, - [SMALL_STATE(550)] = 31965, - [SMALL_STATE(551)] = 32019, - [SMALL_STATE(552)] = 32073, - [SMALL_STATE(553)] = 32127, - [SMALL_STATE(554)] = 32181, - [SMALL_STATE(555)] = 32235, - [SMALL_STATE(556)] = 32289, - [SMALL_STATE(557)] = 32343, - [SMALL_STATE(558)] = 32397, - [SMALL_STATE(559)] = 32451, - [SMALL_STATE(560)] = 32505, - [SMALL_STATE(561)] = 32559, - [SMALL_STATE(562)] = 32613, - [SMALL_STATE(563)] = 32667, - [SMALL_STATE(564)] = 32721, - [SMALL_STATE(565)] = 32775, - [SMALL_STATE(566)] = 32829, - [SMALL_STATE(567)] = 32883, - [SMALL_STATE(568)] = 32965, - [SMALL_STATE(569)] = 33020, - [SMALL_STATE(570)] = 33075, - [SMALL_STATE(571)] = 33130, - [SMALL_STATE(572)] = 33185, - [SMALL_STATE(573)] = 33240, - [SMALL_STATE(574)] = 33295, - [SMALL_STATE(575)] = 33371, - [SMALL_STATE(576)] = 33447, - [SMALL_STATE(577)] = 33523, - [SMALL_STATE(578)] = 33599, - [SMALL_STATE(579)] = 33672, - [SMALL_STATE(580)] = 33745, - [SMALL_STATE(581)] = 33818, - [SMALL_STATE(582)] = 33867, - [SMALL_STATE(583)] = 33916, - [SMALL_STATE(584)] = 33989, - [SMALL_STATE(585)] = 34062, - [SMALL_STATE(586)] = 34135, - [SMALL_STATE(587)] = 34208, - [SMALL_STATE(588)] = 34257, - [SMALL_STATE(589)] = 34334, - [SMALL_STATE(590)] = 34407, - [SMALL_STATE(591)] = 34480, - [SMALL_STATE(592)] = 34553, - [SMALL_STATE(593)] = 34626, - [SMALL_STATE(594)] = 34699, - [SMALL_STATE(595)] = 34772, - [SMALL_STATE(596)] = 34845, - [SMALL_STATE(597)] = 34918, - [SMALL_STATE(598)] = 34991, - [SMALL_STATE(599)] = 35064, - [SMALL_STATE(600)] = 35137, - [SMALL_STATE(601)] = 35210, - [SMALL_STATE(602)] = 35283, - [SMALL_STATE(603)] = 35332, - [SMALL_STATE(604)] = 35405, - [SMALL_STATE(605)] = 35478, - [SMALL_STATE(606)] = 35551, - [SMALL_STATE(607)] = 35624, - [SMALL_STATE(608)] = 35697, - [SMALL_STATE(609)] = 35770, - [SMALL_STATE(610)] = 35843, - [SMALL_STATE(611)] = 35916, - [SMALL_STATE(612)] = 35989, - [SMALL_STATE(613)] = 36062, - [SMALL_STATE(614)] = 36135, - [SMALL_STATE(615)] = 36208, - [SMALL_STATE(616)] = 36281, - [SMALL_STATE(617)] = 36354, - [SMALL_STATE(618)] = 36427, - [SMALL_STATE(619)] = 36500, - [SMALL_STATE(620)] = 36573, - [SMALL_STATE(621)] = 36646, - [SMALL_STATE(622)] = 36723, - [SMALL_STATE(623)] = 36796, - [SMALL_STATE(624)] = 36869, - [SMALL_STATE(625)] = 36942, - [SMALL_STATE(626)] = 37015, - [SMALL_STATE(627)] = 37088, - [SMALL_STATE(628)] = 37161, - [SMALL_STATE(629)] = 37209, - [SMALL_STATE(630)] = 37257, - [SMALL_STATE(631)] = 37305, - [SMALL_STATE(632)] = 37353, - [SMALL_STATE(633)] = 37401, - [SMALL_STATE(634)] = 37449, - [SMALL_STATE(635)] = 37531, - [SMALL_STATE(636)] = 37579, - [SMALL_STATE(637)] = 37627, - [SMALL_STATE(638)] = 37675, - [SMALL_STATE(639)] = 37723, - [SMALL_STATE(640)] = 37771, - [SMALL_STATE(641)] = 37819, - [SMALL_STATE(642)] = 37867, - [SMALL_STATE(643)] = 37915, - [SMALL_STATE(644)] = 37963, - [SMALL_STATE(645)] = 38011, - [SMALL_STATE(646)] = 38059, - [SMALL_STATE(647)] = 38107, - [SMALL_STATE(648)] = 38155, - [SMALL_STATE(649)] = 38237, - [SMALL_STATE(650)] = 38285, - [SMALL_STATE(651)] = 38333, - [SMALL_STATE(652)] = 38381, - [SMALL_STATE(653)] = 38429, - [SMALL_STATE(654)] = 38477, - [SMALL_STATE(655)] = 38525, - [SMALL_STATE(656)] = 38573, - [SMALL_STATE(657)] = 38621, - [SMALL_STATE(658)] = 38669, - [SMALL_STATE(659)] = 38717, - [SMALL_STATE(660)] = 38765, - [SMALL_STATE(661)] = 38813, - [SMALL_STATE(662)] = 38870, - [SMALL_STATE(663)] = 38937, - [SMALL_STATE(664)] = 39004, - [SMALL_STATE(665)] = 39061, - [SMALL_STATE(666)] = 39126, - [SMALL_STATE(667)] = 39183, - [SMALL_STATE(668)] = 39246, - [SMALL_STATE(669)] = 39303, - [SMALL_STATE(670)] = 39364, - [SMALL_STATE(671)] = 39421, - [SMALL_STATE(672)] = 39478, - [SMALL_STATE(673)] = 39549, - [SMALL_STATE(674)] = 39618, - [SMALL_STATE(675)] = 39675, - [SMALL_STATE(676)] = 39746, - [SMALL_STATE(677)] = 39817, - [SMALL_STATE(678)] = 39880, - [SMALL_STATE(679)] = 39951, - [SMALL_STATE(680)] = 40022, - [SMALL_STATE(681)] = 40087, - [SMALL_STATE(682)] = 40156, - [SMALL_STATE(683)] = 40217, - [SMALL_STATE(684)] = 40288, - [SMALL_STATE(685)] = 40345, - [SMALL_STATE(686)] = 40393, - [SMALL_STATE(687)] = 40443, - [SMALL_STATE(688)] = 40489, - [SMALL_STATE(689)] = 40537, - [SMALL_STATE(690)] = 40587, - [SMALL_STATE(691)] = 40635, - [SMALL_STATE(692)] = 40685, - [SMALL_STATE(693)] = 40731, - [SMALL_STATE(694)] = 40781, - [SMALL_STATE(695)] = 40829, - [SMALL_STATE(696)] = 40878, - [SMALL_STATE(697)] = 40927, - [SMALL_STATE(698)] = 41006, - [SMALL_STATE(699)] = 41055, - [SMALL_STATE(700)] = 41104, - [SMALL_STATE(701)] = 41149, - [SMALL_STATE(702)] = 41198, - [SMALL_STATE(703)] = 41247, - [SMALL_STATE(704)] = 41292, - [SMALL_STATE(705)] = 41340, - [SMALL_STATE(706)] = 41394, - [SMALL_STATE(707)] = 41442, - [SMALL_STATE(708)] = 41486, - [SMALL_STATE(709)] = 41550, - [SMALL_STATE(710)] = 41608, - [SMALL_STATE(711)] = 41670, - [SMALL_STATE(712)] = 41736, - [SMALL_STATE(713)] = 41804, - [SMALL_STATE(714)] = 41864, - [SMALL_STATE(715)] = 41918, - [SMALL_STATE(716)] = 41972, - [SMALL_STATE(717)] = 42016, - [SMALL_STATE(718)] = 42084, - [SMALL_STATE(719)] = 42128, - [SMALL_STATE(720)] = 42172, - [SMALL_STATE(721)] = 42240, - [SMALL_STATE(722)] = 42294, - [SMALL_STATE(723)] = 42370, - [SMALL_STATE(724)] = 42423, - [SMALL_STATE(725)] = 42490, - [SMALL_STATE(726)] = 42571, - [SMALL_STATE(727)] = 42614, - [SMALL_STATE(728)] = 42661, - [SMALL_STATE(729)] = 42714, - [SMALL_STATE(730)] = 42773, - [SMALL_STATE(731)] = 42816, - [SMALL_STATE(732)] = 42897, - [SMALL_STATE(733)] = 42964, - [SMALL_STATE(734)] = 43011, - [SMALL_STATE(735)] = 43054, - [SMALL_STATE(736)] = 43097, - [SMALL_STATE(737)] = 43144, - [SMALL_STATE(738)] = 43191, - [SMALL_STATE(739)] = 43256, - [SMALL_STATE(740)] = 43313, - [SMALL_STATE(741)] = 43358, - [SMALL_STATE(742)] = 43403, - [SMALL_STATE(743)] = 43448, - [SMALL_STATE(744)] = 43493, - [SMALL_STATE(745)] = 43546, - [SMALL_STATE(746)] = 43591, - [SMALL_STATE(747)] = 43672, - [SMALL_STATE(748)] = 43735, - [SMALL_STATE(749)] = 43796, - [SMALL_STATE(750)] = 43841, - [SMALL_STATE(751)] = 43886, - [SMALL_STATE(752)] = 43931, - [SMALL_STATE(753)] = 43984, - [SMALL_STATE(754)] = 44065, - [SMALL_STATE(755)] = 44132, - [SMALL_STATE(756)] = 44174, - [SMALL_STATE(757)] = 44216, - [SMALL_STATE(758)] = 44258, - [SMALL_STATE(759)] = 44300, - [SMALL_STATE(760)] = 44342, - [SMALL_STATE(761)] = 44384, - [SMALL_STATE(762)] = 44426, - [SMALL_STATE(763)] = 44468, - [SMALL_STATE(764)] = 44510, - [SMALL_STATE(765)] = 44554, - [SMALL_STATE(766)] = 44596, - [SMALL_STATE(767)] = 44638, - [SMALL_STATE(768)] = 44680, - [SMALL_STATE(769)] = 44758, - [SMALL_STATE(770)] = 44802, - [SMALL_STATE(771)] = 44880, - [SMALL_STATE(772)] = 44922, - [SMALL_STATE(773)] = 44964, - [SMALL_STATE(774)] = 45006, - [SMALL_STATE(775)] = 45048, - [SMALL_STATE(776)] = 45090, - [SMALL_STATE(777)] = 45132, - [SMALL_STATE(778)] = 45176, - [SMALL_STATE(779)] = 45218, - [SMALL_STATE(780)] = 45260, - [SMALL_STATE(781)] = 45304, - [SMALL_STATE(782)] = 45346, - [SMALL_STATE(783)] = 45388, - [SMALL_STATE(784)] = 45468, - [SMALL_STATE(785)] = 45510, - [SMALL_STATE(786)] = 45552, - [SMALL_STATE(787)] = 45594, - [SMALL_STATE(788)] = 45636, - [SMALL_STATE(789)] = 45714, - [SMALL_STATE(790)] = 45792, - [SMALL_STATE(791)] = 45834, - [SMALL_STATE(792)] = 45878, - [SMALL_STATE(793)] = 45920, - [SMALL_STATE(794)] = 45962, - [SMALL_STATE(795)] = 46004, - [SMALL_STATE(796)] = 46046, - [SMALL_STATE(797)] = 46088, - [SMALL_STATE(798)] = 46130, - [SMALL_STATE(799)] = 46208, - [SMALL_STATE(800)] = 46249, - [SMALL_STATE(801)] = 46328, - [SMALL_STATE(802)] = 46373, - [SMALL_STATE(803)] = 46452, - [SMALL_STATE(804)] = 46497, - [SMALL_STATE(805)] = 46538, - [SMALL_STATE(806)] = 46579, - [SMALL_STATE(807)] = 46620, - [SMALL_STATE(808)] = 46661, - [SMALL_STATE(809)] = 46702, - [SMALL_STATE(810)] = 46743, - [SMALL_STATE(811)] = 46784, - [SMALL_STATE(812)] = 46825, - [SMALL_STATE(813)] = 46866, - [SMALL_STATE(814)] = 46907, - [SMALL_STATE(815)] = 46948, - [SMALL_STATE(816)] = 46989, - [SMALL_STATE(817)] = 47030, - [SMALL_STATE(818)] = 47109, - [SMALL_STATE(819)] = 47150, - [SMALL_STATE(820)] = 47191, - [SMALL_STATE(821)] = 47232, - [SMALL_STATE(822)] = 47273, - [SMALL_STATE(823)] = 47314, - [SMALL_STATE(824)] = 47355, - [SMALL_STATE(825)] = 47396, - [SMALL_STATE(826)] = 47471, - [SMALL_STATE(827)] = 47512, - [SMALL_STATE(828)] = 47553, - [SMALL_STATE(829)] = 47594, - [SMALL_STATE(830)] = 47635, - [SMALL_STATE(831)] = 47676, - [SMALL_STATE(832)] = 47717, - [SMALL_STATE(833)] = 47758, - [SMALL_STATE(834)] = 47799, - [SMALL_STATE(835)] = 47840, - [SMALL_STATE(836)] = 47881, - [SMALL_STATE(837)] = 47922, - [SMALL_STATE(838)] = 47963, - [SMALL_STATE(839)] = 48036, - [SMALL_STATE(840)] = 48106, - [SMALL_STATE(841)] = 48176, - [SMALL_STATE(842)] = 48238, - [SMALL_STATE(843)] = 48300, - [SMALL_STATE(844)] = 48340, - [SMALL_STATE(845)] = 48380, - [SMALL_STATE(846)] = 48420, - [SMALL_STATE(847)] = 48460, - [SMALL_STATE(848)] = 48490, - [SMALL_STATE(849)] = 48543, - [SMALL_STATE(850)] = 48568, - [SMALL_STATE(851)] = 48621, - [SMALL_STATE(852)] = 48674, - [SMALL_STATE(853)] = 48711, - [SMALL_STATE(854)] = 48736, - [SMALL_STATE(855)] = 48761, - [SMALL_STATE(856)] = 48786, - [SMALL_STATE(857)] = 48815, - [SMALL_STATE(858)] = 48852, - [SMALL_STATE(859)] = 48881, - [SMALL_STATE(860)] = 48915, - [SMALL_STATE(861)] = 48949, - [SMALL_STATE(862)] = 48995, - [SMALL_STATE(863)] = 49023, - [SMALL_STATE(864)] = 49066, - [SMALL_STATE(865)] = 49097, - [SMALL_STATE(866)] = 49140, - [SMALL_STATE(867)] = 49183, - [SMALL_STATE(868)] = 49226, - [SMALL_STATE(869)] = 49269, - [SMALL_STATE(870)] = 49313, - [SMALL_STATE(871)] = 49353, - [SMALL_STATE(872)] = 49390, - [SMALL_STATE(873)] = 49427, - [SMALL_STATE(874)] = 49464, - [SMALL_STATE(875)] = 49489, - [SMALL_STATE(876)] = 49526, - [SMALL_STATE(877)] = 49548, - [SMALL_STATE(878)] = 49582, - [SMALL_STATE(879)] = 49604, - [SMALL_STATE(880)] = 49638, - [SMALL_STATE(881)] = 49660, - [SMALL_STATE(882)] = 49683, - [SMALL_STATE(883)] = 49720, - [SMALL_STATE(884)] = 49757, - [SMALL_STATE(885)] = 49774, - [SMALL_STATE(886)] = 49801, - [SMALL_STATE(887)] = 49824, - [SMALL_STATE(888)] = 49847, - [SMALL_STATE(889)] = 49868, - [SMALL_STATE(890)] = 49891, - [SMALL_STATE(891)] = 49916, - [SMALL_STATE(892)] = 49937, - [SMALL_STATE(893)] = 49956, - [SMALL_STATE(894)] = 49977, - [SMALL_STATE(895)] = 50002, - [SMALL_STATE(896)] = 50025, - [SMALL_STATE(897)] = 50048, - [SMALL_STATE(898)] = 50069, - [SMALL_STATE(899)] = 50090, - [SMALL_STATE(900)] = 50127, - [SMALL_STATE(901)] = 50152, - [SMALL_STATE(902)] = 50189, - [SMALL_STATE(903)] = 50212, - [SMALL_STATE(904)] = 50235, - [SMALL_STATE(905)] = 50256, - [SMALL_STATE(906)] = 50286, - [SMALL_STATE(907)] = 50316, - [SMALL_STATE(908)] = 50346, - [SMALL_STATE(909)] = 50368, - [SMALL_STATE(910)] = 50398, - [SMALL_STATE(911)] = 50432, - [SMALL_STATE(912)] = 50466, - [SMALL_STATE(913)] = 50500, - [SMALL_STATE(914)] = 50534, - [SMALL_STATE(915)] = 50552, - [SMALL_STATE(916)] = 50586, - [SMALL_STATE(917)] = 50620, - [SMALL_STATE(918)] = 50650, - [SMALL_STATE(919)] = 50672, - [SMALL_STATE(920)] = 50702, - [SMALL_STATE(921)] = 50732, - [SMALL_STATE(922)] = 50754, - [SMALL_STATE(923)] = 50784, - [SMALL_STATE(924)] = 50814, - [SMALL_STATE(925)] = 50848, - [SMALL_STATE(926)] = 50870, - [SMALL_STATE(927)] = 50888, - [SMALL_STATE(928)] = 50918, - [SMALL_STATE(929)] = 50952, - [SMALL_STATE(930)] = 50982, - [SMALL_STATE(931)] = 51012, - [SMALL_STATE(932)] = 51042, - [SMALL_STATE(933)] = 51076, - [SMALL_STATE(934)] = 51106, - [SMALL_STATE(935)] = 51136, - [SMALL_STATE(936)] = 51155, - [SMALL_STATE(937)] = 51178, - [SMALL_STATE(938)] = 51201, - [SMALL_STATE(939)] = 51220, - [SMALL_STATE(940)] = 51239, - [SMALL_STATE(941)] = 51258, - [SMALL_STATE(942)] = 51277, - [SMALL_STATE(943)] = 51302, - [SMALL_STATE(944)] = 51325, - [SMALL_STATE(945)] = 51344, - [SMALL_STATE(946)] = 51362, - [SMALL_STATE(947)] = 51376, - [SMALL_STATE(948)] = 51392, - [SMALL_STATE(949)] = 51410, - [SMALL_STATE(950)] = 51430, - [SMALL_STATE(951)] = 51444, - [SMALL_STATE(952)] = 51458, - [SMALL_STATE(953)] = 51472, - [SMALL_STATE(954)] = 51490, - [SMALL_STATE(955)] = 51504, - [SMALL_STATE(956)] = 51518, - [SMALL_STATE(957)] = 51544, - [SMALL_STATE(958)] = 51562, - [SMALL_STATE(959)] = 51576, - [SMALL_STATE(960)] = 51590, - [SMALL_STATE(961)] = 51608, - [SMALL_STATE(962)] = 51622, - [SMALL_STATE(963)] = 51636, - [SMALL_STATE(964)] = 51650, - [SMALL_STATE(965)] = 51668, - [SMALL_STATE(966)] = 51688, - [SMALL_STATE(967)] = 51702, - [SMALL_STATE(968)] = 51724, - [SMALL_STATE(969)] = 51742, - [SMALL_STATE(970)] = 51760, - [SMALL_STATE(971)] = 51784, - [SMALL_STATE(972)] = 51798, - [SMALL_STATE(973)] = 51816, - [SMALL_STATE(974)] = 51830, - [SMALL_STATE(975)] = 51844, - [SMALL_STATE(976)] = 51858, - [SMALL_STATE(977)] = 51872, - [SMALL_STATE(978)] = 51886, - [SMALL_STATE(979)] = 51906, - [SMALL_STATE(980)] = 51920, - [SMALL_STATE(981)] = 51938, - [SMALL_STATE(982)] = 51954, - [SMALL_STATE(983)] = 51968, - [SMALL_STATE(984)] = 51988, - [SMALL_STATE(985)] = 52002, - [SMALL_STATE(986)] = 52026, - [SMALL_STATE(987)] = 52044, - [SMALL_STATE(988)] = 52058, - [SMALL_STATE(989)] = 52072, - [SMALL_STATE(990)] = 52090, - [SMALL_STATE(991)] = 52104, - [SMALL_STATE(992)] = 52127, - [SMALL_STATE(993)] = 52140, - [SMALL_STATE(994)] = 52159, - [SMALL_STATE(995)] = 52180, - [SMALL_STATE(996)] = 52199, - [SMALL_STATE(997)] = 52222, - [SMALL_STATE(998)] = 52241, - [SMALL_STATE(999)] = 52254, - [SMALL_STATE(1000)] = 52273, - [SMALL_STATE(1001)] = 52296, - [SMALL_STATE(1002)] = 52321, - [SMALL_STATE(1003)] = 52334, - [SMALL_STATE(1004)] = 52351, - [SMALL_STATE(1005)] = 52372, - [SMALL_STATE(1006)] = 52387, - [SMALL_STATE(1007)] = 52410, - [SMALL_STATE(1008)] = 52429, - [SMALL_STATE(1009)] = 52446, - [SMALL_STATE(1010)] = 52465, - [SMALL_STATE(1011)] = 52482, - [SMALL_STATE(1012)] = 52501, - [SMALL_STATE(1013)] = 52514, - [SMALL_STATE(1014)] = 52527, - [SMALL_STATE(1015)] = 52548, - [SMALL_STATE(1016)] = 52573, - [SMALL_STATE(1017)] = 52594, - [SMALL_STATE(1018)] = 52615, - [SMALL_STATE(1019)] = 52640, - [SMALL_STATE(1020)] = 52655, - [SMALL_STATE(1021)] = 52674, - [SMALL_STATE(1022)] = 52693, - [SMALL_STATE(1023)] = 52706, - [SMALL_STATE(1024)] = 52719, - [SMALL_STATE(1025)] = 52742, - [SMALL_STATE(1026)] = 52761, - [SMALL_STATE(1027)] = 52782, - [SMALL_STATE(1028)] = 52807, - [SMALL_STATE(1029)] = 52830, - [SMALL_STATE(1030)] = 52851, - [SMALL_STATE(1031)] = 52874, - [SMALL_STATE(1032)] = 52897, - [SMALL_STATE(1033)] = 52920, - [SMALL_STATE(1034)] = 52938, - [SMALL_STATE(1035)] = 52954, - [SMALL_STATE(1036)] = 52966, - [SMALL_STATE(1037)] = 52980, - [SMALL_STATE(1038)] = 53002, - [SMALL_STATE(1039)] = 53022, - [SMALL_STATE(1040)] = 53040, - [SMALL_STATE(1041)] = 53054, - [SMALL_STATE(1042)] = 53066, - [SMALL_STATE(1043)] = 53086, - [SMALL_STATE(1044)] = 53108, - [SMALL_STATE(1045)] = 53122, - [SMALL_STATE(1046)] = 53142, - [SMALL_STATE(1047)] = 53158, - [SMALL_STATE(1048)] = 53174, - [SMALL_STATE(1049)] = 53196, - [SMALL_STATE(1050)] = 53218, - [SMALL_STATE(1051)] = 53240, - [SMALL_STATE(1052)] = 53256, - [SMALL_STATE(1053)] = 53274, - [SMALL_STATE(1054)] = 53292, - [SMALL_STATE(1055)] = 53312, - [SMALL_STATE(1056)] = 53334, - [SMALL_STATE(1057)] = 53352, - [SMALL_STATE(1058)] = 53370, - [SMALL_STATE(1059)] = 53384, - [SMALL_STATE(1060)] = 53398, - [SMALL_STATE(1061)] = 53416, - [SMALL_STATE(1062)] = 53436, - [SMALL_STATE(1063)] = 53456, - [SMALL_STATE(1064)] = 53478, - [SMALL_STATE(1065)] = 53494, - [SMALL_STATE(1066)] = 53510, - [SMALL_STATE(1067)] = 53526, - [SMALL_STATE(1068)] = 53540, - [SMALL_STATE(1069)] = 53557, - [SMALL_STATE(1070)] = 53572, - [SMALL_STATE(1071)] = 53589, - [SMALL_STATE(1072)] = 53606, - [SMALL_STATE(1073)] = 53623, - [SMALL_STATE(1074)] = 53640, - [SMALL_STATE(1075)] = 53659, - [SMALL_STATE(1076)] = 53676, - [SMALL_STATE(1077)] = 53691, - [SMALL_STATE(1078)] = 53706, - [SMALL_STATE(1079)] = 53721, - [SMALL_STATE(1080)] = 53738, - [SMALL_STATE(1081)] = 53757, - [SMALL_STATE(1082)] = 53768, - [SMALL_STATE(1083)] = 53785, - [SMALL_STATE(1084)] = 53802, - [SMALL_STATE(1085)] = 53819, - [SMALL_STATE(1086)] = 53836, - [SMALL_STATE(1087)] = 53855, - [SMALL_STATE(1088)] = 53872, - [SMALL_STATE(1089)] = 53889, - [SMALL_STATE(1090)] = 53906, - [SMALL_STATE(1091)] = 53925, - [SMALL_STATE(1092)] = 53944, - [SMALL_STATE(1093)] = 53963, - [SMALL_STATE(1094)] = 53978, - [SMALL_STATE(1095)] = 53997, - [SMALL_STATE(1096)] = 54014, - [SMALL_STATE(1097)] = 54025, - [SMALL_STATE(1098)] = 54040, - [SMALL_STATE(1099)] = 54055, - [SMALL_STATE(1100)] = 54074, - [SMALL_STATE(1101)] = 54091, - [SMALL_STATE(1102)] = 54110, - [SMALL_STATE(1103)] = 54127, - [SMALL_STATE(1104)] = 54144, - [SMALL_STATE(1105)] = 54163, - [SMALL_STATE(1106)] = 54174, - [SMALL_STATE(1107)] = 54188, - [SMALL_STATE(1108)] = 54204, - [SMALL_STATE(1109)] = 54218, - [SMALL_STATE(1110)] = 54234, - [SMALL_STATE(1111)] = 54248, - [SMALL_STATE(1112)] = 54264, - [SMALL_STATE(1113)] = 54278, - [SMALL_STATE(1114)] = 54292, - [SMALL_STATE(1115)] = 54304, - [SMALL_STATE(1116)] = 54320, - [SMALL_STATE(1117)] = 54334, - [SMALL_STATE(1118)] = 54348, - [SMALL_STATE(1119)] = 54362, - [SMALL_STATE(1120)] = 54376, - [SMALL_STATE(1121)] = 54392, - [SMALL_STATE(1122)] = 54406, - [SMALL_STATE(1123)] = 54422, - [SMALL_STATE(1124)] = 54436, - [SMALL_STATE(1125)] = 54452, - [SMALL_STATE(1126)] = 54462, - [SMALL_STATE(1127)] = 54472, - [SMALL_STATE(1128)] = 54488, - [SMALL_STATE(1129)] = 54504, - [SMALL_STATE(1130)] = 54518, - [SMALL_STATE(1131)] = 54534, - [SMALL_STATE(1132)] = 54550, - [SMALL_STATE(1133)] = 54560, - [SMALL_STATE(1134)] = 54574, - [SMALL_STATE(1135)] = 54590, - [SMALL_STATE(1136)] = 54604, - [SMALL_STATE(1137)] = 54620, - [SMALL_STATE(1138)] = 54636, - [SMALL_STATE(1139)] = 54652, - [SMALL_STATE(1140)] = 54668, - [SMALL_STATE(1141)] = 54684, - [SMALL_STATE(1142)] = 54700, - [SMALL_STATE(1143)] = 54716, - [SMALL_STATE(1144)] = 54726, - [SMALL_STATE(1145)] = 54742, - [SMALL_STATE(1146)] = 54758, - [SMALL_STATE(1147)] = 54772, - [SMALL_STATE(1148)] = 54782, - [SMALL_STATE(1149)] = 54796, - [SMALL_STATE(1150)] = 54810, - [SMALL_STATE(1151)] = 54824, - [SMALL_STATE(1152)] = 54836, - [SMALL_STATE(1153)] = 54850, - [SMALL_STATE(1154)] = 54864, - [SMALL_STATE(1155)] = 54878, - [SMALL_STATE(1156)] = 54894, - [SMALL_STATE(1157)] = 54908, - [SMALL_STATE(1158)] = 54922, - [SMALL_STATE(1159)] = 54938, - [SMALL_STATE(1160)] = 54954, - [SMALL_STATE(1161)] = 54968, - [SMALL_STATE(1162)] = 54982, - [SMALL_STATE(1163)] = 54992, - [SMALL_STATE(1164)] = 55008, - [SMALL_STATE(1165)] = 55022, - [SMALL_STATE(1166)] = 55036, - [SMALL_STATE(1167)] = 55052, - [SMALL_STATE(1168)] = 55066, - [SMALL_STATE(1169)] = 55082, - [SMALL_STATE(1170)] = 55098, - [SMALL_STATE(1171)] = 55114, - [SMALL_STATE(1172)] = 55128, - [SMALL_STATE(1173)] = 55142, - [SMALL_STATE(1174)] = 55156, - [SMALL_STATE(1175)] = 55170, - [SMALL_STATE(1176)] = 55186, - [SMALL_STATE(1177)] = 55199, - [SMALL_STATE(1178)] = 55212, - [SMALL_STATE(1179)] = 55225, - [SMALL_STATE(1180)] = 55236, - [SMALL_STATE(1181)] = 55249, - [SMALL_STATE(1182)] = 55262, - [SMALL_STATE(1183)] = 55275, - [SMALL_STATE(1184)] = 55288, - [SMALL_STATE(1185)] = 55301, - [SMALL_STATE(1186)] = 55312, - [SMALL_STATE(1187)] = 55323, - [SMALL_STATE(1188)] = 55336, - [SMALL_STATE(1189)] = 55349, - [SMALL_STATE(1190)] = 55362, - [SMALL_STATE(1191)] = 55375, - [SMALL_STATE(1192)] = 55388, - [SMALL_STATE(1193)] = 55397, - [SMALL_STATE(1194)] = 55410, - [SMALL_STATE(1195)] = 55419, - [SMALL_STATE(1196)] = 55432, - [SMALL_STATE(1197)] = 55443, - [SMALL_STATE(1198)] = 55456, - [SMALL_STATE(1199)] = 55465, - [SMALL_STATE(1200)] = 55478, - [SMALL_STATE(1201)] = 55491, - [SMALL_STATE(1202)] = 55504, - [SMALL_STATE(1203)] = 55517, - [SMALL_STATE(1204)] = 55526, - [SMALL_STATE(1205)] = 55539, - [SMALL_STATE(1206)] = 55552, - [SMALL_STATE(1207)] = 55565, - [SMALL_STATE(1208)] = 55574, - [SMALL_STATE(1209)] = 55585, - [SMALL_STATE(1210)] = 55598, - [SMALL_STATE(1211)] = 55607, - [SMALL_STATE(1212)] = 55620, - [SMALL_STATE(1213)] = 55633, - [SMALL_STATE(1214)] = 55646, - [SMALL_STATE(1215)] = 55659, - [SMALL_STATE(1216)] = 55672, - [SMALL_STATE(1217)] = 55685, - [SMALL_STATE(1218)] = 55698, - [SMALL_STATE(1219)] = 55711, - [SMALL_STATE(1220)] = 55724, - [SMALL_STATE(1221)] = 55737, - [SMALL_STATE(1222)] = 55750, - [SMALL_STATE(1223)] = 55763, - [SMALL_STATE(1224)] = 55776, - [SMALL_STATE(1225)] = 55789, - [SMALL_STATE(1226)] = 55802, - [SMALL_STATE(1227)] = 55815, - [SMALL_STATE(1228)] = 55828, - [SMALL_STATE(1229)] = 55841, - [SMALL_STATE(1230)] = 55854, - [SMALL_STATE(1231)] = 55867, - [SMALL_STATE(1232)] = 55880, - [SMALL_STATE(1233)] = 55893, - [SMALL_STATE(1234)] = 55906, - [SMALL_STATE(1235)] = 55919, - [SMALL_STATE(1236)] = 55932, - [SMALL_STATE(1237)] = 55945, - [SMALL_STATE(1238)] = 55958, - [SMALL_STATE(1239)] = 55969, - [SMALL_STATE(1240)] = 55982, - [SMALL_STATE(1241)] = 55995, - [SMALL_STATE(1242)] = 56008, - [SMALL_STATE(1243)] = 56021, - [SMALL_STATE(1244)] = 56034, - [SMALL_STATE(1245)] = 56047, - [SMALL_STATE(1246)] = 56060, - [SMALL_STATE(1247)] = 56073, - [SMALL_STATE(1248)] = 56086, - [SMALL_STATE(1249)] = 56099, - [SMALL_STATE(1250)] = 56112, - [SMALL_STATE(1251)] = 56125, - [SMALL_STATE(1252)] = 56138, - [SMALL_STATE(1253)] = 56151, - [SMALL_STATE(1254)] = 56164, - [SMALL_STATE(1255)] = 56177, - [SMALL_STATE(1256)] = 56190, - [SMALL_STATE(1257)] = 56203, - [SMALL_STATE(1258)] = 56216, - [SMALL_STATE(1259)] = 56227, - [SMALL_STATE(1260)] = 56240, - [SMALL_STATE(1261)] = 56253, - [SMALL_STATE(1262)] = 56266, - [SMALL_STATE(1263)] = 56277, - [SMALL_STATE(1264)] = 56290, - [SMALL_STATE(1265)] = 56303, - [SMALL_STATE(1266)] = 56316, - [SMALL_STATE(1267)] = 56329, - [SMALL_STATE(1268)] = 56340, - [SMALL_STATE(1269)] = 56353, - [SMALL_STATE(1270)] = 56366, - [SMALL_STATE(1271)] = 56379, - [SMALL_STATE(1272)] = 56392, - [SMALL_STATE(1273)] = 56405, - [SMALL_STATE(1274)] = 56414, - [SMALL_STATE(1275)] = 56427, - [SMALL_STATE(1276)] = 56440, - [SMALL_STATE(1277)] = 56453, - [SMALL_STATE(1278)] = 56466, - [SMALL_STATE(1279)] = 56479, - [SMALL_STATE(1280)] = 56492, - [SMALL_STATE(1281)] = 56505, - [SMALL_STATE(1282)] = 56518, - [SMALL_STATE(1283)] = 56527, - [SMALL_STATE(1284)] = 56538, - [SMALL_STATE(1285)] = 56551, - [SMALL_STATE(1286)] = 56560, - [SMALL_STATE(1287)] = 56573, - [SMALL_STATE(1288)] = 56586, - [SMALL_STATE(1289)] = 56597, - [SMALL_STATE(1290)] = 56606, - [SMALL_STATE(1291)] = 56615, - [SMALL_STATE(1292)] = 56628, - [SMALL_STATE(1293)] = 56641, - [SMALL_STATE(1294)] = 56654, - [SMALL_STATE(1295)] = 56663, - [SMALL_STATE(1296)] = 56674, - [SMALL_STATE(1297)] = 56687, - [SMALL_STATE(1298)] = 56700, - [SMALL_STATE(1299)] = 56713, - [SMALL_STATE(1300)] = 56722, - [SMALL_STATE(1301)] = 56735, - [SMALL_STATE(1302)] = 56748, - [SMALL_STATE(1303)] = 56761, - [SMALL_STATE(1304)] = 56770, - [SMALL_STATE(1305)] = 56783, - [SMALL_STATE(1306)] = 56792, - [SMALL_STATE(1307)] = 56802, - [SMALL_STATE(1308)] = 56812, - [SMALL_STATE(1309)] = 56820, - [SMALL_STATE(1310)] = 56828, - [SMALL_STATE(1311)] = 56838, - [SMALL_STATE(1312)] = 56846, - [SMALL_STATE(1313)] = 56854, - [SMALL_STATE(1314)] = 56864, - [SMALL_STATE(1315)] = 56872, - [SMALL_STATE(1316)] = 56880, - [SMALL_STATE(1317)] = 56888, - [SMALL_STATE(1318)] = 56896, - [SMALL_STATE(1319)] = 56904, - [SMALL_STATE(1320)] = 56914, - [SMALL_STATE(1321)] = 56924, - [SMALL_STATE(1322)] = 56932, - [SMALL_STATE(1323)] = 56942, - [SMALL_STATE(1324)] = 56950, - [SMALL_STATE(1325)] = 56958, - [SMALL_STATE(1326)] = 56966, - [SMALL_STATE(1327)] = 56974, - [SMALL_STATE(1328)] = 56984, - [SMALL_STATE(1329)] = 56994, - [SMALL_STATE(1330)] = 57004, - [SMALL_STATE(1331)] = 57012, - [SMALL_STATE(1332)] = 57020, - [SMALL_STATE(1333)] = 57028, - [SMALL_STATE(1334)] = 57036, - [SMALL_STATE(1335)] = 57044, - [SMALL_STATE(1336)] = 57052, - [SMALL_STATE(1337)] = 57060, - [SMALL_STATE(1338)] = 57068, - [SMALL_STATE(1339)] = 57076, - [SMALL_STATE(1340)] = 57084, - [SMALL_STATE(1341)] = 57092, - [SMALL_STATE(1342)] = 57100, - [SMALL_STATE(1343)] = 57110, - [SMALL_STATE(1344)] = 57118, - [SMALL_STATE(1345)] = 57126, - [SMALL_STATE(1346)] = 57134, - [SMALL_STATE(1347)] = 57142, - [SMALL_STATE(1348)] = 57150, - [SMALL_STATE(1349)] = 57158, - [SMALL_STATE(1350)] = 57166, - [SMALL_STATE(1351)] = 57176, - [SMALL_STATE(1352)] = 57186, - [SMALL_STATE(1353)] = 57196, - [SMALL_STATE(1354)] = 57204, - [SMALL_STATE(1355)] = 57214, - [SMALL_STATE(1356)] = 57224, - [SMALL_STATE(1357)] = 57234, - [SMALL_STATE(1358)] = 57242, - [SMALL_STATE(1359)] = 57250, - [SMALL_STATE(1360)] = 57260, - [SMALL_STATE(1361)] = 57270, - [SMALL_STATE(1362)] = 57278, - [SMALL_STATE(1363)] = 57288, - [SMALL_STATE(1364)] = 57296, - [SMALL_STATE(1365)] = 57306, - [SMALL_STATE(1366)] = 57316, - [SMALL_STATE(1367)] = 57324, - [SMALL_STATE(1368)] = 57334, - [SMALL_STATE(1369)] = 57342, - [SMALL_STATE(1370)] = 57352, - [SMALL_STATE(1371)] = 57362, - [SMALL_STATE(1372)] = 57370, - [SMALL_STATE(1373)] = 57378, - [SMALL_STATE(1374)] = 57386, - [SMALL_STATE(1375)] = 57394, - [SMALL_STATE(1376)] = 57402, - [SMALL_STATE(1377)] = 57412, - [SMALL_STATE(1378)] = 57419, - [SMALL_STATE(1379)] = 57426, - [SMALL_STATE(1380)] = 57433, - [SMALL_STATE(1381)] = 57440, - [SMALL_STATE(1382)] = 57447, - [SMALL_STATE(1383)] = 57454, - [SMALL_STATE(1384)] = 57461, - [SMALL_STATE(1385)] = 57468, - [SMALL_STATE(1386)] = 57475, - [SMALL_STATE(1387)] = 57482, - [SMALL_STATE(1388)] = 57489, - [SMALL_STATE(1389)] = 57496, - [SMALL_STATE(1390)] = 57503, - [SMALL_STATE(1391)] = 57510, - [SMALL_STATE(1392)] = 57517, - [SMALL_STATE(1393)] = 57524, - [SMALL_STATE(1394)] = 57531, - [SMALL_STATE(1395)] = 57538, - [SMALL_STATE(1396)] = 57545, - [SMALL_STATE(1397)] = 57552, - [SMALL_STATE(1398)] = 57559, - [SMALL_STATE(1399)] = 57566, - [SMALL_STATE(1400)] = 57573, - [SMALL_STATE(1401)] = 57580, - [SMALL_STATE(1402)] = 57587, - [SMALL_STATE(1403)] = 57594, - [SMALL_STATE(1404)] = 57601, - [SMALL_STATE(1405)] = 57608, - [SMALL_STATE(1406)] = 57615, - [SMALL_STATE(1407)] = 57622, - [SMALL_STATE(1408)] = 57629, - [SMALL_STATE(1409)] = 57636, - [SMALL_STATE(1410)] = 57643, - [SMALL_STATE(1411)] = 57650, - [SMALL_STATE(1412)] = 57657, - [SMALL_STATE(1413)] = 57664, - [SMALL_STATE(1414)] = 57671, - [SMALL_STATE(1415)] = 57678, - [SMALL_STATE(1416)] = 57685, - [SMALL_STATE(1417)] = 57692, - [SMALL_STATE(1418)] = 57699, - [SMALL_STATE(1419)] = 57706, - [SMALL_STATE(1420)] = 57713, - [SMALL_STATE(1421)] = 57720, - [SMALL_STATE(1422)] = 57727, - [SMALL_STATE(1423)] = 57734, - [SMALL_STATE(1424)] = 57741, - [SMALL_STATE(1425)] = 57748, - [SMALL_STATE(1426)] = 57755, - [SMALL_STATE(1427)] = 57762, - [SMALL_STATE(1428)] = 57769, - [SMALL_STATE(1429)] = 57776, - [SMALL_STATE(1430)] = 57783, - [SMALL_STATE(1431)] = 57790, - [SMALL_STATE(1432)] = 57797, - [SMALL_STATE(1433)] = 57804, - [SMALL_STATE(1434)] = 57811, - [SMALL_STATE(1435)] = 57818, - [SMALL_STATE(1436)] = 57825, - [SMALL_STATE(1437)] = 57832, - [SMALL_STATE(1438)] = 57839, - [SMALL_STATE(1439)] = 57846, - [SMALL_STATE(1440)] = 57853, - [SMALL_STATE(1441)] = 57860, - [SMALL_STATE(1442)] = 57867, - [SMALL_STATE(1443)] = 57874, - [SMALL_STATE(1444)] = 57881, - [SMALL_STATE(1445)] = 57888, - [SMALL_STATE(1446)] = 57895, - [SMALL_STATE(1447)] = 57902, - [SMALL_STATE(1448)] = 57909, - [SMALL_STATE(1449)] = 57916, - [SMALL_STATE(1450)] = 57923, - [SMALL_STATE(1451)] = 57930, - [SMALL_STATE(1452)] = 57937, - [SMALL_STATE(1453)] = 57944, - [SMALL_STATE(1454)] = 57951, - [SMALL_STATE(1455)] = 57958, - [SMALL_STATE(1456)] = 57965, - [SMALL_STATE(1457)] = 57972, - [SMALL_STATE(1458)] = 57979, - [SMALL_STATE(1459)] = 57986, - [SMALL_STATE(1460)] = 57993, - [SMALL_STATE(1461)] = 58000, - [SMALL_STATE(1462)] = 58007, - [SMALL_STATE(1463)] = 58014, - [SMALL_STATE(1464)] = 58021, - [SMALL_STATE(1465)] = 58028, - [SMALL_STATE(1466)] = 58035, - [SMALL_STATE(1467)] = 58042, - [SMALL_STATE(1468)] = 58049, - [SMALL_STATE(1469)] = 58056, - [SMALL_STATE(1470)] = 58063, - [SMALL_STATE(1471)] = 58070, - [SMALL_STATE(1472)] = 58077, - [SMALL_STATE(1473)] = 58084, - [SMALL_STATE(1474)] = 58091, - [SMALL_STATE(1475)] = 58098, - [SMALL_STATE(1476)] = 58105, - [SMALL_STATE(1477)] = 58112, - [SMALL_STATE(1478)] = 58119, - [SMALL_STATE(1479)] = 58126, - [SMALL_STATE(1480)] = 58133, - [SMALL_STATE(1481)] = 58140, - [SMALL_STATE(1482)] = 58147, - [SMALL_STATE(1483)] = 58154, - [SMALL_STATE(1484)] = 58161, - [SMALL_STATE(1485)] = 58168, - [SMALL_STATE(1486)] = 58175, - [SMALL_STATE(1487)] = 58182, - [SMALL_STATE(1488)] = 58189, - [SMALL_STATE(1489)] = 58196, - [SMALL_STATE(1490)] = 58203, - [SMALL_STATE(1491)] = 58210, - [SMALL_STATE(1492)] = 58217, - [SMALL_STATE(1493)] = 58224, - [SMALL_STATE(1494)] = 58231, - [SMALL_STATE(1495)] = 58238, - [SMALL_STATE(1496)] = 58245, - [SMALL_STATE(1497)] = 58252, - [SMALL_STATE(1498)] = 58259, - [SMALL_STATE(1499)] = 58266, - [SMALL_STATE(1500)] = 58273, - [SMALL_STATE(1501)] = 58280, + [SMALL_STATE(264)] = 11710, + [SMALL_STATE(265)] = 11811, + [SMALL_STATE(266)] = 11907, + [SMALL_STATE(267)] = 12003, + [SMALL_STATE(268)] = 12101, + [SMALL_STATE(269)] = 12197, + [SMALL_STATE(270)] = 12295, + [SMALL_STATE(271)] = 12391, + [SMALL_STATE(272)] = 12487, + [SMALL_STATE(273)] = 12583, + [SMALL_STATE(274)] = 12679, + [SMALL_STATE(275)] = 12775, + [SMALL_STATE(276)] = 12873, + [SMALL_STATE(277)] = 12971, + [SMALL_STATE(278)] = 13069, + [SMALL_STATE(279)] = 13167, + [SMALL_STATE(280)] = 13263, + [SMALL_STATE(281)] = 13359, + [SMALL_STATE(282)] = 13457, + [SMALL_STATE(283)] = 13553, + [SMALL_STATE(284)] = 13651, + [SMALL_STATE(285)] = 13747, + [SMALL_STATE(286)] = 13845, + [SMALL_STATE(287)] = 13941, + [SMALL_STATE(288)] = 14036, + [SMALL_STATE(289)] = 14131, + [SMALL_STATE(290)] = 14194, + [SMALL_STATE(291)] = 14263, + [SMALL_STATE(292)] = 14332, + [SMALL_STATE(293)] = 14395, + [SMALL_STATE(294)] = 14458, + [SMALL_STATE(295)] = 14517, + [SMALL_STATE(296)] = 14576, + [SMALL_STATE(297)] = 14635, + [SMALL_STATE(298)] = 14694, + [SMALL_STATE(299)] = 14767, + [SMALL_STATE(300)] = 14840, + [SMALL_STATE(301)] = 14909, + [SMALL_STATE(302)] = 14968, + [SMALL_STATE(303)] = 15037, + [SMALL_STATE(304)] = 15132, + [SMALL_STATE(305)] = 15201, + [SMALL_STATE(306)] = 15260, + [SMALL_STATE(307)] = 15319, + [SMALL_STATE(308)] = 15378, + [SMALL_STATE(309)] = 15441, + [SMALL_STATE(310)] = 15510, + [SMALL_STATE(311)] = 15579, + [SMALL_STATE(312)] = 15638, + [SMALL_STATE(313)] = 15707, + [SMALL_STATE(314)] = 15766, + [SMALL_STATE(315)] = 15858, + [SMALL_STATE(316)] = 15950, + [SMALL_STATE(317)] = 16042, + [SMALL_STATE(318)] = 16134, + [SMALL_STATE(319)] = 16226, + [SMALL_STATE(320)] = 16318, + [SMALL_STATE(321)] = 16410, + [SMALL_STATE(322)] = 16502, + [SMALL_STATE(323)] = 16594, + [SMALL_STATE(324)] = 16686, + [SMALL_STATE(325)] = 16778, + [SMALL_STATE(326)] = 16870, + [SMALL_STATE(327)] = 16962, + [SMALL_STATE(328)] = 17054, + [SMALL_STATE(329)] = 17146, + [SMALL_STATE(330)] = 17238, + [SMALL_STATE(331)] = 17330, + [SMALL_STATE(332)] = 17422, + [SMALL_STATE(333)] = 17514, + [SMALL_STATE(334)] = 17606, + [SMALL_STATE(335)] = 17698, + [SMALL_STATE(336)] = 17790, + [SMALL_STATE(337)] = 17882, + [SMALL_STATE(338)] = 17974, + [SMALL_STATE(339)] = 18066, + [SMALL_STATE(340)] = 18158, + [SMALL_STATE(341)] = 18250, + [SMALL_STATE(342)] = 18342, + [SMALL_STATE(343)] = 18434, + [SMALL_STATE(344)] = 18526, + [SMALL_STATE(345)] = 18618, + [SMALL_STATE(346)] = 18710, + [SMALL_STATE(347)] = 18802, + [SMALL_STATE(348)] = 18894, + [SMALL_STATE(349)] = 18986, + [SMALL_STATE(350)] = 19078, + [SMALL_STATE(351)] = 19170, + [SMALL_STATE(352)] = 19262, + [SMALL_STATE(353)] = 19354, + [SMALL_STATE(354)] = 19446, + [SMALL_STATE(355)] = 19538, + [SMALL_STATE(356)] = 19630, + [SMALL_STATE(357)] = 19722, + [SMALL_STATE(358)] = 19814, + [SMALL_STATE(359)] = 19906, + [SMALL_STATE(360)] = 19998, + [SMALL_STATE(361)] = 20090, + [SMALL_STATE(362)] = 20182, + [SMALL_STATE(363)] = 20274, + [SMALL_STATE(364)] = 20366, + [SMALL_STATE(365)] = 20458, + [SMALL_STATE(366)] = 20550, + [SMALL_STATE(367)] = 20642, + [SMALL_STATE(368)] = 20734, + [SMALL_STATE(369)] = 20826, + [SMALL_STATE(370)] = 20890, + [SMALL_STATE(371)] = 20982, + [SMALL_STATE(372)] = 21074, + [SMALL_STATE(373)] = 21166, + [SMALL_STATE(374)] = 21258, + [SMALL_STATE(375)] = 21350, + [SMALL_STATE(376)] = 21442, + [SMALL_STATE(377)] = 21534, + [SMALL_STATE(378)] = 21626, + [SMALL_STATE(379)] = 21718, + [SMALL_STATE(380)] = 21810, + [SMALL_STATE(381)] = 21902, + [SMALL_STATE(382)] = 21972, + [SMALL_STATE(383)] = 22036, + [SMALL_STATE(384)] = 22128, + [SMALL_STATE(385)] = 22220, + [SMALL_STATE(386)] = 22312, + [SMALL_STATE(387)] = 22404, + [SMALL_STATE(388)] = 22496, + [SMALL_STATE(389)] = 22588, + [SMALL_STATE(390)] = 22682, + [SMALL_STATE(391)] = 22743, + [SMALL_STATE(392)] = 22800, + [SMALL_STATE(393)] = 22857, + [SMALL_STATE(394)] = 22914, + [SMALL_STATE(395)] = 22971, + [SMALL_STATE(396)] = 23028, + [SMALL_STATE(397)] = 23085, + [SMALL_STATE(398)] = 23152, + [SMALL_STATE(399)] = 23209, + [SMALL_STATE(400)] = 23266, + [SMALL_STATE(401)] = 23323, + [SMALL_STATE(402)] = 23380, + [SMALL_STATE(403)] = 23437, + [SMALL_STATE(404)] = 23494, + [SMALL_STATE(405)] = 23551, + [SMALL_STATE(406)] = 23608, + [SMALL_STATE(407)] = 23665, + [SMALL_STATE(408)] = 23722, + [SMALL_STATE(409)] = 23779, + [SMALL_STATE(410)] = 23840, + [SMALL_STATE(411)] = 23897, + [SMALL_STATE(412)] = 23954, + [SMALL_STATE(413)] = 24015, + [SMALL_STATE(414)] = 24072, + [SMALL_STATE(415)] = 24133, + [SMALL_STATE(416)] = 24193, + [SMALL_STATE(417)] = 24257, + [SMALL_STATE(418)] = 24313, + [SMALL_STATE(419)] = 24373, + [SMALL_STATE(420)] = 24429, + [SMALL_STATE(421)] = 24489, + [SMALL_STATE(422)] = 24549, + [SMALL_STATE(423)] = 24605, + [SMALL_STATE(424)] = 24697, + [SMALL_STATE(425)] = 24757, + [SMALL_STATE(426)] = 24817, + [SMALL_STATE(427)] = 24877, + [SMALL_STATE(428)] = 24937, + [SMALL_STATE(429)] = 24993, + [SMALL_STATE(430)] = 25057, + [SMALL_STATE(431)] = 25117, + [SMALL_STATE(432)] = 25177, + [SMALL_STATE(433)] = 25237, + [SMALL_STATE(434)] = 25293, + [SMALL_STATE(435)] = 25385, + [SMALL_STATE(436)] = 25445, + [SMALL_STATE(437)] = 25505, + [SMALL_STATE(438)] = 25565, + [SMALL_STATE(439)] = 25625, + [SMALL_STATE(440)] = 25681, + [SMALL_STATE(441)] = 25745, + [SMALL_STATE(442)] = 25839, + [SMALL_STATE(443)] = 25903, + [SMALL_STATE(444)] = 25959, + [SMALL_STATE(445)] = 26015, + [SMALL_STATE(446)] = 26075, + [SMALL_STATE(447)] = 26136, + [SMALL_STATE(448)] = 26227, + [SMALL_STATE(449)] = 26318, + [SMALL_STATE(450)] = 26409, + [SMALL_STATE(451)] = 26464, + [SMALL_STATE(452)] = 26525, + [SMALL_STATE(453)] = 26586, + [SMALL_STATE(454)] = 26641, + [SMALL_STATE(455)] = 26696, + [SMALL_STATE(456)] = 26751, + [SMALL_STATE(457)] = 26842, + [SMALL_STATE(458)] = 26897, + [SMALL_STATE(459)] = 26988, + [SMALL_STATE(460)] = 27049, + [SMALL_STATE(461)] = 27104, + [SMALL_STATE(462)] = 27159, + [SMALL_STATE(463)] = 27214, + [SMALL_STATE(464)] = 27269, + [SMALL_STATE(465)] = 27324, + [SMALL_STATE(466)] = 27379, + [SMALL_STATE(467)] = 27434, + [SMALL_STATE(468)] = 27525, + [SMALL_STATE(469)] = 27579, + [SMALL_STATE(470)] = 27633, + [SMALL_STATE(471)] = 27687, + [SMALL_STATE(472)] = 27741, + [SMALL_STATE(473)] = 27795, + [SMALL_STATE(474)] = 27849, + [SMALL_STATE(475)] = 27903, + [SMALL_STATE(476)] = 27957, + [SMALL_STATE(477)] = 28011, + [SMALL_STATE(478)] = 28065, + [SMALL_STATE(479)] = 28119, + [SMALL_STATE(480)] = 28173, + [SMALL_STATE(481)] = 28227, + [SMALL_STATE(482)] = 28281, + [SMALL_STATE(483)] = 28369, + [SMALL_STATE(484)] = 28423, + [SMALL_STATE(485)] = 28477, + [SMALL_STATE(486)] = 28531, + [SMALL_STATE(487)] = 28585, + [SMALL_STATE(488)] = 28639, + [SMALL_STATE(489)] = 28693, + [SMALL_STATE(490)] = 28747, + [SMALL_STATE(491)] = 28801, + [SMALL_STATE(492)] = 28855, + [SMALL_STATE(493)] = 28909, + [SMALL_STATE(494)] = 28963, + [SMALL_STATE(495)] = 29017, + [SMALL_STATE(496)] = 29071, + [SMALL_STATE(497)] = 29125, + [SMALL_STATE(498)] = 29179, + [SMALL_STATE(499)] = 29233, + [SMALL_STATE(500)] = 29287, + [SMALL_STATE(501)] = 29341, + [SMALL_STATE(502)] = 29395, + [SMALL_STATE(503)] = 29449, + [SMALL_STATE(504)] = 29503, + [SMALL_STATE(505)] = 29591, + [SMALL_STATE(506)] = 29645, + [SMALL_STATE(507)] = 29699, + [SMALL_STATE(508)] = 29753, + [SMALL_STATE(509)] = 29807, + [SMALL_STATE(510)] = 29861, + [SMALL_STATE(511)] = 29915, + [SMALL_STATE(512)] = 29969, + [SMALL_STATE(513)] = 30023, + [SMALL_STATE(514)] = 30077, + [SMALL_STATE(515)] = 30131, + [SMALL_STATE(516)] = 30185, + [SMALL_STATE(517)] = 30239, + [SMALL_STATE(518)] = 30293, + [SMALL_STATE(519)] = 30347, + [SMALL_STATE(520)] = 30401, + [SMALL_STATE(521)] = 30455, + [SMALL_STATE(522)] = 30509, + [SMALL_STATE(523)] = 30563, + [SMALL_STATE(524)] = 30617, + [SMALL_STATE(525)] = 30671, + [SMALL_STATE(526)] = 30725, + [SMALL_STATE(527)] = 30779, + [SMALL_STATE(528)] = 30833, + [SMALL_STATE(529)] = 30887, + [SMALL_STATE(530)] = 30941, + [SMALL_STATE(531)] = 30995, + [SMALL_STATE(532)] = 31049, + [SMALL_STATE(533)] = 31103, + [SMALL_STATE(534)] = 31157, + [SMALL_STATE(535)] = 31211, + [SMALL_STATE(536)] = 31265, + [SMALL_STATE(537)] = 31319, + [SMALL_STATE(538)] = 31373, + [SMALL_STATE(539)] = 31427, + [SMALL_STATE(540)] = 31481, + [SMALL_STATE(541)] = 31535, + [SMALL_STATE(542)] = 31589, + [SMALL_STATE(543)] = 31643, + [SMALL_STATE(544)] = 31697, + [SMALL_STATE(545)] = 31751, + [SMALL_STATE(546)] = 31805, + [SMALL_STATE(547)] = 31859, + [SMALL_STATE(548)] = 31913, + [SMALL_STATE(549)] = 31967, + [SMALL_STATE(550)] = 32021, + [SMALL_STATE(551)] = 32075, + [SMALL_STATE(552)] = 32129, + [SMALL_STATE(553)] = 32183, + [SMALL_STATE(554)] = 32237, + [SMALL_STATE(555)] = 32291, + [SMALL_STATE(556)] = 32345, + [SMALL_STATE(557)] = 32399, + [SMALL_STATE(558)] = 32453, + [SMALL_STATE(559)] = 32507, + [SMALL_STATE(560)] = 32561, + [SMALL_STATE(561)] = 32615, + [SMALL_STATE(562)] = 32669, + [SMALL_STATE(563)] = 32723, + [SMALL_STATE(564)] = 32777, + [SMALL_STATE(565)] = 32831, + [SMALL_STATE(566)] = 32885, + [SMALL_STATE(567)] = 32939, + [SMALL_STATE(568)] = 32993, + [SMALL_STATE(569)] = 33075, + [SMALL_STATE(570)] = 33130, + [SMALL_STATE(571)] = 33185, + [SMALL_STATE(572)] = 33240, + [SMALL_STATE(573)] = 33295, + [SMALL_STATE(574)] = 33350, + [SMALL_STATE(575)] = 33405, + [SMALL_STATE(576)] = 33481, + [SMALL_STATE(577)] = 33557, + [SMALL_STATE(578)] = 33633, + [SMALL_STATE(579)] = 33709, + [SMALL_STATE(580)] = 33782, + [SMALL_STATE(581)] = 33831, + [SMALL_STATE(582)] = 33880, + [SMALL_STATE(583)] = 33953, + [SMALL_STATE(584)] = 34026, + [SMALL_STATE(585)] = 34075, + [SMALL_STATE(586)] = 34148, + [SMALL_STATE(587)] = 34221, + [SMALL_STATE(588)] = 34294, + [SMALL_STATE(589)] = 34367, + [SMALL_STATE(590)] = 34440, + [SMALL_STATE(591)] = 34513, + [SMALL_STATE(592)] = 34586, + [SMALL_STATE(593)] = 34659, + [SMALL_STATE(594)] = 34732, + [SMALL_STATE(595)] = 34805, + [SMALL_STATE(596)] = 34882, + [SMALL_STATE(597)] = 34955, + [SMALL_STATE(598)] = 35028, + [SMALL_STATE(599)] = 35101, + [SMALL_STATE(600)] = 35174, + [SMALL_STATE(601)] = 35247, + [SMALL_STATE(602)] = 35320, + [SMALL_STATE(603)] = 35393, + [SMALL_STATE(604)] = 35466, + [SMALL_STATE(605)] = 35539, + [SMALL_STATE(606)] = 35612, + [SMALL_STATE(607)] = 35685, + [SMALL_STATE(608)] = 35758, + [SMALL_STATE(609)] = 35831, + [SMALL_STATE(610)] = 35904, + [SMALL_STATE(611)] = 35977, + [SMALL_STATE(612)] = 36050, + [SMALL_STATE(613)] = 36123, + [SMALL_STATE(614)] = 36196, + [SMALL_STATE(615)] = 36269, + [SMALL_STATE(616)] = 36342, + [SMALL_STATE(617)] = 36415, + [SMALL_STATE(618)] = 36488, + [SMALL_STATE(619)] = 36561, + [SMALL_STATE(620)] = 36634, + [SMALL_STATE(621)] = 36707, + [SMALL_STATE(622)] = 36780, + [SMALL_STATE(623)] = 36853, + [SMALL_STATE(624)] = 36930, + [SMALL_STATE(625)] = 36979, + [SMALL_STATE(626)] = 37052, + [SMALL_STATE(627)] = 37125, + [SMALL_STATE(628)] = 37198, + [SMALL_STATE(629)] = 37271, + [SMALL_STATE(630)] = 37319, + [SMALL_STATE(631)] = 37367, + [SMALL_STATE(632)] = 37415, + [SMALL_STATE(633)] = 37463, + [SMALL_STATE(634)] = 37511, + [SMALL_STATE(635)] = 37559, + [SMALL_STATE(636)] = 37607, + [SMALL_STATE(637)] = 37655, + [SMALL_STATE(638)] = 37703, + [SMALL_STATE(639)] = 37751, + [SMALL_STATE(640)] = 37799, + [SMALL_STATE(641)] = 37847, + [SMALL_STATE(642)] = 37895, + [SMALL_STATE(643)] = 37943, + [SMALL_STATE(644)] = 37991, + [SMALL_STATE(645)] = 38039, + [SMALL_STATE(646)] = 38087, + [SMALL_STATE(647)] = 38135, + [SMALL_STATE(648)] = 38183, + [SMALL_STATE(649)] = 38231, + [SMALL_STATE(650)] = 38279, + [SMALL_STATE(651)] = 38327, + [SMALL_STATE(652)] = 38375, + [SMALL_STATE(653)] = 38457, + [SMALL_STATE(654)] = 38539, + [SMALL_STATE(655)] = 38587, + [SMALL_STATE(656)] = 38635, + [SMALL_STATE(657)] = 38683, + [SMALL_STATE(658)] = 38731, + [SMALL_STATE(659)] = 38779, + [SMALL_STATE(660)] = 38827, + [SMALL_STATE(661)] = 38875, + [SMALL_STATE(662)] = 38923, + [SMALL_STATE(663)] = 38980, + [SMALL_STATE(664)] = 39051, + [SMALL_STATE(665)] = 39122, + [SMALL_STATE(666)] = 39193, + [SMALL_STATE(667)] = 39264, + [SMALL_STATE(668)] = 39335, + [SMALL_STATE(669)] = 39400, + [SMALL_STATE(670)] = 39457, + [SMALL_STATE(671)] = 39514, + [SMALL_STATE(672)] = 39571, + [SMALL_STATE(673)] = 39628, + [SMALL_STATE(674)] = 39699, + [SMALL_STATE(675)] = 39768, + [SMALL_STATE(676)] = 39825, + [SMALL_STATE(677)] = 39882, + [SMALL_STATE(678)] = 39945, + [SMALL_STATE(679)] = 40008, + [SMALL_STATE(680)] = 40075, + [SMALL_STATE(681)] = 40140, + [SMALL_STATE(682)] = 40207, + [SMALL_STATE(683)] = 40276, + [SMALL_STATE(684)] = 40337, + [SMALL_STATE(685)] = 40394, + [SMALL_STATE(686)] = 40455, + [SMALL_STATE(687)] = 40505, + [SMALL_STATE(688)] = 40553, + [SMALL_STATE(689)] = 40603, + [SMALL_STATE(690)] = 40653, + [SMALL_STATE(691)] = 40699, + [SMALL_STATE(692)] = 40749, + [SMALL_STATE(693)] = 40797, + [SMALL_STATE(694)] = 40845, + [SMALL_STATE(695)] = 40893, + [SMALL_STATE(696)] = 40939, + [SMALL_STATE(697)] = 40988, + [SMALL_STATE(698)] = 41033, + [SMALL_STATE(699)] = 41082, + [SMALL_STATE(700)] = 41131, + [SMALL_STATE(701)] = 41180, + [SMALL_STATE(702)] = 41229, + [SMALL_STATE(703)] = 41308, + [SMALL_STATE(704)] = 41353, + [SMALL_STATE(705)] = 41402, + [SMALL_STATE(706)] = 41466, + [SMALL_STATE(707)] = 41534, + [SMALL_STATE(708)] = 41592, + [SMALL_STATE(709)] = 41646, + [SMALL_STATE(710)] = 41690, + [SMALL_STATE(711)] = 41752, + [SMALL_STATE(712)] = 41806, + [SMALL_STATE(713)] = 41860, + [SMALL_STATE(714)] = 41928, + [SMALL_STATE(715)] = 41994, + [SMALL_STATE(716)] = 42038, + [SMALL_STATE(717)] = 42082, + [SMALL_STATE(718)] = 42150, + [SMALL_STATE(719)] = 42226, + [SMALL_STATE(720)] = 42270, + [SMALL_STATE(721)] = 42318, + [SMALL_STATE(722)] = 42378, + [SMALL_STATE(723)] = 42426, + [SMALL_STATE(724)] = 42480, + [SMALL_STATE(725)] = 42525, + [SMALL_STATE(726)] = 42568, + [SMALL_STATE(727)] = 42611, + [SMALL_STATE(728)] = 42656, + [SMALL_STATE(729)] = 42737, + [SMALL_STATE(730)] = 42784, + [SMALL_STATE(731)] = 42829, + [SMALL_STATE(732)] = 42874, + [SMALL_STATE(733)] = 42919, + [SMALL_STATE(734)] = 43000, + [SMALL_STATE(735)] = 43067, + [SMALL_STATE(736)] = 43112, + [SMALL_STATE(737)] = 43179, + [SMALL_STATE(738)] = 43260, + [SMALL_STATE(739)] = 43305, + [SMALL_STATE(740)] = 43366, + [SMALL_STATE(741)] = 43411, + [SMALL_STATE(742)] = 43474, + [SMALL_STATE(743)] = 43527, + [SMALL_STATE(744)] = 43570, + [SMALL_STATE(745)] = 43627, + [SMALL_STATE(746)] = 43692, + [SMALL_STATE(747)] = 43745, + [SMALL_STATE(748)] = 43792, + [SMALL_STATE(749)] = 43845, + [SMALL_STATE(750)] = 43892, + [SMALL_STATE(751)] = 43973, + [SMALL_STATE(752)] = 44040, + [SMALL_STATE(753)] = 44099, + [SMALL_STATE(754)] = 44152, + [SMALL_STATE(755)] = 44199, + [SMALL_STATE(756)] = 44242, + [SMALL_STATE(757)] = 44286, + [SMALL_STATE(758)] = 44328, + [SMALL_STATE(759)] = 44370, + [SMALL_STATE(760)] = 44412, + [SMALL_STATE(761)] = 44454, + [SMALL_STATE(762)] = 44496, + [SMALL_STATE(763)] = 44540, + [SMALL_STATE(764)] = 44582, + [SMALL_STATE(765)] = 44624, + [SMALL_STATE(766)] = 44704, + [SMALL_STATE(767)] = 44782, + [SMALL_STATE(768)] = 44824, + [SMALL_STATE(769)] = 44902, + [SMALL_STATE(770)] = 44944, + [SMALL_STATE(771)] = 44988, + [SMALL_STATE(772)] = 45066, + [SMALL_STATE(773)] = 45108, + [SMALL_STATE(774)] = 45186, + [SMALL_STATE(775)] = 45264, + [SMALL_STATE(776)] = 45306, + [SMALL_STATE(777)] = 45348, + [SMALL_STATE(778)] = 45390, + [SMALL_STATE(779)] = 45434, + [SMALL_STATE(780)] = 45476, + [SMALL_STATE(781)] = 45518, + [SMALL_STATE(782)] = 45560, + [SMALL_STATE(783)] = 45602, + [SMALL_STATE(784)] = 45644, + [SMALL_STATE(785)] = 45686, + [SMALL_STATE(786)] = 45728, + [SMALL_STATE(787)] = 45770, + [SMALL_STATE(788)] = 45812, + [SMALL_STATE(789)] = 45854, + [SMALL_STATE(790)] = 45896, + [SMALL_STATE(791)] = 45938, + [SMALL_STATE(792)] = 45980, + [SMALL_STATE(793)] = 46022, + [SMALL_STATE(794)] = 46064, + [SMALL_STATE(795)] = 46106, + [SMALL_STATE(796)] = 46148, + [SMALL_STATE(797)] = 46192, + [SMALL_STATE(798)] = 46234, + [SMALL_STATE(799)] = 46276, + [SMALL_STATE(800)] = 46318, + [SMALL_STATE(801)] = 46359, + [SMALL_STATE(802)] = 46400, + [SMALL_STATE(803)] = 46441, + [SMALL_STATE(804)] = 46486, + [SMALL_STATE(805)] = 46565, + [SMALL_STATE(806)] = 46606, + [SMALL_STATE(807)] = 46647, + [SMALL_STATE(808)] = 46722, + [SMALL_STATE(809)] = 46763, + [SMALL_STATE(810)] = 46804, + [SMALL_STATE(811)] = 46883, + [SMALL_STATE(812)] = 46924, + [SMALL_STATE(813)] = 46965, + [SMALL_STATE(814)] = 47006, + [SMALL_STATE(815)] = 47047, + [SMALL_STATE(816)] = 47088, + [SMALL_STATE(817)] = 47129, + [SMALL_STATE(818)] = 47170, + [SMALL_STATE(819)] = 47211, + [SMALL_STATE(820)] = 47252, + [SMALL_STATE(821)] = 47293, + [SMALL_STATE(822)] = 47334, + [SMALL_STATE(823)] = 47375, + [SMALL_STATE(824)] = 47454, + [SMALL_STATE(825)] = 47495, + [SMALL_STATE(826)] = 47540, + [SMALL_STATE(827)] = 47581, + [SMALL_STATE(828)] = 47622, + [SMALL_STATE(829)] = 47663, + [SMALL_STATE(830)] = 47704, + [SMALL_STATE(831)] = 47745, + [SMALL_STATE(832)] = 47786, + [SMALL_STATE(833)] = 47827, + [SMALL_STATE(834)] = 47868, + [SMALL_STATE(835)] = 47909, + [SMALL_STATE(836)] = 47950, + [SMALL_STATE(837)] = 47991, + [SMALL_STATE(838)] = 48032, + [SMALL_STATE(839)] = 48073, + [SMALL_STATE(840)] = 48146, + [SMALL_STATE(841)] = 48216, + [SMALL_STATE(842)] = 48286, + [SMALL_STATE(843)] = 48348, + [SMALL_STATE(844)] = 48410, + [SMALL_STATE(845)] = 48450, + [SMALL_STATE(846)] = 48490, + [SMALL_STATE(847)] = 48530, + [SMALL_STATE(848)] = 48570, + [SMALL_STATE(849)] = 48600, + [SMALL_STATE(850)] = 48625, + [SMALL_STATE(851)] = 48662, + [SMALL_STATE(852)] = 48715, + [SMALL_STATE(853)] = 48744, + [SMALL_STATE(854)] = 48769, + [SMALL_STATE(855)] = 48794, + [SMALL_STATE(856)] = 48847, + [SMALL_STATE(857)] = 48884, + [SMALL_STATE(858)] = 48909, + [SMALL_STATE(859)] = 48962, + [SMALL_STATE(860)] = 48991, + [SMALL_STATE(861)] = 49025, + [SMALL_STATE(862)] = 49053, + [SMALL_STATE(863)] = 49099, + [SMALL_STATE(864)] = 49133, + [SMALL_STATE(865)] = 49176, + [SMALL_STATE(866)] = 49219, + [SMALL_STATE(867)] = 49262, + [SMALL_STATE(868)] = 49293, + [SMALL_STATE(869)] = 49336, + [SMALL_STATE(870)] = 49379, + [SMALL_STATE(871)] = 49423, + [SMALL_STATE(872)] = 49463, + [SMALL_STATE(873)] = 49500, + [SMALL_STATE(874)] = 49537, + [SMALL_STATE(875)] = 49562, + [SMALL_STATE(876)] = 49599, + [SMALL_STATE(877)] = 49636, + [SMALL_STATE(878)] = 49670, + [SMALL_STATE(879)] = 49704, + [SMALL_STATE(880)] = 49726, + [SMALL_STATE(881)] = 49748, + [SMALL_STATE(882)] = 49770, + [SMALL_STATE(883)] = 49793, + [SMALL_STATE(884)] = 49814, + [SMALL_STATE(885)] = 49837, + [SMALL_STATE(886)] = 49864, + [SMALL_STATE(887)] = 49901, + [SMALL_STATE(888)] = 49938, + [SMALL_STATE(889)] = 49963, + [SMALL_STATE(890)] = 49986, + [SMALL_STATE(891)] = 50009, + [SMALL_STATE(892)] = 50030, + [SMALL_STATE(893)] = 50051, + [SMALL_STATE(894)] = 50074, + [SMALL_STATE(895)] = 50091, + [SMALL_STATE(896)] = 50114, + [SMALL_STATE(897)] = 50135, + [SMALL_STATE(898)] = 50156, + [SMALL_STATE(899)] = 50181, + [SMALL_STATE(900)] = 50204, + [SMALL_STATE(901)] = 50223, + [SMALL_STATE(902)] = 50244, + [SMALL_STATE(903)] = 50267, + [SMALL_STATE(904)] = 50304, + [SMALL_STATE(905)] = 50329, + [SMALL_STATE(906)] = 50366, + [SMALL_STATE(907)] = 50396, + [SMALL_STATE(908)] = 50426, + [SMALL_STATE(909)] = 50460, + [SMALL_STATE(910)] = 50494, + [SMALL_STATE(911)] = 50516, + [SMALL_STATE(912)] = 50550, + [SMALL_STATE(913)] = 50584, + [SMALL_STATE(914)] = 50614, + [SMALL_STATE(915)] = 50644, + [SMALL_STATE(916)] = 50674, + [SMALL_STATE(917)] = 50704, + [SMALL_STATE(918)] = 50722, + [SMALL_STATE(919)] = 50752, + [SMALL_STATE(920)] = 50782, + [SMALL_STATE(921)] = 50812, + [SMALL_STATE(922)] = 50846, + [SMALL_STATE(923)] = 50876, + [SMALL_STATE(924)] = 50906, + [SMALL_STATE(925)] = 50924, + [SMALL_STATE(926)] = 50954, + [SMALL_STATE(927)] = 50984, + [SMALL_STATE(928)] = 51006, + [SMALL_STATE(929)] = 51040, + [SMALL_STATE(930)] = 51070, + [SMALL_STATE(931)] = 51104, + [SMALL_STATE(932)] = 51126, + [SMALL_STATE(933)] = 51156, + [SMALL_STATE(934)] = 51190, + [SMALL_STATE(935)] = 51212, + [SMALL_STATE(936)] = 51246, + [SMALL_STATE(937)] = 51269, + [SMALL_STATE(938)] = 51288, + [SMALL_STATE(939)] = 51307, + [SMALL_STATE(940)] = 51326, + [SMALL_STATE(941)] = 51351, + [SMALL_STATE(942)] = 51370, + [SMALL_STATE(943)] = 51393, + [SMALL_STATE(944)] = 51416, + [SMALL_STATE(945)] = 51435, + [SMALL_STATE(946)] = 51454, + [SMALL_STATE(947)] = 51468, + [SMALL_STATE(948)] = 51482, + [SMALL_STATE(949)] = 51496, + [SMALL_STATE(950)] = 51510, + [SMALL_STATE(951)] = 51524, + [SMALL_STATE(952)] = 51542, + [SMALL_STATE(953)] = 51556, + [SMALL_STATE(954)] = 51576, + [SMALL_STATE(955)] = 51590, + [SMALL_STATE(956)] = 51604, + [SMALL_STATE(957)] = 51618, + [SMALL_STATE(958)] = 51632, + [SMALL_STATE(959)] = 51650, + [SMALL_STATE(960)] = 51664, + [SMALL_STATE(961)] = 51688, + [SMALL_STATE(962)] = 51712, + [SMALL_STATE(963)] = 51726, + [SMALL_STATE(964)] = 51746, + [SMALL_STATE(965)] = 51760, + [SMALL_STATE(966)] = 51774, + [SMALL_STATE(967)] = 51788, + [SMALL_STATE(968)] = 51806, + [SMALL_STATE(969)] = 51820, + [SMALL_STATE(970)] = 51838, + [SMALL_STATE(971)] = 51854, + [SMALL_STATE(972)] = 51868, + [SMALL_STATE(973)] = 51882, + [SMALL_STATE(974)] = 51900, + [SMALL_STATE(975)] = 51914, + [SMALL_STATE(976)] = 51928, + [SMALL_STATE(977)] = 51946, + [SMALL_STATE(978)] = 51960, + [SMALL_STATE(979)] = 51978, + [SMALL_STATE(980)] = 51998, + [SMALL_STATE(981)] = 52014, + [SMALL_STATE(982)] = 52036, + [SMALL_STATE(983)] = 52054, + [SMALL_STATE(984)] = 52068, + [SMALL_STATE(985)] = 52086, + [SMALL_STATE(986)] = 52106, + [SMALL_STATE(987)] = 52124, + [SMALL_STATE(988)] = 52142, + [SMALL_STATE(989)] = 52160, + [SMALL_STATE(990)] = 52186, + [SMALL_STATE(991)] = 52200, + [SMALL_STATE(992)] = 52214, + [SMALL_STATE(993)] = 52233, + [SMALL_STATE(994)] = 52252, + [SMALL_STATE(995)] = 52269, + [SMALL_STATE(996)] = 52290, + [SMALL_STATE(997)] = 52303, + [SMALL_STATE(998)] = 52324, + [SMALL_STATE(999)] = 52345, + [SMALL_STATE(1000)] = 52366, + [SMALL_STATE(1001)] = 52391, + [SMALL_STATE(1002)] = 52404, + [SMALL_STATE(1003)] = 52423, + [SMALL_STATE(1004)] = 52442, + [SMALL_STATE(1005)] = 52461, + [SMALL_STATE(1006)] = 52484, + [SMALL_STATE(1007)] = 52509, + [SMALL_STATE(1008)] = 52528, + [SMALL_STATE(1009)] = 52551, + [SMALL_STATE(1010)] = 52574, + [SMALL_STATE(1011)] = 52587, + [SMALL_STATE(1012)] = 52608, + [SMALL_STATE(1013)] = 52631, + [SMALL_STATE(1014)] = 52654, + [SMALL_STATE(1015)] = 52669, + [SMALL_STATE(1016)] = 52688, + [SMALL_STATE(1017)] = 52707, + [SMALL_STATE(1018)] = 52732, + [SMALL_STATE(1019)] = 52745, + [SMALL_STATE(1020)] = 52758, + [SMALL_STATE(1021)] = 52771, + [SMALL_STATE(1022)] = 52788, + [SMALL_STATE(1023)] = 52807, + [SMALL_STATE(1024)] = 52820, + [SMALL_STATE(1025)] = 52835, + [SMALL_STATE(1026)] = 52860, + [SMALL_STATE(1027)] = 52883, + [SMALL_STATE(1028)] = 52900, + [SMALL_STATE(1029)] = 52925, + [SMALL_STATE(1030)] = 52944, + [SMALL_STATE(1031)] = 52967, + [SMALL_STATE(1032)] = 52990, + [SMALL_STATE(1033)] = 53013, + [SMALL_STATE(1034)] = 53038, + [SMALL_STATE(1035)] = 53063, + [SMALL_STATE(1036)] = 53084, + [SMALL_STATE(1037)] = 53109, + [SMALL_STATE(1038)] = 53130, + [SMALL_STATE(1039)] = 53146, + [SMALL_STATE(1040)] = 53162, + [SMALL_STATE(1041)] = 53184, + [SMALL_STATE(1042)] = 53200, + [SMALL_STATE(1043)] = 53220, + [SMALL_STATE(1044)] = 53238, + [SMALL_STATE(1045)] = 53252, + [SMALL_STATE(1046)] = 53268, + [SMALL_STATE(1047)] = 53282, + [SMALL_STATE(1048)] = 53298, + [SMALL_STATE(1049)] = 53312, + [SMALL_STATE(1050)] = 53332, + [SMALL_STATE(1051)] = 53354, + [SMALL_STATE(1052)] = 53370, + [SMALL_STATE(1053)] = 53392, + [SMALL_STATE(1054)] = 53410, + [SMALL_STATE(1055)] = 53424, + [SMALL_STATE(1056)] = 53446, + [SMALL_STATE(1057)] = 53460, + [SMALL_STATE(1058)] = 53476, + [SMALL_STATE(1059)] = 53494, + [SMALL_STATE(1060)] = 53512, + [SMALL_STATE(1061)] = 53534, + [SMALL_STATE(1062)] = 53546, + [SMALL_STATE(1063)] = 53566, + [SMALL_STATE(1064)] = 53584, + [SMALL_STATE(1065)] = 53602, + [SMALL_STATE(1066)] = 53624, + [SMALL_STATE(1067)] = 53646, + [SMALL_STATE(1068)] = 53660, + [SMALL_STATE(1069)] = 53678, + [SMALL_STATE(1070)] = 53696, + [SMALL_STATE(1071)] = 53708, + [SMALL_STATE(1072)] = 53728, + [SMALL_STATE(1073)] = 53747, + [SMALL_STATE(1074)] = 53764, + [SMALL_STATE(1075)] = 53783, + [SMALL_STATE(1076)] = 53800, + [SMALL_STATE(1077)] = 53819, + [SMALL_STATE(1078)] = 53834, + [SMALL_STATE(1079)] = 53849, + [SMALL_STATE(1080)] = 53864, + [SMALL_STATE(1081)] = 53881, + [SMALL_STATE(1082)] = 53898, + [SMALL_STATE(1083)] = 53913, + [SMALL_STATE(1084)] = 53930, + [SMALL_STATE(1085)] = 53949, + [SMALL_STATE(1086)] = 53966, + [SMALL_STATE(1087)] = 53977, + [SMALL_STATE(1088)] = 53994, + [SMALL_STATE(1089)] = 54013, + [SMALL_STATE(1090)] = 54024, + [SMALL_STATE(1091)] = 54041, + [SMALL_STATE(1092)] = 54058, + [SMALL_STATE(1093)] = 54075, + [SMALL_STATE(1094)] = 54092, + [SMALL_STATE(1095)] = 54109, + [SMALL_STATE(1096)] = 54124, + [SMALL_STATE(1097)] = 54139, + [SMALL_STATE(1098)] = 54156, + [SMALL_STATE(1099)] = 54175, + [SMALL_STATE(1100)] = 54190, + [SMALL_STATE(1101)] = 54207, + [SMALL_STATE(1102)] = 54224, + [SMALL_STATE(1103)] = 54241, + [SMALL_STATE(1104)] = 54260, + [SMALL_STATE(1105)] = 54279, + [SMALL_STATE(1106)] = 54296, + [SMALL_STATE(1107)] = 54313, + [SMALL_STATE(1108)] = 54324, + [SMALL_STATE(1109)] = 54340, + [SMALL_STATE(1110)] = 54354, + [SMALL_STATE(1111)] = 54368, + [SMALL_STATE(1112)] = 54382, + [SMALL_STATE(1113)] = 54398, + [SMALL_STATE(1114)] = 54414, + [SMALL_STATE(1115)] = 54428, + [SMALL_STATE(1116)] = 54442, + [SMALL_STATE(1117)] = 54456, + [SMALL_STATE(1118)] = 54466, + [SMALL_STATE(1119)] = 54476, + [SMALL_STATE(1120)] = 54490, + [SMALL_STATE(1121)] = 54504, + [SMALL_STATE(1122)] = 54516, + [SMALL_STATE(1123)] = 54526, + [SMALL_STATE(1124)] = 54536, + [SMALL_STATE(1125)] = 54550, + [SMALL_STATE(1126)] = 54566, + [SMALL_STATE(1127)] = 54582, + [SMALL_STATE(1128)] = 54598, + [SMALL_STATE(1129)] = 54614, + [SMALL_STATE(1130)] = 54630, + [SMALL_STATE(1131)] = 54644, + [SMALL_STATE(1132)] = 54658, + [SMALL_STATE(1133)] = 54670, + [SMALL_STATE(1134)] = 54684, + [SMALL_STATE(1135)] = 54698, + [SMALL_STATE(1136)] = 54712, + [SMALL_STATE(1137)] = 54728, + [SMALL_STATE(1138)] = 54742, + [SMALL_STATE(1139)] = 54756, + [SMALL_STATE(1140)] = 54772, + [SMALL_STATE(1141)] = 54788, + [SMALL_STATE(1142)] = 54802, + [SMALL_STATE(1143)] = 54818, + [SMALL_STATE(1144)] = 54832, + [SMALL_STATE(1145)] = 54846, + [SMALL_STATE(1146)] = 54860, + [SMALL_STATE(1147)] = 54876, + [SMALL_STATE(1148)] = 54890, + [SMALL_STATE(1149)] = 54904, + [SMALL_STATE(1150)] = 54920, + [SMALL_STATE(1151)] = 54936, + [SMALL_STATE(1152)] = 54952, + [SMALL_STATE(1153)] = 54966, + [SMALL_STATE(1154)] = 54982, + [SMALL_STATE(1155)] = 54998, + [SMALL_STATE(1156)] = 55012, + [SMALL_STATE(1157)] = 55026, + [SMALL_STATE(1158)] = 55040, + [SMALL_STATE(1159)] = 55056, + [SMALL_STATE(1160)] = 55070, + [SMALL_STATE(1161)] = 55086, + [SMALL_STATE(1162)] = 55102, + [SMALL_STATE(1163)] = 55118, + [SMALL_STATE(1164)] = 55134, + [SMALL_STATE(1165)] = 55150, + [SMALL_STATE(1166)] = 55166, + [SMALL_STATE(1167)] = 55182, + [SMALL_STATE(1168)] = 55196, + [SMALL_STATE(1169)] = 55206, + [SMALL_STATE(1170)] = 55222, + [SMALL_STATE(1171)] = 55238, + [SMALL_STATE(1172)] = 55252, + [SMALL_STATE(1173)] = 55268, + [SMALL_STATE(1174)] = 55278, + [SMALL_STATE(1175)] = 55292, + [SMALL_STATE(1176)] = 55306, + [SMALL_STATE(1177)] = 55320, + [SMALL_STATE(1178)] = 55334, + [SMALL_STATE(1179)] = 55348, + [SMALL_STATE(1180)] = 55364, + [SMALL_STATE(1181)] = 55377, + [SMALL_STATE(1182)] = 55390, + [SMALL_STATE(1183)] = 55403, + [SMALL_STATE(1184)] = 55416, + [SMALL_STATE(1185)] = 55427, + [SMALL_STATE(1186)] = 55436, + [SMALL_STATE(1187)] = 55445, + [SMALL_STATE(1188)] = 55458, + [SMALL_STATE(1189)] = 55471, + [SMALL_STATE(1190)] = 55484, + [SMALL_STATE(1191)] = 55497, + [SMALL_STATE(1192)] = 55508, + [SMALL_STATE(1193)] = 55521, + [SMALL_STATE(1194)] = 55534, + [SMALL_STATE(1195)] = 55547, + [SMALL_STATE(1196)] = 55556, + [SMALL_STATE(1197)] = 55569, + [SMALL_STATE(1198)] = 55582, + [SMALL_STATE(1199)] = 55595, + [SMALL_STATE(1200)] = 55604, + [SMALL_STATE(1201)] = 55617, + [SMALL_STATE(1202)] = 55630, + [SMALL_STATE(1203)] = 55643, + [SMALL_STATE(1204)] = 55656, + [SMALL_STATE(1205)] = 55669, + [SMALL_STATE(1206)] = 55682, + [SMALL_STATE(1207)] = 55695, + [SMALL_STATE(1208)] = 55708, + [SMALL_STATE(1209)] = 55721, + [SMALL_STATE(1210)] = 55730, + [SMALL_STATE(1211)] = 55743, + [SMALL_STATE(1212)] = 55756, + [SMALL_STATE(1213)] = 55769, + [SMALL_STATE(1214)] = 55782, + [SMALL_STATE(1215)] = 55795, + [SMALL_STATE(1216)] = 55808, + [SMALL_STATE(1217)] = 55821, + [SMALL_STATE(1218)] = 55832, + [SMALL_STATE(1219)] = 55845, + [SMALL_STATE(1220)] = 55858, + [SMALL_STATE(1221)] = 55871, + [SMALL_STATE(1222)] = 55884, + [SMALL_STATE(1223)] = 55895, + [SMALL_STATE(1224)] = 55908, + [SMALL_STATE(1225)] = 55921, + [SMALL_STATE(1226)] = 55934, + [SMALL_STATE(1227)] = 55945, + [SMALL_STATE(1228)] = 55958, + [SMALL_STATE(1229)] = 55969, + [SMALL_STATE(1230)] = 55982, + [SMALL_STATE(1231)] = 55995, + [SMALL_STATE(1232)] = 56008, + [SMALL_STATE(1233)] = 56021, + [SMALL_STATE(1234)] = 56034, + [SMALL_STATE(1235)] = 56047, + [SMALL_STATE(1236)] = 56060, + [SMALL_STATE(1237)] = 56073, + [SMALL_STATE(1238)] = 56086, + [SMALL_STATE(1239)] = 56099, + [SMALL_STATE(1240)] = 56112, + [SMALL_STATE(1241)] = 56125, + [SMALL_STATE(1242)] = 56136, + [SMALL_STATE(1243)] = 56149, + [SMALL_STATE(1244)] = 56162, + [SMALL_STATE(1245)] = 56175, + [SMALL_STATE(1246)] = 56186, + [SMALL_STATE(1247)] = 56199, + [SMALL_STATE(1248)] = 56212, + [SMALL_STATE(1249)] = 56225, + [SMALL_STATE(1250)] = 56238, + [SMALL_STATE(1251)] = 56251, + [SMALL_STATE(1252)] = 56264, + [SMALL_STATE(1253)] = 56277, + [SMALL_STATE(1254)] = 56290, + [SMALL_STATE(1255)] = 56301, + [SMALL_STATE(1256)] = 56312, + [SMALL_STATE(1257)] = 56323, + [SMALL_STATE(1258)] = 56336, + [SMALL_STATE(1259)] = 56349, + [SMALL_STATE(1260)] = 56362, + [SMALL_STATE(1261)] = 56375, + [SMALL_STATE(1262)] = 56388, + [SMALL_STATE(1263)] = 56397, + [SMALL_STATE(1264)] = 56410, + [SMALL_STATE(1265)] = 56423, + [SMALL_STATE(1266)] = 56436, + [SMALL_STATE(1267)] = 56449, + [SMALL_STATE(1268)] = 56462, + [SMALL_STATE(1269)] = 56471, + [SMALL_STATE(1270)] = 56484, + [SMALL_STATE(1271)] = 56497, + [SMALL_STATE(1272)] = 56508, + [SMALL_STATE(1273)] = 56521, + [SMALL_STATE(1274)] = 56534, + [SMALL_STATE(1275)] = 56547, + [SMALL_STATE(1276)] = 56560, + [SMALL_STATE(1277)] = 56573, + [SMALL_STATE(1278)] = 56586, + [SMALL_STATE(1279)] = 56595, + [SMALL_STATE(1280)] = 56608, + [SMALL_STATE(1281)] = 56621, + [SMALL_STATE(1282)] = 56634, + [SMALL_STATE(1283)] = 56643, + [SMALL_STATE(1284)] = 56656, + [SMALL_STATE(1285)] = 56669, + [SMALL_STATE(1286)] = 56682, + [SMALL_STATE(1287)] = 56695, + [SMALL_STATE(1288)] = 56708, + [SMALL_STATE(1289)] = 56717, + [SMALL_STATE(1290)] = 56726, + [SMALL_STATE(1291)] = 56735, + [SMALL_STATE(1292)] = 56748, + [SMALL_STATE(1293)] = 56757, + [SMALL_STATE(1294)] = 56770, + [SMALL_STATE(1295)] = 56783, + [SMALL_STATE(1296)] = 56796, + [SMALL_STATE(1297)] = 56809, + [SMALL_STATE(1298)] = 56822, + [SMALL_STATE(1299)] = 56831, + [SMALL_STATE(1300)] = 56844, + [SMALL_STATE(1301)] = 56857, + [SMALL_STATE(1302)] = 56870, + [SMALL_STATE(1303)] = 56883, + [SMALL_STATE(1304)] = 56896, + [SMALL_STATE(1305)] = 56909, + [SMALL_STATE(1306)] = 56922, + [SMALL_STATE(1307)] = 56935, + [SMALL_STATE(1308)] = 56944, + [SMALL_STATE(1309)] = 56957, + [SMALL_STATE(1310)] = 56970, + [SMALL_STATE(1311)] = 56978, + [SMALL_STATE(1312)] = 56986, + [SMALL_STATE(1313)] = 56994, + [SMALL_STATE(1314)] = 57004, + [SMALL_STATE(1315)] = 57012, + [SMALL_STATE(1316)] = 57020, + [SMALL_STATE(1317)] = 57028, + [SMALL_STATE(1318)] = 57038, + [SMALL_STATE(1319)] = 57046, + [SMALL_STATE(1320)] = 57056, + [SMALL_STATE(1321)] = 57066, + [SMALL_STATE(1322)] = 57074, + [SMALL_STATE(1323)] = 57084, + [SMALL_STATE(1324)] = 57092, + [SMALL_STATE(1325)] = 57100, + [SMALL_STATE(1326)] = 57108, + [SMALL_STATE(1327)] = 57116, + [SMALL_STATE(1328)] = 57124, + [SMALL_STATE(1329)] = 57134, + [SMALL_STATE(1330)] = 57142, + [SMALL_STATE(1331)] = 57150, + [SMALL_STATE(1332)] = 57158, + [SMALL_STATE(1333)] = 57166, + [SMALL_STATE(1334)] = 57174, + [SMALL_STATE(1335)] = 57182, + [SMALL_STATE(1336)] = 57190, + [SMALL_STATE(1337)] = 57200, + [SMALL_STATE(1338)] = 57210, + [SMALL_STATE(1339)] = 57218, + [SMALL_STATE(1340)] = 57228, + [SMALL_STATE(1341)] = 57236, + [SMALL_STATE(1342)] = 57246, + [SMALL_STATE(1343)] = 57256, + [SMALL_STATE(1344)] = 57264, + [SMALL_STATE(1345)] = 57272, + [SMALL_STATE(1346)] = 57282, + [SMALL_STATE(1347)] = 57292, + [SMALL_STATE(1348)] = 57302, + [SMALL_STATE(1349)] = 57312, + [SMALL_STATE(1350)] = 57322, + [SMALL_STATE(1351)] = 57332, + [SMALL_STATE(1352)] = 57342, + [SMALL_STATE(1353)] = 57350, + [SMALL_STATE(1354)] = 57360, + [SMALL_STATE(1355)] = 57370, + [SMALL_STATE(1356)] = 57380, + [SMALL_STATE(1357)] = 57388, + [SMALL_STATE(1358)] = 57396, + [SMALL_STATE(1359)] = 57404, + [SMALL_STATE(1360)] = 57414, + [SMALL_STATE(1361)] = 57422, + [SMALL_STATE(1362)] = 57432, + [SMALL_STATE(1363)] = 57442, + [SMALL_STATE(1364)] = 57450, + [SMALL_STATE(1365)] = 57458, + [SMALL_STATE(1366)] = 57466, + [SMALL_STATE(1367)] = 57476, + [SMALL_STATE(1368)] = 57486, + [SMALL_STATE(1369)] = 57494, + [SMALL_STATE(1370)] = 57502, + [SMALL_STATE(1371)] = 57510, + [SMALL_STATE(1372)] = 57518, + [SMALL_STATE(1373)] = 57526, + [SMALL_STATE(1374)] = 57534, + [SMALL_STATE(1375)] = 57542, + [SMALL_STATE(1376)] = 57552, + [SMALL_STATE(1377)] = 57562, + [SMALL_STATE(1378)] = 57570, + [SMALL_STATE(1379)] = 57578, + [SMALL_STATE(1380)] = 57588, + [SMALL_STATE(1381)] = 57596, + [SMALL_STATE(1382)] = 57604, + [SMALL_STATE(1383)] = 57614, + [SMALL_STATE(1384)] = 57622, + [SMALL_STATE(1385)] = 57630, + [SMALL_STATE(1386)] = 57637, + [SMALL_STATE(1387)] = 57644, + [SMALL_STATE(1388)] = 57651, + [SMALL_STATE(1389)] = 57658, + [SMALL_STATE(1390)] = 57665, + [SMALL_STATE(1391)] = 57672, + [SMALL_STATE(1392)] = 57679, + [SMALL_STATE(1393)] = 57686, + [SMALL_STATE(1394)] = 57693, + [SMALL_STATE(1395)] = 57700, + [SMALL_STATE(1396)] = 57707, + [SMALL_STATE(1397)] = 57714, + [SMALL_STATE(1398)] = 57721, + [SMALL_STATE(1399)] = 57728, + [SMALL_STATE(1400)] = 57735, + [SMALL_STATE(1401)] = 57742, + [SMALL_STATE(1402)] = 57749, + [SMALL_STATE(1403)] = 57756, + [SMALL_STATE(1404)] = 57763, + [SMALL_STATE(1405)] = 57770, + [SMALL_STATE(1406)] = 57777, + [SMALL_STATE(1407)] = 57784, + [SMALL_STATE(1408)] = 57791, + [SMALL_STATE(1409)] = 57798, + [SMALL_STATE(1410)] = 57805, + [SMALL_STATE(1411)] = 57812, + [SMALL_STATE(1412)] = 57819, + [SMALL_STATE(1413)] = 57826, + [SMALL_STATE(1414)] = 57833, + [SMALL_STATE(1415)] = 57840, + [SMALL_STATE(1416)] = 57847, + [SMALL_STATE(1417)] = 57854, + [SMALL_STATE(1418)] = 57861, + [SMALL_STATE(1419)] = 57868, + [SMALL_STATE(1420)] = 57875, + [SMALL_STATE(1421)] = 57882, + [SMALL_STATE(1422)] = 57889, + [SMALL_STATE(1423)] = 57896, + [SMALL_STATE(1424)] = 57903, + [SMALL_STATE(1425)] = 57910, + [SMALL_STATE(1426)] = 57917, + [SMALL_STATE(1427)] = 57924, + [SMALL_STATE(1428)] = 57931, + [SMALL_STATE(1429)] = 57938, + [SMALL_STATE(1430)] = 57945, + [SMALL_STATE(1431)] = 57952, + [SMALL_STATE(1432)] = 57959, + [SMALL_STATE(1433)] = 57966, + [SMALL_STATE(1434)] = 57973, + [SMALL_STATE(1435)] = 57980, + [SMALL_STATE(1436)] = 57987, + [SMALL_STATE(1437)] = 57994, + [SMALL_STATE(1438)] = 58001, + [SMALL_STATE(1439)] = 58008, + [SMALL_STATE(1440)] = 58015, + [SMALL_STATE(1441)] = 58022, + [SMALL_STATE(1442)] = 58029, + [SMALL_STATE(1443)] = 58036, + [SMALL_STATE(1444)] = 58043, + [SMALL_STATE(1445)] = 58050, + [SMALL_STATE(1446)] = 58057, + [SMALL_STATE(1447)] = 58064, + [SMALL_STATE(1448)] = 58071, + [SMALL_STATE(1449)] = 58078, + [SMALL_STATE(1450)] = 58085, + [SMALL_STATE(1451)] = 58092, + [SMALL_STATE(1452)] = 58099, + [SMALL_STATE(1453)] = 58106, + [SMALL_STATE(1454)] = 58113, + [SMALL_STATE(1455)] = 58120, + [SMALL_STATE(1456)] = 58127, + [SMALL_STATE(1457)] = 58134, + [SMALL_STATE(1458)] = 58141, + [SMALL_STATE(1459)] = 58148, + [SMALL_STATE(1460)] = 58155, + [SMALL_STATE(1461)] = 58162, + [SMALL_STATE(1462)] = 58169, + [SMALL_STATE(1463)] = 58176, + [SMALL_STATE(1464)] = 58183, + [SMALL_STATE(1465)] = 58190, + [SMALL_STATE(1466)] = 58197, + [SMALL_STATE(1467)] = 58204, + [SMALL_STATE(1468)] = 58211, + [SMALL_STATE(1469)] = 58218, + [SMALL_STATE(1470)] = 58225, + [SMALL_STATE(1471)] = 58232, + [SMALL_STATE(1472)] = 58239, + [SMALL_STATE(1473)] = 58246, + [SMALL_STATE(1474)] = 58253, + [SMALL_STATE(1475)] = 58260, + [SMALL_STATE(1476)] = 58267, + [SMALL_STATE(1477)] = 58274, + [SMALL_STATE(1478)] = 58281, + [SMALL_STATE(1479)] = 58288, + [SMALL_STATE(1480)] = 58295, + [SMALL_STATE(1481)] = 58302, + [SMALL_STATE(1482)] = 58309, + [SMALL_STATE(1483)] = 58316, + [SMALL_STATE(1484)] = 58323, + [SMALL_STATE(1485)] = 58330, + [SMALL_STATE(1486)] = 58337, + [SMALL_STATE(1487)] = 58344, + [SMALL_STATE(1488)] = 58351, + [SMALL_STATE(1489)] = 58358, + [SMALL_STATE(1490)] = 58365, + [SMALL_STATE(1491)] = 58372, + [SMALL_STATE(1492)] = 58379, + [SMALL_STATE(1493)] = 58386, + [SMALL_STATE(1494)] = 58393, + [SMALL_STATE(1495)] = 58400, + [SMALL_STATE(1496)] = 58407, + [SMALL_STATE(1497)] = 58414, + [SMALL_STATE(1498)] = 58421, + [SMALL_STATE(1499)] = 58428, + [SMALL_STATE(1500)] = 58435, + [SMALL_STATE(1501)] = 58442, + [SMALL_STATE(1502)] = 58449, + [SMALL_STATE(1503)] = 58456, + [SMALL_STATE(1504)] = 58463, + [SMALL_STATE(1505)] = 58470, + [SMALL_STATE(1506)] = 58477, + [SMALL_STATE(1507)] = 58484, + [SMALL_STATE(1508)] = 58491, + [SMALL_STATE(1509)] = 58498, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -72522,1546 +72711,1551 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(414), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1158), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(996), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(346), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(84), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(345), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(199), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(224), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(168), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1315), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1317), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1318), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(320), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(287), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(464), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(323), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1471), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(273), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(589), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(160), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(166), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(363), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1493), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1485), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1484), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(353), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(409), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1474), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(366), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(865), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(795), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(795), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(922), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(929), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(329), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(300), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(458), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(380), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1488), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(266), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1486), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1483), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(440), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1113), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1013), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(153), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(389), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(111), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(388), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(186), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(225), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(177), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1314), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1315), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1316), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(373), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(298), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(448), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(325), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1479), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(269), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(589), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(161), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(346), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1501), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1493), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1492), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(381), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(397), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1482), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(317), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(869), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(760), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(760), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(926), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(907), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(329), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(299), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(456), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(333), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1496), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(281), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1494), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1491), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(206), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(191), [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(349), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(337), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(627), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(202), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(363), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(356), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(615), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(189), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(346), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(338), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1487), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1463), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(311), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(304), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(370), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(361), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(746), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(725), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(267), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1495), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(277), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1429), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(365), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(318), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(728), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(733), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 134), [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 134), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 106), [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 106), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 103), [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 103), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(905), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(919), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, .production_id = 2), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, .production_id = 2), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, .production_id = 20), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, .production_id = 20), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(916), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(913), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, .production_id = 20), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, .production_id = 20), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, .production_id = 2), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, .production_id = 2), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(909), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(923), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(929), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(922), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(915), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(906), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(907), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(926), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(580), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(596), [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1386), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(580), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(576), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1399), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(596), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1397), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(575), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(583), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1417), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(583), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(576), [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(500), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1491), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(574), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(482), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1483), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(577), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(626), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1418), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(626), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(577), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(598), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1424), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(598), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(575), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1394), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(170), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1418), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(176), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(176), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1017), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1017), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(368), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1473), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(447), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(841), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(172), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1037), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1037), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(375), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1498), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(449), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(842), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(230), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(263), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(994), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(994), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1415), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(351), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(825), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(234), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(222), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(175), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1094), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1233), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1399), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1148), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(369), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(357), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(289), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(212), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(838), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1011), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1370), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(869), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(227), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1189), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(877), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(879), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(235), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(270), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1035), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1035), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1486), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(351), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(807), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 31), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(173), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1072), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(230), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(224), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(356), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(339), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1114), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(288), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1244), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1411), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(340), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 36), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, .production_id = 16), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(253), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(212), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(226), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(870), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1190), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1004), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(878), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(877), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(258), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), - [3187] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1351), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(839), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3194] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), }; #ifdef __cplusplus diff --git a/python/ql/lib/CHANGELOG.md b/python/ql/lib/CHANGELOG.md index 17da65f262d..c18a0cc83d1 100644 --- a/python/ql/lib/CHANGELOG.md +++ b/python/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.0.4 + +No user-facing changes. + ## 5.0.3 No user-facing changes. diff --git a/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md b/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md new file mode 100644 index 00000000000..6187bc8136c --- /dev/null +++ b/python/ql/lib/change-notes/2025-12-09-python-support-relaxed-except-syntax.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* The extractor now supports the new, relaxed syntax `except A, B, C: ...` (which would previously have to be written as `except (A, B, C): ...`) as defined in [PEP-758](https://peps.python.org/pep-0758/). This may cause changes in results for code that uses Python 2-style exception binding (`except Foo, e: ...`). The more modern format, `except Foo as e: ...` (available since Python 2.6) is unaffected. diff --git a/python/ql/lib/change-notes/released/5.0.4.md b/python/ql/lib/change-notes/released/5.0.4.md new file mode 100644 index 00000000000..5c625c33d52 --- /dev/null +++ b/python/ql/lib/change-notes/released/5.0.4.md @@ -0,0 +1,3 @@ +## 5.0.4 + +No user-facing changes. diff --git a/python/ql/lib/codeql-pack.release.yml b/python/ql/lib/codeql-pack.release.yml index 6997554f6dd..8cb0167caf0 100644 --- a/python/ql/lib/codeql-pack.release.yml +++ b/python/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.0.3 +lastReleaseVersion: 5.0.4 diff --git a/python/ql/lib/qlpack.yml b/python/ql/lib/qlpack.yml index 43e09a9cd09..359cd85edc2 100644 --- a/python/ql/lib/qlpack.yml +++ b/python/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-all -version: 5.0.4-dev +version: 5.0.5-dev groups: python dbscheme: semmlecode.python.dbscheme extractor: python diff --git a/python/ql/src/CHANGELOG.md b/python/ql/src/CHANGELOG.md index 43e0f12a212..5293d4c00a4 100644 --- a/python/ql/src/CHANGELOG.md +++ b/python/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.4 + +No user-facing changes. + ## 1.7.3 No user-facing changes. diff --git a/python/ql/src/change-notes/released/1.7.4.md b/python/ql/src/change-notes/released/1.7.4.md new file mode 100644 index 00000000000..801ed5f5e71 --- /dev/null +++ b/python/ql/src/change-notes/released/1.7.4.md @@ -0,0 +1,3 @@ +## 1.7.4 + +No user-facing changes. diff --git a/python/ql/src/codeql-pack.release.yml b/python/ql/src/codeql-pack.release.yml index 9f9661b1e77..f4f3a4d5120 100644 --- a/python/ql/src/codeql-pack.release.yml +++ b/python/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.3 +lastReleaseVersion: 1.7.4 diff --git a/python/ql/src/qlpack.yml b/python/ql/src/qlpack.yml index cc3a6b25740..235fe00a9bc 100644 --- a/python/ql/src/qlpack.yml +++ b/python/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-queries -version: 1.7.4-dev +version: 1.7.5-dev groups: - python - queries diff --git a/ruby/ql/lib/CHANGELOG.md b/ruby/ql/lib/CHANGELOG.md index 7c3ccd16c8a..5a83b32807a 100644 --- a/ruby/ql/lib/CHANGELOG.md +++ b/ruby/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.1.7 + +No user-facing changes. + ## 5.1.6 No user-facing changes. diff --git a/ruby/ql/lib/change-notes/released/5.1.7.md b/ruby/ql/lib/change-notes/released/5.1.7.md new file mode 100644 index 00000000000..89048f7b019 --- /dev/null +++ b/ruby/ql/lib/change-notes/released/5.1.7.md @@ -0,0 +1,3 @@ +## 5.1.7 + +No user-facing changes. diff --git a/ruby/ql/lib/codeql-pack.release.yml b/ruby/ql/lib/codeql-pack.release.yml index 5ddeeed69fc..f26524e1fd9 100644 --- a/ruby/ql/lib/codeql-pack.release.yml +++ b/ruby/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.1.6 +lastReleaseVersion: 5.1.7 diff --git a/ruby/ql/lib/qlpack.yml b/ruby/ql/lib/qlpack.yml index 6cc2814827c..8418f9186bb 100644 --- a/ruby/ql/lib/qlpack.yml +++ b/ruby/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-all -version: 5.1.7-dev +version: 5.1.8-dev groups: ruby extractor: ruby dbscheme: ruby.dbscheme diff --git a/ruby/ql/src/CHANGELOG.md b/ruby/ql/src/CHANGELOG.md index ab000feb4a3..3968418c40b 100644 --- a/ruby/ql/src/CHANGELOG.md +++ b/ruby/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.5.4 + +No user-facing changes. + ## 1.5.3 No user-facing changes. diff --git a/ruby/ql/src/change-notes/released/1.5.4.md b/ruby/ql/src/change-notes/released/1.5.4.md new file mode 100644 index 00000000000..5ff5ac8ebb7 --- /dev/null +++ b/ruby/ql/src/change-notes/released/1.5.4.md @@ -0,0 +1,3 @@ +## 1.5.4 + +No user-facing changes. diff --git a/ruby/ql/src/codeql-pack.release.yml b/ruby/ql/src/codeql-pack.release.yml index 232224b0e26..c216828ee1c 100644 --- a/ruby/ql/src/codeql-pack.release.yml +++ b/ruby/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.5.3 +lastReleaseVersion: 1.5.4 diff --git a/ruby/ql/src/qlpack.yml b/ruby/ql/src/qlpack.yml index 833f85894e3..00834e12152 100644 --- a/ruby/ql/src/qlpack.yml +++ b/ruby/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-queries -version: 1.5.4-dev +version: 1.5.5-dev groups: - ruby - queries diff --git a/rust/ql/consistency-queries/TypeInferenceConsistency.ql b/rust/ql/consistency-queries/TypeInferenceConsistency.ql index 2ca9e55e964..0040e6a5473 100644 --- a/rust/ql/consistency-queries/TypeInferenceConsistency.ql +++ b/rust/ql/consistency-queries/TypeInferenceConsistency.ql @@ -5,4 +5,4 @@ * @id rust/diagnostics/type-inference-consistency */ -import codeql.rust.internal.TypeInferenceConsistency +import codeql.rust.internal.typeinference.TypeInferenceConsistency diff --git a/rust/ql/lib/CHANGELOG.md b/rust/ql/lib/CHANGELOG.md index e2aeb59f40b..6dd2293abeb 100644 --- a/rust/ql/lib/CHANGELOG.md +++ b/rust/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.3 + +No user-facing changes. + ## 0.2.2 No user-facing changes. diff --git a/rust/ql/lib/change-notes/released/0.2.3.md b/rust/ql/lib/change-notes/released/0.2.3.md new file mode 100644 index 00000000000..873fbbfa89b --- /dev/null +++ b/rust/ql/lib/change-notes/released/0.2.3.md @@ -0,0 +1,3 @@ +## 0.2.3 + +No user-facing changes. diff --git a/rust/ql/lib/codeql-pack.release.yml b/rust/ql/lib/codeql-pack.release.yml index 16a06790aa8..0b605901b42 100644 --- a/rust/ql/lib/codeql-pack.release.yml +++ b/rust/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.2.2 +lastReleaseVersion: 0.2.3 diff --git a/rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll b/rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll index c21c053b173..f0da3cd38f7 100644 --- a/rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll +++ b/rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll @@ -15,7 +15,7 @@ private import codeql.rust.internal.PathResolution private import codeql.rust.controlflow.ControlFlowGraph private import codeql.rust.dataflow.Ssa private import codeql.rust.dataflow.FlowSummary -private import codeql.rust.internal.TypeInference as TypeInference +private import codeql.rust.internal.typeinference.TypeInference as TypeInference private import codeql.rust.internal.typeinference.DerefChain private import Node private import Content diff --git a/rust/ql/lib/codeql/rust/dataflow/internal/ModelsAsData.qll b/rust/ql/lib/codeql/rust/dataflow/internal/ModelsAsData.qll index 5036259d059..a0c6caf8542 100644 --- a/rust/ql/lib/codeql/rust/dataflow/internal/ModelsAsData.qll +++ b/rust/ql/lib/codeql/rust/dataflow/internal/ModelsAsData.qll @@ -128,38 +128,35 @@ private predicate summaryModel( } private predicate summaryModelRelevant( - Function f, string input, string output, string kind, Provenance provenance, + Function f, string input, string output, string kind, Provenance provenance, boolean isInherited, QlBuiltins::ExtensionId madId ) { - exists(boolean isInherited | - summaryModel(f, input, output, kind, provenance, isInherited, madId) - | - // Only apply generated or inherited models to functions in library code and - // when no strictly better model exists - if provenance.isGenerated() or isInherited = true - then - not f.fromSource() and - not exists(Provenance other | summaryModel(f, _, _, _, other, false, _) | - provenance.isGenerated() and other.isManual() - or - provenance = other and isInherited = true - ) - else any() - ) + summaryModel(f, input, output, kind, provenance, isInherited, madId) and + // Only apply generated or inherited models to functions in library code and + // when no strictly better model exists + if provenance.isGenerated() or isInherited = true + then + not f.fromSource() and + not exists(Provenance other | summaryModel(f, _, _, _, other, false, _) | + provenance.isGenerated() and other.isManual() + or + provenance = other and isInherited = true + ) + else any() } private class SummarizedCallableFromModel extends SummarizedCallable::Range { - SummarizedCallableFromModel() { summaryModelRelevant(this, _, _, _, _, _) } + SummarizedCallableFromModel() { summaryModelRelevant(this, _, _, _, _, _, _) } override predicate hasProvenance(Provenance provenance) { - summaryModelRelevant(this, _, _, _, provenance, _) + summaryModelRelevant(this, _, _, _, provenance, _, _) } override predicate propagatesFlow( string input, string output, boolean preservesValue, string model ) { exists(string kind, QlBuiltins::ExtensionId madId | - summaryModelRelevant(this, input, output, kind, _, madId) and + summaryModelRelevant(this, input, output, kind, _, _, madId) and model = "MaD:" + madId.toString() | kind = "value" and @@ -202,3 +199,56 @@ private class FlowSinkFromModel extends FlowSink::Range { ) } } + +private module Debug { + private import FlowSummaryImpl + private import Private + private import Content + private import codeql.rust.dataflow.internal.DataFlowImpl + private import codeql.rust.internal.typeinference.TypeMention + private import codeql.rust.internal.typeinference.Type + + private predicate relevantManualModel(SummarizedCallableImpl sc, string can) { + exists(Provenance manual | + can = sc.getCanonicalPath() and + summaryModelRelevant(sc, _, _, _, manual, false, _) and + manual.isManual() + ) + } + + predicate manualModelMissingParameterReference( + SummarizedCallableImpl sc, string can, SummaryComponentStack input, ParamBase p + ) { + exists(RustDataFlow::ParameterPosition pos, TypeMention tm | + relevantManualModel(sc, can) and + sc.propagatesFlow(input, _, _, _) and + input.head() = SummaryComponent::argument(pos) and + p = pos.getParameterIn(sc.getParamList()) and + tm.resolveType() instanceof RefType and + not input.tail().head() = SummaryComponent::content(TSingletonContentSet(TReferenceContent())) + | + tm = p.getTypeRepr() + or + tm = getSelfParamTypeMention(p) + ) + } + + predicate manualModelMissingReturnReference( + SummarizedCallableImpl sc, string can, SummaryComponentStack output + ) { + exists(TypeMention tm | + relevantManualModel(sc, can) and + sc.propagatesFlow(_, output, _, _) and + tm.resolveType() instanceof RefType and + output.head() = SummaryComponent::return(_) and + not output.tail().head() = + SummaryComponent::content(TSingletonContentSet(TReferenceContent())) and + tm = getReturnTypeMention(sc) and + not can = + [ + "<& as core::ops::deref::Deref>::deref", + "<&mut as core::ops::deref::Deref>::deref" + ] + ) + } +} diff --git a/rust/ql/lib/codeql/rust/dataflow/internal/Node.qll b/rust/ql/lib/codeql/rust/dataflow/internal/Node.qll index b8bfddf8adb..e422962e71d 100644 --- a/rust/ql/lib/codeql/rust/dataflow/internal/Node.qll +++ b/rust/ql/lib/codeql/rust/dataflow/internal/Node.qll @@ -14,7 +14,7 @@ private import codeql.rust.controlflow.ControlFlowGraph private import codeql.rust.controlflow.CfgNodes private import codeql.rust.dataflow.Ssa private import codeql.rust.dataflow.FlowSummary -private import codeql.rust.internal.TypeInference as TypeInference +private import codeql.rust.internal.typeinference.TypeInference as TypeInference private import codeql.rust.internal.typeinference.DerefChain private import Node as Node private import DataFlowImpl diff --git a/rust/ql/lib/codeql/rust/dataflow/internal/TaintTrackingImpl.qll b/rust/ql/lib/codeql/rust/dataflow/internal/TaintTrackingImpl.qll index 944227d2fcc..a7c58c53dd1 100644 --- a/rust/ql/lib/codeql/rust/dataflow/internal/TaintTrackingImpl.qll +++ b/rust/ql/lib/codeql/rust/dataflow/internal/TaintTrackingImpl.qll @@ -7,8 +7,8 @@ private import Node as Node private import Content private import FlowSummaryImpl as FlowSummaryImpl private import codeql.rust.internal.CachedStages -private import codeql.rust.internal.TypeInference as TypeInference -private import codeql.rust.internal.Type as Type +private import codeql.rust.internal.typeinference.TypeInference as TypeInference +private import codeql.rust.internal.typeinference.Type as Type private import codeql.rust.frameworks.stdlib.Builtins as Builtins /** diff --git a/rust/ql/lib/codeql/rust/elements/internal/CallExprImpl.qll b/rust/ql/lib/codeql/rust/elements/internal/CallExprImpl.qll index cad921640ef..b65b603dd8f 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/CallExprImpl.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/CallExprImpl.qll @@ -15,7 +15,7 @@ module Impl { private import codeql.rust.elements.internal.InvocationExprImpl::Impl as InvocationExprImpl private import codeql.rust.elements.internal.CallImpl::Impl as CallImpl private import codeql.rust.internal.PathResolution as PathResolution - private import codeql.rust.internal.TypeInference as TypeInference + private import codeql.rust.internal.typeinference.TypeInference as TypeInference pragma[nomagic] Path getFunctionPath(CallExpr ce) { result = ce.getFunction().(PathExpr).getPath() } diff --git a/rust/ql/lib/codeql/rust/elements/internal/CallImpl.qll b/rust/ql/lib/codeql/rust/elements/internal/CallImpl.qll index e35b932242c..2af80de6697 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/CallImpl.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/CallImpl.qll @@ -1,7 +1,7 @@ private import rust module Impl { - private import codeql.rust.internal.TypeInference as TypeInference + private import codeql.rust.internal.typeinference.TypeInference as TypeInference private import codeql.rust.elements.internal.ExprImpl::Impl as ExprImpl private import codeql.rust.elements.internal.InvocationExprImpl::Impl as InvocationExprImpl diff --git a/rust/ql/lib/codeql/rust/elements/internal/FieldExprImpl.qll b/rust/ql/lib/codeql/rust/elements/internal/FieldExprImpl.qll index 469a8ccc05d..db5578b835a 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/FieldExprImpl.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/FieldExprImpl.qll @@ -12,7 +12,7 @@ private import codeql.rust.elements.internal.generated.FieldExpr */ module Impl { private import rust - private import codeql.rust.internal.TypeInference as TypeInference + private import codeql.rust.internal.typeinference.TypeInference as TypeInference // the following QLdoc is generated: if you need to edit it, do it in the schema file /** diff --git a/rust/ql/lib/codeql/rust/elements/internal/InvocationExprImpl.qll b/rust/ql/lib/codeql/rust/elements/internal/InvocationExprImpl.qll index e1db44eb4d1..d4f68329de9 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/InvocationExprImpl.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/InvocationExprImpl.qll @@ -1,7 +1,7 @@ private import rust module Impl { - private import codeql.rust.internal.TypeInference as TypeInference + private import codeql.rust.internal.typeinference.TypeInference as TypeInference private import codeql.rust.elements.internal.ExprImpl::Impl as ExprImpl private newtype TArgumentPosition = diff --git a/rust/ql/lib/codeql/rust/frameworks/futures.model.yml b/rust/ql/lib/codeql/rust/frameworks/futures.model.yml index 712897186a8..29feee13616 100644 --- a/rust/ql/lib/codeql/rust/frameworks/futures.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/futures.model.yml @@ -5,7 +5,6 @@ extensions: data: - ["futures_executor::local_pool::block_on", "Argument[0]", "ReturnValue", "value", "manual"] - ["::new", "Argument[0]", "ReturnValue", "taint", "manual"] - - ["<_ as futures_util::io::AsyncReadExt>::read", "Argument[self]", "Argument[0].Reference", "taint", "manual"] - ["<_ as futures_util::io::AsyncReadExt>::read", "Argument[self].Reference", "Argument[0].Reference", "taint", "manual"] - ["<_ as futures_util::io::AsyncReadExt>::read_to_end", "Argument[self].Reference", "Argument[0].Reference", "taint", "manual"] - ["<_ as futures_util::io::AsyncBufReadExt>::read_line", "Argument[self].Reference", "Argument[0].Reference", "taint", "manual"] diff --git a/rust/ql/lib/codeql/rust/frameworks/http.model.yml b/rust/ql/lib/codeql/rust/frameworks/http.model.yml index 6a497f34647..5c527cc1d40 100644 --- a/rust/ql/lib/codeql/rust/frameworks/http.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/http.model.yml @@ -1,4 +1,11 @@ extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["::body", "Argument[self].Reference.Field[http::response::Response::body]", "ReturnValue.Reference", "value", "manual"] + - ["::body_mut", "Argument[self].Reference.Field[http::response::Response::body]", "ReturnValue.Reference", "value", "manual"] + - ["::into_body", "Argument[self].Field[http::response::Response::body]", "ReturnValue", "value", "manual"] - addsTo: pack: codeql/rust-all extensible: sourceModel diff --git a/rust/ql/lib/codeql/rust/frameworks/rustcrypto/RustCrypto.qll b/rust/ql/lib/codeql/rust/frameworks/rustcrypto/RustCrypto.qll index cbc638c8ae5..41fdd4abe72 100644 --- a/rust/ql/lib/codeql/rust/frameworks/rustcrypto/RustCrypto.qll +++ b/rust/ql/lib/codeql/rust/frameworks/rustcrypto/RustCrypto.qll @@ -5,8 +5,8 @@ private import rust private import codeql.rust.Concepts private import codeql.rust.dataflow.DataFlow -private import codeql.rust.internal.TypeInference -private import codeql.rust.internal.Type +private import codeql.rust.internal.typeinference.TypeInference +private import codeql.rust.internal.typeinference.Type bindingset[algorithmName] private string simplifyAlgorithmName(string algorithmName) { diff --git a/rust/ql/lib/codeql/rust/frameworks/stdlib/alloc.model.yml b/rust/ql/lib/codeql/rust/frameworks/stdlib/alloc.model.yml index cfaef568f1f..74432649bd8 100644 --- a/rust/ql/lib/codeql/rust/frameworks/stdlib/alloc.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/stdlib/alloc.model.yml @@ -47,11 +47,12 @@ extensions: - ["::pad_to_align", "Argument[self].Reference", "ReturnValue", "taint", "manual"] - ["::size", "Argument[self].Reference", "ReturnValue", "taint", "manual"] # String - - ["::as_str", "Argument[self]", "ReturnValue", "value", "manual"] - - ["::as_bytes", "Argument[self]", "ReturnValue", "value", "manual"] + - ["::as_str", "Argument[self].Reference", "ReturnValue.Reference", "taint", "manual"] + - ["::as_bytes", "Argument[self].Reference", "ReturnValue.Reference.Element", "taint", "manual"] - ["<_ as alloc::string::ToString>::to_string", "Argument[self].Reference", "ReturnValue", "taint", "manual"] # Overwrite generated model - - ["::add", "Argument[self,0]", "ReturnValue", "taint", "manual"] + - ["::add", "Argument[self]", "ReturnValue", "taint", "manual"] - ["::add", "Argument[0].Reference", "ReturnValue", "taint", "manual"] # Vec - ["alloc::vec::from_elem", "Argument[0]", "ReturnValue.Element", "value", "manual"] + - ["::deref", "Argument[self].Reference.Element", "ReturnValue.Reference.Element", "value", "manual"] \ No newline at end of file diff --git a/rust/ql/lib/codeql/rust/frameworks/stdlib/core.model.yml b/rust/ql/lib/codeql/rust/frameworks/stdlib/core.model.yml index 0844dae5612..e92ae4defa3 100644 --- a/rust/ql/lib/codeql/rust/frameworks/stdlib/core.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/stdlib/core.model.yml @@ -114,7 +114,7 @@ extensions: - ["::deref", "Argument[self].Reference.Field[core::pin::Pin::pointer].Reference", "ReturnValue.Reference", "value", "manual"] - ["::deref", "Argument[self].Reference.Field[core::pin::Pin::pointer].Field[alloc::boxed::Box(0)]", "ReturnValue.Reference", "value", "manual"] # Str - - ["::as_str", "Argument[self]", "ReturnValue", "value", "manual"] + - ["::as_str", "Argument[self].Reference", "ReturnValue.Reference", "taint", "manual"] - ["::as_bytes", "Argument[self].Reference", "ReturnValue.Reference", "taint", "manual"] - ["::parse", "Argument[self].Reference", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] - ["::trim", "Argument[self].Reference", "ReturnValue.Reference", "taint", "manual"] @@ -123,6 +123,8 @@ extensions: - ["<_ as core::cmp::Ord>::min", "Argument[self,0]", "ReturnValue", "value", "manual"] - ["<_ as core::cmp::Ord>::max", "Argument[self,0]", "ReturnValue", "value", "manual"] - ["<_ as core::cmp::Ord>::clamp", "Argument[self,0,1]", "ReturnValue", "value", "manual"] + # Slice + - ["<[]>::get", "Argument[self].Reference.Element", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "value", "manual"] - addsTo: pack: codeql/rust-all extensible: sourceModel diff --git a/rust/ql/lib/codeql/rust/frameworks/stdlib/ffi.model.yml b/rust/ql/lib/codeql/rust/frameworks/stdlib/ffi.model.yml new file mode 100644 index 00000000000..0f7545f8a92 --- /dev/null +++ b/rust/ql/lib/codeql/rust/frameworks/stdlib/ffi.model.yml @@ -0,0 +1,8 @@ +extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["::to_str", "Argument[self].Reference.Field[std::ffi::os_str::OsStr::inner]", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] + - ["::to_string_lossy", "Argument[self].Reference.Field[std::ffi::os_str::OsStr::inner]", "ReturnValue.Field[alloc::borrow::Cow::Owned(0)]", "taint", "manual"] + - ["::as_encoded_bytes", "Argument[self].Reference.Field[std::ffi::os_str::OsStr::inner]", "ReturnValue.Reference", "taint", "manual"] \ No newline at end of file diff --git a/rust/ql/lib/codeql/rust/frameworks/stdlib/fs.model.yml b/rust/ql/lib/codeql/rust/frameworks/stdlib/fs.model.yml index 8be4fdc05bf..2a57b38ace5 100644 --- a/rust/ql/lib/codeql/rust/frameworks/stdlib/fs.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/stdlib/fs.model.yml @@ -59,27 +59,25 @@ extensions: - ["std::fs::canonicalize", "Argument[0].OptionalStep[normalize-path]", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] - ["std::fs::canonicalize", "Argument[0].OptionalBarrier[normalize-path]", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] - ["::as_path", "Argument[self].Reference", "ReturnValue.Reference", "value", "manual"] - - ["::as_mut_os_string", "Argument[Self].Reference", "ReturnValue.Reference", "value", "manual"] - - ["::into_os_string", "Argument[Self]", "ReturnValue", "value", "manual"] - - ["::into_boxed_path", "Argument[Self]", "ReturnValue.Reference", "value", "manual"] + - ["::into_boxed_path", "Argument[self]", "ReturnValue.Field[alloc::boxed::Box(0)]", "taint", "manual"] - ["::new", "Argument[0].Reference", "ReturnValue.Reference", "value", "manual"] - - ["::join", "Argument[self]", "ReturnValue", "taint", "manual"] + - ["::join", "Argument[self].Reference", "ReturnValue", "taint", "manual"] - ["::join", "Argument[0]", "ReturnValue", "taint", "manual"] - - ["::as_os_string", "Argument[Self].Reference", "ReturnValue.Reference", "value", "manual"] - - ["::as_mut_os_string", "Argument[Self].Reference", "ReturnValue.Reference", "value", "manual"] + - ["::as_os_str", "Argument[self].Reference.Field[std::path::Path::inner]", "ReturnValue.Reference", "value", "manual"] + - ["::as_mut_os_str", "Argument[self].Reference.Field[std::path::Path::inner]", "ReturnValue.Reference", "value", "manual"] - ["::canonicalize", "Argument[self].Reference.OptionalStep[normalize-path]", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] - ["::canonicalize", "Argument[self].Reference.OptionalBarrier[normalize-path]", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] - - ["::extension", "Argument[Self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] - - ["::file_name", "Argument[Self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] - - ["::file_prefix", "Argument[Self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] - - ["::file_stem", "Argument[Self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] - - ["::into_path_buf", "Argument[Self].Reference", "ReturnValue", "value", "manual"] - - ["::parent", "Argument[Self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] - - ["::to_path_buf", "Argument[Self].Reference", "ReturnValue", "value", "manual"] - - ["::to_str", "Argument[Self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "value", "manual"] - - ["::with_added_extension", "Argument[Self].Reference", "ReturnValue", "taint", "manual"] - - ["::with_extension", "Argument[Self].Reference", "ReturnValue", "taint", "manual"] - - ["::with_file_name", "Argument[Self].Reference", "ReturnValue", "taint", "manual"] + - ["::extension", "Argument[self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] + - ["::file_name", "Argument[self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] + - ["::file_prefix", "Argument[self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] + - ["::file_stem", "Argument[self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] + - ["::into_path_buf", "Argument[self].Field[alloc::boxed::Box(0)]", "ReturnValue", "value", "manual"] + - ["::parent", "Argument[self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "taint", "manual"] + - ["::to_path_buf", "Argument[self].Reference", "ReturnValue", "value", "manual"] + - ["::to_str", "Argument[self].Reference", "ReturnValue.Field[core::option::Option::Some(0)].Reference", "value", "manual"] + - ["::with_added_extension", "Argument[self].Reference", "ReturnValue", "taint", "manual"] + - ["::with_extension", "Argument[self].Reference", "ReturnValue", "taint", "manual"] + - ["::with_file_name", "Argument[self].Reference", "ReturnValue", "taint", "manual"] - ["::with_file_name", "Argument[0]", "ReturnValue", "taint", "manual"] - ["::accessed", "Argument[self].Reference", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] - ["::created", "Argument[self].Reference", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] diff --git a/rust/ql/lib/codeql/rust/frameworks/stdlib/io.model.yml b/rust/ql/lib/codeql/rust/frameworks/stdlib/io.model.yml index 064c2cd19cf..afb6757ef66 100644 --- a/rust/ql/lib/codeql/rust/frameworks/stdlib/io.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/stdlib/io.model.yml @@ -24,4 +24,5 @@ extensions: - ["<_ as std::io::Read>::chain", "Argument[0]", "ReturnValue", "taint", "manual"] - ["<_ as std::io::Read>::take", "Argument[self]", "ReturnValue", "taint", "manual"] - ["::lock", "Argument[self].Reference", "ReturnValue", "taint", "manual"] + - ["::read_line", "Argument[self].Reference", "Argument[0].Reference", "taint", "manual"] - ["::next", "Argument[self].Reference.Element", "ReturnValue.Field[core::option::Option::Some(0)].Field[core::result::Result::Ok(0)]", "value", "manual"] diff --git a/rust/ql/lib/codeql/rust/frameworks/stdlib/net.model.yml b/rust/ql/lib/codeql/rust/frameworks/stdlib/net.model.yml index 8aa03133354..fc4c043cecf 100644 --- a/rust/ql/lib/codeql/rust/frameworks/stdlib/net.model.yml +++ b/rust/ql/lib/codeql/rust/frameworks/stdlib/net.model.yml @@ -9,4 +9,4 @@ extensions: pack: codeql/rust-all extensible: summaryModel data: - - ["::try_clone", "Argument[self]", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] + - ["::try_clone", "Argument[self].Reference", "ReturnValue.Field[core::result::Result::Ok(0)]", "taint", "manual"] diff --git a/rust/ql/lib/codeql/rust/internal/CachedStages.qll b/rust/ql/lib/codeql/rust/internal/CachedStages.qll index dc80fc09dad..a92770ed238 100644 --- a/rust/ql/lib/codeql/rust/internal/CachedStages.qll +++ b/rust/ql/lib/codeql/rust/internal/CachedStages.qll @@ -128,8 +128,8 @@ module Stages { */ cached module TypeInferenceStage { - private import codeql.rust.internal.Type - private import codeql.rust.internal.TypeInference + private import codeql.rust.internal.typeinference.Type + private import codeql.rust.internal.typeinference.TypeInference /** * Always holds. diff --git a/rust/ql/lib/codeql/rust/internal/typeinference/BlanketImplementation.qll b/rust/ql/lib/codeql/rust/internal/typeinference/BlanketImplementation.qll index c60ad3f6ae3..1d2eda61ddb 100644 --- a/rust/ql/lib/codeql/rust/internal/typeinference/BlanketImplementation.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/BlanketImplementation.qll @@ -7,9 +7,9 @@ private import rust private import codeql.rust.internal.PathResolution -private import codeql.rust.internal.Type -private import codeql.rust.internal.TypeMention -private import codeql.rust.internal.TypeInference +private import Type +private import TypeMention +private import TypeInference /** * Holds if `traitBound` is the first non-trivial trait bound of `tp`. diff --git a/rust/ql/lib/codeql/rust/internal/typeinference/DerefChain.qll b/rust/ql/lib/codeql/rust/internal/typeinference/DerefChain.qll index 16e35bae421..c568fca48b6 100644 --- a/rust/ql/lib/codeql/rust/internal/typeinference/DerefChain.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/DerefChain.qll @@ -2,9 +2,9 @@ private import rust private import codeql.rust.internal.PathResolution -private import codeql.rust.internal.Type -private import codeql.rust.internal.TypeInference -private import codeql.rust.internal.TypeMention +private import Type +private import TypeInference +private import TypeMention private import codeql.rust.frameworks.stdlib.Stdlib private import codeql.rust.frameworks.stdlib.Builtins as Builtins private import codeql.util.UnboundList as UnboundListImpl diff --git a/rust/ql/lib/codeql/rust/internal/typeinference/FunctionOverloading.qll b/rust/ql/lib/codeql/rust/internal/typeinference/FunctionOverloading.qll index b58084e31cf..e67fb05485f 100644 --- a/rust/ql/lib/codeql/rust/internal/typeinference/FunctionOverloading.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/FunctionOverloading.qll @@ -7,9 +7,9 @@ private import rust private import codeql.rust.internal.PathResolution -private import codeql.rust.internal.Type -private import codeql.rust.internal.TypeMention -private import codeql.rust.internal.TypeInference +private import Type +private import TypeMention +private import TypeInference private import FunctionType pragma[nomagic] diff --git a/rust/ql/lib/codeql/rust/internal/typeinference/FunctionType.qll b/rust/ql/lib/codeql/rust/internal/typeinference/FunctionType.qll index bbbbeaba2a6..8a72c967867 100644 --- a/rust/ql/lib/codeql/rust/internal/typeinference/FunctionType.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/FunctionType.qll @@ -1,8 +1,8 @@ private import rust -private import codeql.rust.internal.TypeInference private import codeql.rust.internal.PathResolution -private import codeql.rust.internal.Type -private import codeql.rust.internal.TypeMention +private import TypeInference +private import Type +private import TypeMention private newtype TFunctionPosition = TArgumentFunctionPosition(ArgumentPosition pos) or diff --git a/rust/ql/lib/codeql/rust/internal/Type.qll b/rust/ql/lib/codeql/rust/internal/typeinference/Type.qll similarity index 99% rename from rust/ql/lib/codeql/rust/internal/Type.qll rename to rust/ql/lib/codeql/rust/internal/typeinference/Type.qll index 9b409e20f76..df08d84edd0 100644 --- a/rust/ql/lib/codeql/rust/internal/Type.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/Type.qll @@ -1,7 +1,7 @@ /** Provides classes representing types without type arguments. */ private import rust -private import PathResolution +private import codeql.rust.internal.PathResolution private import TypeMention private import codeql.rust.internal.CachedStages private import codeql.rust.elements.internal.generated.Raw diff --git a/rust/ql/lib/codeql/rust/internal/TypeInference.qll b/rust/ql/lib/codeql/rust/internal/typeinference/TypeInference.qll similarity index 99% rename from rust/ql/lib/codeql/rust/internal/TypeInference.qll rename to rust/ql/lib/codeql/rust/internal/typeinference/TypeInference.qll index 22fa673af94..46454ec88b0 100644 --- a/rust/ql/lib/codeql/rust/internal/TypeInference.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/TypeInference.qll @@ -3,14 +3,14 @@ private import codeql.util.Boolean private import codeql.util.Option private import rust -private import PathResolution +private import codeql.rust.internal.PathResolution private import Type private import Type as T private import TypeMention -private import typeinference.DerefChain -private import typeinference.FunctionType -private import typeinference.FunctionOverloading as FunctionOverloading -private import typeinference.BlanketImplementation as BlanketImplementation +private import codeql.rust.internal.typeinference.DerefChain +private import FunctionType +private import FunctionOverloading as FunctionOverloading +private import BlanketImplementation as BlanketImplementation private import codeql.rust.elements.internal.VariableImpl::Impl as VariableImpl private import codeql.rust.internal.CachedStages private import codeql.typeinference.internal.TypeInference diff --git a/rust/ql/lib/codeql/rust/internal/TypeInferenceConsistency.qll b/rust/ql/lib/codeql/rust/internal/typeinference/TypeInferenceConsistency.qll similarity index 100% rename from rust/ql/lib/codeql/rust/internal/TypeInferenceConsistency.qll rename to rust/ql/lib/codeql/rust/internal/typeinference/TypeInferenceConsistency.qll diff --git a/rust/ql/lib/codeql/rust/internal/TypeMention.qll b/rust/ql/lib/codeql/rust/internal/typeinference/TypeMention.qll similarity index 95% rename from rust/ql/lib/codeql/rust/internal/TypeMention.qll rename to rust/ql/lib/codeql/rust/internal/typeinference/TypeMention.qll index 74661bb86c3..41146e22c1b 100644 --- a/rust/ql/lib/codeql/rust/internal/TypeMention.qll +++ b/rust/ql/lib/codeql/rust/internal/typeinference/TypeMention.qll @@ -1,9 +1,9 @@ /** Provides classes for representing type mentions, used in type inference. */ private import rust +private import codeql.rust.internal.PathResolution private import codeql.rust.frameworks.stdlib.Stdlib private import Type -private import PathResolution private import TypeInference /** An AST node that may mention a type. */ @@ -222,6 +222,33 @@ class NonAliasPathTypeMention extends PathTypeMention { result = this.getPositionalTypeArgument(pragma[only_bind_into](i), path) and tp = this.resolveRootType().getPositionalTypeParameter(pragma[only_bind_into](i)) ) + or + // Handle the special syntactic sugar for function traits. The syntactic + // form is detected by the presence of a parenthesized argument list which + // is a mandatory part of the syntax [1]. + // + // For now we only support `FnOnce` as we can't support the "inherited" + // associated types of `Fn` and `FnMut` yet. + // + // [1]: https://doc.rust-lang.org/reference/paths.html#grammar-TypePathFn + exists(FnOnceTrait t, PathSegment s | + t = resolved and + s = this.getSegment() and + s.hasParenthesizedArgList() + | + tp = TTypeParamTypeParameter(t.getTypeParam()) and + result = s.getParenthesizedArgList().(TypeMention).resolveTypeAt(path) + or + tp = TAssociatedTypeTypeParameter(t.getOutputType()) and + ( + result = s.getRetType().getTypeRepr().(TypeMention).resolveTypeAt(path) + or + // When the `-> ...` return type is omitted, it defaults to `()`. + not s.hasRetType() and + result instanceof UnitType and + path.isEmpty() + ) + ) } pragma[nomagic] @@ -256,17 +283,6 @@ class NonAliasPathTypeMention extends PathTypeMention { result = alias.getTypeRepr() and tp = TAssociatedTypeTypeParameter(this.getResolvedAlias(pragma[only_bind_into](name))) ) - or - // Handle the special syntactic sugar for function traits. For now we only - // support `FnOnce` as we can't support the "inherited" associated types of - // `Fn` and `FnMut` yet. - exists(FnOnceTrait t | t = resolved | - tp = TTypeParamTypeParameter(t.getTypeParam()) and - result = this.getSegment().getParenthesizedArgList() - or - tp = TAssociatedTypeTypeParameter(t.getOutputType()) and - result = this.getSegment().getRetType().getTypeRepr() - ) } pragma[nomagic] diff --git a/rust/ql/lib/codeql/rust/security/AccessAfterLifetimeExtensions.qll b/rust/ql/lib/codeql/rust/security/AccessAfterLifetimeExtensions.qll index c404f13b531..a23e3886b24 100644 --- a/rust/ql/lib/codeql/rust/security/AccessAfterLifetimeExtensions.qll +++ b/rust/ql/lib/codeql/rust/security/AccessAfterLifetimeExtensions.qll @@ -6,8 +6,8 @@ import rust private import codeql.rust.dataflow.DataFlow private import codeql.rust.security.AccessInvalidPointerExtensions -private import codeql.rust.internal.Type -private import codeql.rust.internal.TypeInference as TypeInference +private import codeql.rust.internal.typeinference.Type +private import codeql.rust.internal.typeinference.TypeInference as TypeInference /** * Provides default sources, sinks and barriers for detecting accesses to a diff --git a/rust/ql/lib/codeql/rust/security/AccessInvalidPointerExtensions.qll b/rust/ql/lib/codeql/rust/security/AccessInvalidPointerExtensions.qll index d8d7be25933..117f67a7b4e 100644 --- a/rust/ql/lib/codeql/rust/security/AccessInvalidPointerExtensions.qll +++ b/rust/ql/lib/codeql/rust/security/AccessInvalidPointerExtensions.qll @@ -10,8 +10,8 @@ private import codeql.rust.dataflow.FlowSink private import codeql.rust.Concepts private import codeql.rust.dataflow.internal.Node private import codeql.rust.security.Barriers as Barriers -private import codeql.rust.internal.TypeInference as TypeInference -private import codeql.rust.internal.Type +private import codeql.rust.internal.typeinference.TypeInference as TypeInference +private import codeql.rust.internal.typeinference.Type /** * Provides default sources, sinks and barriers for detecting accesses to diff --git a/rust/ql/lib/codeql/rust/security/Barriers.qll b/rust/ql/lib/codeql/rust/security/Barriers.qll index a285bfe3569..3de984073a8 100644 --- a/rust/ql/lib/codeql/rust/security/Barriers.qll +++ b/rust/ql/lib/codeql/rust/security/Barriers.qll @@ -5,8 +5,8 @@ import rust private import codeql.rust.dataflow.DataFlow -private import codeql.rust.internal.TypeInference as TypeInference -private import codeql.rust.internal.Type +private import codeql.rust.internal.typeinference.TypeInference as TypeInference +private import codeql.rust.internal.typeinference.Type private import codeql.rust.controlflow.ControlFlowGraph as Cfg private import codeql.rust.controlflow.CfgNodes as CfgNodes private import codeql.rust.frameworks.stdlib.Builtins as Builtins diff --git a/rust/ql/lib/codeql/rust/security/UncontrolledAllocationSizeExtensions.qll b/rust/ql/lib/codeql/rust/security/UncontrolledAllocationSizeExtensions.qll index c6251563ea6..0390ca77932 100644 --- a/rust/ql/lib/codeql/rust/security/UncontrolledAllocationSizeExtensions.qll +++ b/rust/ql/lib/codeql/rust/security/UncontrolledAllocationSizeExtensions.qll @@ -63,4 +63,17 @@ module UncontrolledAllocationSize { branch = false ) } + + /** + * A barrier for uncontrolled allocation size flow into particular functions. + */ + private class ModeledBarrier extends Barrier { + ModeledBarrier() { + exists(MethodCall c | + c.getStaticTarget().getCanonicalPath() = + ["::split_off", "::split_off"] and + this.asExpr() = c.getAnArgument() + ) + } + } } diff --git a/rust/ql/lib/qlpack.yml b/rust/ql/lib/qlpack.yml index 551f2cd20cf..568418c1332 100644 --- a/rust/ql/lib/qlpack.yml +++ b/rust/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-all -version: 0.2.3-dev +version: 0.2.4-dev groups: rust extractor: rust dbscheme: rust.dbscheme diff --git a/rust/ql/lib/utils/test/PathResolutionInlineExpectationsTest.qll b/rust/ql/lib/utils/test/PathResolutionInlineExpectationsTest.qll index d8b2703203d..bde96ace1a4 100644 --- a/rust/ql/lib/utils/test/PathResolutionInlineExpectationsTest.qll +++ b/rust/ql/lib/utils/test/PathResolutionInlineExpectationsTest.qll @@ -4,7 +4,7 @@ private import rust private import codeql.rust.internal.PathResolution -private import codeql.rust.internal.TypeInference +private import codeql.rust.internal.typeinference.TypeInference private import utils.test.InlineExpectationsTest private module ResolveTest implements TestSig { diff --git a/rust/ql/src/CHANGELOG.md b/rust/ql/src/CHANGELOG.md index f5e2fdb6407..36aec92674d 100644 --- a/rust/ql/src/CHANGELOG.md +++ b/rust/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.24 + +No user-facing changes. + ## 0.1.23 No user-facing changes. diff --git a/rust/ql/src/change-notes/released/0.1.24.md b/rust/ql/src/change-notes/released/0.1.24.md new file mode 100644 index 00000000000..e94e0c402f0 --- /dev/null +++ b/rust/ql/src/change-notes/released/0.1.24.md @@ -0,0 +1,3 @@ +## 0.1.24 + +No user-facing changes. diff --git a/rust/ql/src/codeql-pack.release.yml b/rust/ql/src/codeql-pack.release.yml index 484c6d90798..561fd0bfe38 100644 --- a/rust/ql/src/codeql-pack.release.yml +++ b/rust/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.1.23 +lastReleaseVersion: 0.1.24 diff --git a/rust/ql/src/qlpack.yml b/rust/ql/src/qlpack.yml index 2162add3f35..6a834256d50 100644 --- a/rust/ql/src/qlpack.yml +++ b/rust/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-queries -version: 0.1.24-dev +version: 0.1.25-dev groups: - rust - queries diff --git a/rust/ql/src/queries/diagnostics/TypeInferenceConsistencyCounts.ql b/rust/ql/src/queries/diagnostics/TypeInferenceConsistencyCounts.ql index 3a98cef3b81..c3cd00674c9 100644 --- a/rust/ql/src/queries/diagnostics/TypeInferenceConsistencyCounts.ql +++ b/rust/ql/src/queries/diagnostics/TypeInferenceConsistencyCounts.ql @@ -5,7 +5,7 @@ * @id rust/diagnostics/type-inference-consistency-counts */ -private import codeql.rust.internal.TypeInferenceConsistency as Consistency +private import codeql.rust.internal.typeinference.TypeInferenceConsistency as Consistency // see also `rust/diagnostics/type-inference-consistency`, which lists the // individual inconsistency results. diff --git a/rust/ql/src/queries/summary/NodesWithTypeAtLengthLimit.ql b/rust/ql/src/queries/summary/NodesWithTypeAtLengthLimit.ql index d06d1af510c..135bb8098ca 100644 --- a/rust/ql/src/queries/summary/NodesWithTypeAtLengthLimit.ql +++ b/rust/ql/src/queries/summary/NodesWithTypeAtLengthLimit.ql @@ -7,7 +7,7 @@ */ import rust -import codeql.rust.internal.TypeInference +import codeql.rust.internal.typeinference.TypeInference from int atLimit where diff --git a/rust/ql/src/queries/summary/Stats.qll b/rust/ql/src/queries/summary/Stats.qll index d06389fb6a7..36eeb0df4ef 100644 --- a/rust/ql/src/queries/summary/Stats.qll +++ b/rust/ql/src/queries/summary/Stats.qll @@ -8,7 +8,7 @@ private import codeql.rust.dataflow.internal.DataFlowImpl private import codeql.rust.dataflow.internal.TaintTrackingImpl private import codeql.rust.internal.AstConsistency as AstConsistency private import codeql.rust.internal.PathResolutionConsistency as PathResolutionConsistency -private import codeql.rust.internal.TypeInferenceConsistency as TypeInferenceConsistency +private import codeql.rust.internal.typeinference.TypeInferenceConsistency as TypeInferenceConsistency private import codeql.rust.controlflow.internal.CfgConsistency as CfgConsistency private import codeql.rust.dataflow.internal.DataFlowConsistency as DataFlowConsistency private import codeql.rust.dataflow.internal.SsaImpl::Consistency as SsaConsistency diff --git a/rust/ql/src/queries/telemetry/DatabaseQuality.qll b/rust/ql/src/queries/telemetry/DatabaseQuality.qll index 5f50cdd4c4f..37163ffd7dd 100644 --- a/rust/ql/src/queries/telemetry/DatabaseQuality.qll +++ b/rust/ql/src/queries/telemetry/DatabaseQuality.qll @@ -7,8 +7,8 @@ import rust import codeql.util.ReportStats import codeql.rust.elements.internal.CallExprImpl::Impl as CallExprImpl -import codeql.rust.internal.TypeInference as TypeInference -import codeql.rust.internal.Type +import codeql.rust.internal.typeinference.TypeInference as TypeInference +import codeql.rust.internal.typeinference.Type /** * A file that is included in the quality statistics. diff --git a/rust/ql/test/library-tests/dataflow/sources/file/InlineFlow.expected b/rust/ql/test/library-tests/dataflow/sources/file/InlineFlow.expected index 6ed7d5dafb9..c7413e3c28f 100644 --- a/rust/ql/test/library-tests/dataflow/sources/file/InlineFlow.expected +++ b/rust/ql/test/library-tests/dataflow/sources/file/InlineFlow.expected @@ -35,9 +35,14 @@ models | 34 | Summary: <_ as tokio::io::util::async_read_ext::AsyncReadExt>::read_to_end; Argument[self].Reference; Argument[0].Reference; taint | | 35 | Summary: <_ as tokio::io::util::async_read_ext::AsyncReadExt>::read_to_string; Argument[self].Reference; Argument[0].Reference; taint | | 36 | Summary: <_ as tokio::io::util::async_read_ext::AsyncReadExt>::read_u8; Argument[self].Reference; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | -| 37 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | -| 38 | Summary: ::into_string; Argument[self].Field[std::ffi::os_str::OsString::inner].Field[std::sys::os_str::bytes::Buf::inner]; ReturnValue.Field[core::result::Result::Ok(0)].Field[alloc::string::String::vec]; value | -| 39 | Summary: ::as_path; Argument[self].Reference; ReturnValue.Reference; value | +| 37 | Summary: ::to_mut; Argument[self].Reference.Field[alloc::borrow::Cow::Owned(0)]; ReturnValue.Reference; value | +| 38 | Summary: ::unwrap; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | +| 39 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 40 | Summary: ::into_string; Argument[self].Field[std::ffi::os_str::OsString::inner].Field[std::sys::os_str::bytes::Buf::inner]; ReturnValue.Field[core::result::Result::Ok(0)].Field[alloc::string::String::vec]; value | +| 41 | Summary: ::from; Argument[0]; ReturnValue.Field[std::path::PathBuf::inner]; value | +| 42 | Summary: ::as_path; Argument[self].Reference; ReturnValue.Reference; value | +| 43 | Summary: ::into_boxed_path; Argument[self]; ReturnValue.Field[alloc::boxed::Box(0)]; taint | +| 44 | Summary: ::into_os_string; Argument[self].Field[std::path::PathBuf::inner]; ReturnValue; value | edges | test.rs:12:13:12:18 | buffer | test.rs:13:14:13:19 | buffer | provenance | | | test.rs:12:31:12:43 | ...::read | test.rs:12:31:12:55 | ...::read(...) [Ok] | provenance | Src:MaD:11 | @@ -51,213 +56,245 @@ edges | test.rs:22:22:22:39 | ...::read_to_string | test.rs:22:22:22:51 | ...::read_to_string(...) [Ok] | provenance | Src:MaD:13 | | test.rs:22:22:22:51 | ...::read_to_string(...) [Ok] | test.rs:22:22:22:52 | TryExpr | provenance | | | test.rs:22:22:22:52 | TryExpr | test.rs:22:13:22:18 | buffer | provenance | | -| test.rs:29:13:29:16 | path | test.rs:30:14:30:17 | path | provenance | | -| test.rs:29:13:29:16 | path | test.rs:31:14:31:17 | path | provenance | | -| test.rs:29:13:29:16 | path | test.rs:40:14:40:17 | path | provenance | | -| test.rs:29:13:29:16 | path | test.rs:41:14:41:17 | path | provenance | | -| test.rs:29:20:29:27 | e.path() | test.rs:29:13:29:16 | path | provenance | | -| test.rs:29:22:29:25 | path | test.rs:29:20:29:27 | e.path() | provenance | Src:MaD:4 MaD:4 | -| test.rs:30:14:30:17 | path | test.rs:30:14:30:25 | path.clone() | provenance | MaD:18 | +| test.rs:30:13:30:16 | path | test.rs:31:14:31:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:32:14:32:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:33:14:33:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:34:39:34:42 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:35:14:35:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:36:14:36:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:37:14:37:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:38:14:38:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:39:14:39:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:40:14:40:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:41:14:41:17 | path | provenance | | +| test.rs:30:13:30:16 | path | test.rs:42:14:42:17 | path | provenance | | +| test.rs:30:20:30:27 | e.path() | test.rs:30:13:30:16 | path | provenance | | +| test.rs:30:22:30:25 | path | test.rs:30:20:30:27 | e.path() | provenance | Src:MaD:4 MaD:4 | | test.rs:31:14:31:17 | path | test.rs:31:14:31:25 | path.clone() | provenance | MaD:18 | -| test.rs:31:14:31:25 | path.clone() | test.rs:31:14:31:35 | ... .as_path() | provenance | MaD:39 | -| test.rs:40:14:40:17 | path | test.rs:40:14:40:32 | path.canonicalize() [Ok] | provenance | MaD:19 | -| test.rs:40:14:40:32 | path.canonicalize() [Ok] | test.rs:40:14:40:41 | ... .unwrap() | provenance | MaD:37 | -| test.rs:43:13:43:21 | file_name | test.rs:44:14:44:22 | file_name | provenance | | -| test.rs:43:13:43:21 | file_name | test.rs:45:14:45:22 | file_name | provenance | | -| test.rs:43:13:43:21 | file_name | test.rs:49:14:49:22 | file_name | provenance | | -| test.rs:43:25:43:37 | e.file_name() | test.rs:43:13:43:21 | file_name | provenance | | -| test.rs:43:27:43:35 | file_name | test.rs:43:25:43:37 | e.file_name() | provenance | Src:MaD:3 MaD:3 | -| test.rs:44:14:44:22 | file_name | test.rs:44:14:44:30 | file_name.clone() | provenance | MaD:18 | +| test.rs:32:14:32:17 | path | test.rs:32:14:32:25 | path.clone() | provenance | MaD:18 | +| test.rs:32:14:32:25 | path.clone() | test.rs:32:14:32:35 | ... .as_path() | provenance | MaD:42 | +| test.rs:33:14:33:17 | path | test.rs:33:14:33:25 | path.clone() | provenance | MaD:18 | +| test.rs:33:14:33:25 | path.clone() | test.rs:33:14:33:42 | ... .into_os_string() | provenance | MaD:44 | +| test.rs:34:39:34:42 | path | test.rs:34:39:34:50 | path.clone() | provenance | MaD:18 | +| test.rs:34:39:34:50 | path.clone() | test.rs:34:39:34:68 | ... .into_boxed_path() [Box(0)] | provenance | MaD:43 | +| test.rs:34:39:34:68 | ... .into_boxed_path() [Box(0)] | test.rs:34:14:34:69 | ...::from(...) | provenance | MaD:41 | +| test.rs:35:14:35:17 | path | test.rs:35:14:35:25 | path.clone() | provenance | MaD:18 | +| test.rs:35:14:35:25 | path.clone() | test.rs:35:14:35:37 | ... .as_os_str() | provenance | MaD:19 | +| test.rs:36:14:36:17 | path | test.rs:36:14:36:25 | path.clone() | provenance | MaD:18 | +| test.rs:36:14:36:25 | path.clone() | test.rs:36:14:36:41 | ... .as_mut_os_str() | provenance | MaD:19 | +| test.rs:37:14:37:17 | path | test.rs:37:14:37:26 | path.to_str() | provenance | MaD:19 | +| test.rs:38:14:38:17 | path | test.rs:38:14:38:31 | path.to_path_buf() | provenance | MaD:19 | +| test.rs:39:14:39:17 | path | test.rs:39:14:39:29 | path.file_name() [Some, &ref] | provenance | MaD:19 | +| test.rs:39:14:39:29 | path.file_name() [Some, &ref] | test.rs:39:14:39:38 | ... .unwrap() | provenance | MaD:38 | +| test.rs:40:14:40:17 | path | test.rs:40:14:40:29 | path.extension() [Some, &ref] | provenance | MaD:19 | +| test.rs:40:14:40:29 | path.extension() [Some, &ref] | test.rs:40:14:40:38 | ... .unwrap() | provenance | MaD:38 | +| test.rs:41:14:41:17 | path | test.rs:41:14:41:32 | path.canonicalize() [Ok] | provenance | MaD:19 | +| test.rs:41:14:41:32 | path.canonicalize() [Ok] | test.rs:41:14:41:41 | ... .unwrap() | provenance | MaD:39 | +| test.rs:44:13:44:21 | file_name | test.rs:45:14:45:22 | file_name | provenance | | +| test.rs:44:13:44:21 | file_name | test.rs:46:14:46:22 | file_name | provenance | | +| test.rs:44:13:44:21 | file_name | test.rs:47:14:47:22 | file_name | provenance | | +| test.rs:44:13:44:21 | file_name | test.rs:48:14:48:22 | file_name | provenance | | +| test.rs:44:13:44:21 | file_name | test.rs:49:14:49:22 | file_name | provenance | | +| test.rs:44:13:44:21 | file_name | test.rs:50:14:50:22 | file_name | provenance | | +| test.rs:44:25:44:37 | e.file_name() | test.rs:44:13:44:21 | file_name | provenance | | +| test.rs:44:27:44:35 | file_name | test.rs:44:25:44:37 | e.file_name() | provenance | Src:MaD:3 MaD:3 | | test.rs:45:14:45:22 | file_name | test.rs:45:14:45:30 | file_name.clone() | provenance | MaD:18 | -| test.rs:45:14:45:30 | file_name.clone() | test.rs:45:14:45:44 | ... .into_string() [Ok, String] | provenance | MaD:38 | -| test.rs:45:14:45:44 | ... .into_string() [Ok, String] | test.rs:45:14:45:53 | ... .unwrap() | provenance | MaD:37 | -| test.rs:65:13:65:18 | target | test.rs:66:14:66:19 | target | provenance | | -| test.rs:65:22:65:34 | ...::read_link | test.rs:65:22:65:49 | ...::read_link(...) [Ok] | provenance | Src:MaD:12 | -| test.rs:65:22:65:49 | ...::read_link(...) [Ok] | test.rs:65:22:65:50 | TryExpr | provenance | | -| test.rs:65:22:65:50 | TryExpr | test.rs:65:13:65:18 | target | provenance | | -| test.rs:74:13:74:18 | buffer | test.rs:75:14:75:19 | buffer | provenance | | -| test.rs:74:31:74:45 | ...::read | test.rs:74:31:74:57 | ...::read(...) [future, Ok] | provenance | Src:MaD:14 | -| test.rs:74:31:74:57 | ...::read(...) [future, Ok] | test.rs:74:31:74:63 | await ... [Ok] | provenance | | -| test.rs:74:31:74:63 | await ... [Ok] | test.rs:74:31:74:64 | TryExpr | provenance | | -| test.rs:74:31:74:64 | TryExpr | test.rs:74:13:74:18 | buffer | provenance | | -| test.rs:79:13:79:18 | buffer | test.rs:80:14:80:19 | buffer | provenance | | -| test.rs:79:31:79:45 | ...::read | test.rs:79:31:79:57 | ...::read(...) [future, Ok] | provenance | Src:MaD:14 | -| test.rs:79:31:79:57 | ...::read(...) [future, Ok] | test.rs:79:31:79:63 | await ... [Ok] | provenance | | -| test.rs:79:31:79:63 | await ... [Ok] | test.rs:79:31:79:64 | TryExpr | provenance | | -| test.rs:79:31:79:64 | TryExpr | test.rs:79:13:79:18 | buffer | provenance | | -| test.rs:84:13:84:18 | buffer | test.rs:85:14:85:19 | buffer | provenance | | -| test.rs:84:22:84:46 | ...::read_to_string | test.rs:84:22:84:58 | ...::read_to_string(...) [future, Ok] | provenance | Src:MaD:16 | -| test.rs:84:22:84:58 | ...::read_to_string(...) [future, Ok] | test.rs:84:22:84:64 | await ... [Ok] | provenance | | -| test.rs:84:22:84:64 | await ... [Ok] | test.rs:84:22:84:65 | TryExpr | provenance | | -| test.rs:84:22:84:65 | TryExpr | test.rs:84:13:84:18 | buffer | provenance | | -| test.rs:90:13:90:16 | path | test.rs:92:14:92:17 | path | provenance | | -| test.rs:90:20:90:31 | entry.path() | test.rs:90:13:90:16 | path | provenance | | -| test.rs:90:26:90:29 | path | test.rs:90:20:90:31 | entry.path() | provenance | Src:MaD:10 MaD:10 | -| test.rs:91:13:91:21 | file_name | test.rs:93:14:93:22 | file_name | provenance | | -| test.rs:91:25:91:41 | entry.file_name() | test.rs:91:13:91:21 | file_name | provenance | | -| test.rs:91:31:91:39 | file_name | test.rs:91:25:91:41 | entry.file_name() | provenance | Src:MaD:9 MaD:9 | -| test.rs:97:13:97:18 | target | test.rs:98:14:98:19 | target | provenance | | -| test.rs:97:22:97:41 | ...::read_link | test.rs:97:22:97:56 | ...::read_link(...) [future, Ok] | provenance | Src:MaD:15 | -| test.rs:97:22:97:56 | ...::read_link(...) [future, Ok] | test.rs:97:22:97:62 | await ... [Ok] | provenance | | -| test.rs:97:22:97:62 | await ... [Ok] | test.rs:97:22:97:63 | TryExpr | provenance | | -| test.rs:97:22:97:63 | TryExpr | test.rs:97:13:97:18 | target | provenance | | -| test.rs:107:9:107:16 | mut file | test.rs:111:22:111:25 | file | provenance | | -| test.rs:107:9:107:16 | mut file | test.rs:117:22:117:25 | file | provenance | | -| test.rs:107:9:107:16 | mut file | test.rs:123:22:123:25 | file | provenance | | -| test.rs:107:9:107:16 | mut file | test.rs:129:9:129:12 | file | provenance | | -| test.rs:107:9:107:16 | mut file | test.rs:133:17:133:20 | file | provenance | | -| test.rs:107:20:107:38 | ...::open | test.rs:107:20:107:50 | ...::open(...) [Ok] | provenance | Src:MaD:5 | -| test.rs:107:20:107:50 | ...::open(...) [Ok] | test.rs:107:20:107:51 | TryExpr | provenance | | -| test.rs:107:20:107:51 | TryExpr | test.rs:107:9:107:16 | mut file | provenance | | -| test.rs:111:22:111:25 | file | test.rs:111:32:111:42 | [post] &mut buffer [&ref] | provenance | MaD:23 | -| test.rs:111:32:111:42 | [post] &mut buffer [&ref] | test.rs:111:37:111:42 | [post] buffer | provenance | | -| test.rs:111:37:111:42 | [post] buffer | test.rs:112:15:112:20 | buffer | provenance | | -| test.rs:112:15:112:20 | buffer | test.rs:112:14:112:20 | &buffer | provenance | | -| test.rs:117:22:117:25 | file | test.rs:117:39:117:49 | [post] &mut buffer [&ref] | provenance | MaD:25 | -| test.rs:117:39:117:49 | [post] &mut buffer [&ref] | test.rs:117:44:117:49 | [post] buffer | provenance | | -| test.rs:117:44:117:49 | [post] buffer | test.rs:118:15:118:20 | buffer | provenance | | -| test.rs:118:15:118:20 | buffer | test.rs:118:14:118:20 | &buffer | provenance | | -| test.rs:123:22:123:25 | file | test.rs:123:42:123:52 | [post] &mut buffer [&ref] | provenance | MaD:26 | -| test.rs:123:42:123:52 | [post] &mut buffer [&ref] | test.rs:123:47:123:52 | [post] buffer | provenance | | -| test.rs:123:47:123:52 | [post] buffer | test.rs:124:15:124:20 | buffer | provenance | | -| test.rs:124:15:124:20 | buffer | test.rs:124:14:124:20 | &buffer | provenance | | -| test.rs:129:9:129:12 | file | test.rs:129:25:129:35 | [post] &mut buffer [&ref] | provenance | MaD:24 | -| test.rs:129:25:129:35 | [post] &mut buffer [&ref] | test.rs:129:30:129:35 | [post] buffer | provenance | | -| test.rs:129:30:129:35 | [post] buffer | test.rs:130:15:130:20 | buffer | provenance | | -| test.rs:130:15:130:20 | buffer | test.rs:130:14:130:20 | &buffer | provenance | | -| test.rs:133:17:133:20 | file | test.rs:133:17:133:28 | file.bytes() | provenance | MaD:20 | -| test.rs:133:17:133:28 | file.bytes() | test.rs:134:14:134:17 | byte | provenance | | -| test.rs:140:13:140:18 | mut f1 | test.rs:142:22:142:23 | f1 | provenance | | -| test.rs:140:22:140:63 | ... .open(...) [Ok] | test.rs:140:22:140:72 | ... .unwrap() | provenance | MaD:37 | -| test.rs:140:22:140:72 | ... .unwrap() | test.rs:140:13:140:18 | mut f1 | provenance | | -| test.rs:140:50:140:53 | open | test.rs:140:22:140:63 | ... .open(...) [Ok] | provenance | Src:MaD:6 | -| test.rs:142:22:142:23 | f1 | test.rs:142:30:142:40 | [post] &mut buffer [&ref] | provenance | MaD:23 | -| test.rs:142:30:142:40 | [post] &mut buffer [&ref] | test.rs:142:35:142:40 | [post] buffer | provenance | | -| test.rs:142:35:142:40 | [post] buffer | test.rs:143:15:143:20 | buffer | provenance | | -| test.rs:143:15:143:20 | buffer | test.rs:143:14:143:20 | &buffer | provenance | | -| test.rs:147:13:147:18 | mut f2 | test.rs:149:22:149:23 | f2 | provenance | | -| test.rs:147:22:147:80 | ... .open(...) [Ok] | test.rs:147:22:147:89 | ... .unwrap() | provenance | MaD:37 | -| test.rs:147:22:147:89 | ... .unwrap() | test.rs:147:13:147:18 | mut f2 | provenance | | -| test.rs:147:67:147:70 | open | test.rs:147:22:147:80 | ... .open(...) [Ok] | provenance | Src:MaD:6 | -| test.rs:149:22:149:23 | f2 | test.rs:149:30:149:40 | [post] &mut buffer [&ref] | provenance | MaD:23 | -| test.rs:149:30:149:40 | [post] &mut buffer [&ref] | test.rs:149:35:149:40 | [post] buffer | provenance | | -| test.rs:149:35:149:40 | [post] buffer | test.rs:150:15:150:20 | buffer | provenance | | -| test.rs:150:15:150:20 | buffer | test.rs:150:14:150:20 | &buffer | provenance | | -| test.rs:154:13:154:18 | mut f3 | test.rs:156:22:156:23 | f3 | provenance | | -| test.rs:154:22:154:114 | ... .open(...) [Ok] | test.rs:154:22:154:123 | ... .unwrap() | provenance | MaD:37 | -| test.rs:154:22:154:123 | ... .unwrap() | test.rs:154:13:154:18 | mut f3 | provenance | | -| test.rs:154:101:154:104 | open | test.rs:154:22:154:114 | ... .open(...) [Ok] | provenance | Src:MaD:6 | -| test.rs:156:22:156:23 | f3 | test.rs:156:30:156:40 | [post] &mut buffer [&ref] | provenance | MaD:23 | -| test.rs:156:30:156:40 | [post] &mut buffer [&ref] | test.rs:156:35:156:40 | [post] buffer | provenance | | -| test.rs:156:35:156:40 | [post] buffer | test.rs:157:15:157:20 | buffer | provenance | | -| test.rs:157:15:157:20 | buffer | test.rs:157:14:157:20 | &buffer | provenance | | -| test.rs:164:13:164:17 | file1 | test.rs:166:26:166:30 | file1 | provenance | | -| test.rs:164:21:164:39 | ...::open | test.rs:164:21:164:51 | ...::open(...) [Ok] | provenance | Src:MaD:5 | -| test.rs:164:21:164:51 | ...::open(...) [Ok] | test.rs:164:21:164:52 | TryExpr | provenance | | -| test.rs:164:21:164:52 | TryExpr | test.rs:164:13:164:17 | file1 | provenance | | -| test.rs:165:13:165:17 | file2 | test.rs:166:38:166:42 | file2 | provenance | | -| test.rs:165:21:165:39 | ...::open | test.rs:165:21:165:59 | ...::open(...) [Ok] | provenance | Src:MaD:5 | -| test.rs:165:21:165:59 | ...::open(...) [Ok] | test.rs:165:21:165:60 | TryExpr | provenance | | -| test.rs:165:21:165:60 | TryExpr | test.rs:165:13:165:17 | file2 | provenance | | -| test.rs:166:13:166:22 | mut reader | test.rs:167:9:167:14 | reader | provenance | | -| test.rs:166:26:166:30 | file1 | test.rs:166:26:166:43 | file1.chain(...) | provenance | MaD:22 | -| test.rs:166:26:166:43 | file1.chain(...) | test.rs:166:13:166:22 | mut reader | provenance | | -| test.rs:166:38:166:42 | file2 | test.rs:166:26:166:43 | file1.chain(...) | provenance | MaD:21 | -| test.rs:167:9:167:14 | reader | test.rs:167:31:167:41 | [post] &mut buffer [&ref] | provenance | MaD:26 | -| test.rs:167:31:167:41 | [post] &mut buffer [&ref] | test.rs:167:36:167:41 | [post] buffer | provenance | | -| test.rs:167:36:167:41 | [post] buffer | test.rs:168:15:168:20 | buffer | provenance | | -| test.rs:168:15:168:20 | buffer | test.rs:168:14:168:20 | &buffer | provenance | | -| test.rs:173:13:173:17 | file1 | test.rs:174:26:174:30 | file1 | provenance | | -| test.rs:173:21:173:39 | ...::open | test.rs:173:21:173:51 | ...::open(...) [Ok] | provenance | Src:MaD:5 | -| test.rs:173:21:173:51 | ...::open(...) [Ok] | test.rs:173:21:173:52 | TryExpr | provenance | | -| test.rs:173:21:173:52 | TryExpr | test.rs:173:13:173:17 | file1 | provenance | | -| test.rs:174:13:174:22 | mut reader | test.rs:175:9:175:14 | reader | provenance | | -| test.rs:174:26:174:30 | file1 | test.rs:174:26:174:40 | file1.take(...) | provenance | MaD:27 | -| test.rs:174:26:174:40 | file1.take(...) | test.rs:174:13:174:22 | mut reader | provenance | | -| test.rs:175:9:175:14 | reader | test.rs:175:31:175:41 | [post] &mut buffer [&ref] | provenance | MaD:26 | -| test.rs:175:31:175:41 | [post] &mut buffer [&ref] | test.rs:175:36:175:41 | [post] buffer | provenance | | -| test.rs:175:36:175:41 | [post] buffer | test.rs:176:15:176:20 | buffer | provenance | | -| test.rs:176:15:176:20 | buffer | test.rs:176:14:176:20 | &buffer | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:189:22:189:25 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:195:22:195:25 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:201:22:201:25 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:207:9:207:12 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:212:18:212:21 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:213:18:213:21 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:214:18:214:21 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:215:18:215:21 | file | provenance | | -| test.rs:185:9:185:16 | mut file | test.rs:224:9:224:12 | file | provenance | | -| test.rs:185:20:185:40 | ...::open | test.rs:185:20:185:52 | ...::open(...) [future, Ok] | provenance | Src:MaD:7 | -| test.rs:185:20:185:52 | ...::open(...) [future, Ok] | test.rs:185:20:185:58 | await ... [Ok] | provenance | | -| test.rs:185:20:185:58 | await ... [Ok] | test.rs:185:20:185:59 | TryExpr | provenance | | -| test.rs:185:20:185:59 | TryExpr | test.rs:185:9:185:16 | mut file | provenance | | -| test.rs:189:22:189:25 | file | test.rs:189:32:189:42 | [post] &mut buffer [&ref] | provenance | MaD:28 | -| test.rs:189:32:189:42 | [post] &mut buffer [&ref] | test.rs:189:37:189:42 | [post] buffer | provenance | | -| test.rs:189:37:189:42 | [post] buffer | test.rs:190:15:190:20 | buffer | provenance | | -| test.rs:190:15:190:20 | buffer | test.rs:190:14:190:20 | &buffer | provenance | | -| test.rs:195:22:195:25 | file | test.rs:195:39:195:49 | [post] &mut buffer [&ref] | provenance | MaD:34 | -| test.rs:195:39:195:49 | [post] &mut buffer [&ref] | test.rs:195:44:195:49 | [post] buffer | provenance | | -| test.rs:195:44:195:49 | [post] buffer | test.rs:196:15:196:20 | buffer | provenance | | -| test.rs:196:15:196:20 | buffer | test.rs:196:14:196:20 | &buffer | provenance | | -| test.rs:201:22:201:25 | file | test.rs:201:42:201:52 | [post] &mut buffer [&ref] | provenance | MaD:35 | -| test.rs:201:42:201:52 | [post] &mut buffer [&ref] | test.rs:201:47:201:52 | [post] buffer | provenance | | -| test.rs:201:47:201:52 | [post] buffer | test.rs:202:15:202:20 | buffer | provenance | | +| test.rs:46:14:46:22 | file_name | test.rs:46:14:46:30 | file_name.clone() | provenance | MaD:18 | +| test.rs:46:14:46:30 | file_name.clone() | test.rs:46:14:46:44 | ... .into_string() [Ok, String] | provenance | MaD:40 | +| test.rs:46:14:46:44 | ... .into_string() [Ok, String] | test.rs:46:14:46:53 | ... .unwrap() | provenance | MaD:39 | +| test.rs:47:14:47:22 | file_name | test.rs:47:14:47:31 | file_name.to_str() [Some, &ref] | provenance | MaD:19 | +| test.rs:47:14:47:31 | file_name.to_str() [Some, &ref] | test.rs:47:14:47:40 | ... .unwrap() | provenance | MaD:38 | +| test.rs:48:14:48:22 | file_name | test.rs:48:14:48:40 | file_name.to_string_lossy() [Owned] | provenance | MaD:19 | +| test.rs:48:14:48:40 | file_name.to_string_lossy() [Owned] | test.rs:48:14:48:49 | ... .to_mut() | provenance | MaD:37 | +| test.rs:49:14:49:22 | file_name | test.rs:49:14:49:30 | file_name.clone() | provenance | MaD:18 | +| test.rs:49:14:49:30 | file_name.clone() | test.rs:49:14:49:49 | ... .as_encoded_bytes() | provenance | MaD:19 | +| test.rs:68:13:68:18 | target | test.rs:69:14:69:19 | target | provenance | | +| test.rs:68:22:68:34 | ...::read_link | test.rs:68:22:68:49 | ...::read_link(...) [Ok] | provenance | Src:MaD:12 | +| test.rs:68:22:68:49 | ...::read_link(...) [Ok] | test.rs:68:22:68:50 | TryExpr | provenance | | +| test.rs:68:22:68:50 | TryExpr | test.rs:68:13:68:18 | target | provenance | | +| test.rs:77:13:77:18 | buffer | test.rs:78:14:78:19 | buffer | provenance | | +| test.rs:77:31:77:45 | ...::read | test.rs:77:31:77:57 | ...::read(...) [future, Ok] | provenance | Src:MaD:14 | +| test.rs:77:31:77:57 | ...::read(...) [future, Ok] | test.rs:77:31:77:63 | await ... [Ok] | provenance | | +| test.rs:77:31:77:63 | await ... [Ok] | test.rs:77:31:77:64 | TryExpr | provenance | | +| test.rs:77:31:77:64 | TryExpr | test.rs:77:13:77:18 | buffer | provenance | | +| test.rs:82:13:82:18 | buffer | test.rs:83:14:83:19 | buffer | provenance | | +| test.rs:82:31:82:45 | ...::read | test.rs:82:31:82:57 | ...::read(...) [future, Ok] | provenance | Src:MaD:14 | +| test.rs:82:31:82:57 | ...::read(...) [future, Ok] | test.rs:82:31:82:63 | await ... [Ok] | provenance | | +| test.rs:82:31:82:63 | await ... [Ok] | test.rs:82:31:82:64 | TryExpr | provenance | | +| test.rs:82:31:82:64 | TryExpr | test.rs:82:13:82:18 | buffer | provenance | | +| test.rs:87:13:87:18 | buffer | test.rs:88:14:88:19 | buffer | provenance | | +| test.rs:87:22:87:46 | ...::read_to_string | test.rs:87:22:87:58 | ...::read_to_string(...) [future, Ok] | provenance | Src:MaD:16 | +| test.rs:87:22:87:58 | ...::read_to_string(...) [future, Ok] | test.rs:87:22:87:64 | await ... [Ok] | provenance | | +| test.rs:87:22:87:64 | await ... [Ok] | test.rs:87:22:87:65 | TryExpr | provenance | | +| test.rs:87:22:87:65 | TryExpr | test.rs:87:13:87:18 | buffer | provenance | | +| test.rs:93:13:93:16 | path | test.rs:95:14:95:17 | path | provenance | | +| test.rs:93:20:93:31 | entry.path() | test.rs:93:13:93:16 | path | provenance | | +| test.rs:93:26:93:29 | path | test.rs:93:20:93:31 | entry.path() | provenance | Src:MaD:10 MaD:10 | +| test.rs:94:13:94:21 | file_name | test.rs:96:14:96:22 | file_name | provenance | | +| test.rs:94:25:94:41 | entry.file_name() | test.rs:94:13:94:21 | file_name | provenance | | +| test.rs:94:31:94:39 | file_name | test.rs:94:25:94:41 | entry.file_name() | provenance | Src:MaD:9 MaD:9 | +| test.rs:100:13:100:18 | target | test.rs:101:14:101:19 | target | provenance | | +| test.rs:100:22:100:41 | ...::read_link | test.rs:100:22:100:56 | ...::read_link(...) [future, Ok] | provenance | Src:MaD:15 | +| test.rs:100:22:100:56 | ...::read_link(...) [future, Ok] | test.rs:100:22:100:62 | await ... [Ok] | provenance | | +| test.rs:100:22:100:62 | await ... [Ok] | test.rs:100:22:100:63 | TryExpr | provenance | | +| test.rs:100:22:100:63 | TryExpr | test.rs:100:13:100:18 | target | provenance | | +| test.rs:110:9:110:16 | mut file | test.rs:114:22:114:25 | file | provenance | | +| test.rs:110:9:110:16 | mut file | test.rs:120:22:120:25 | file | provenance | | +| test.rs:110:9:110:16 | mut file | test.rs:126:22:126:25 | file | provenance | | +| test.rs:110:9:110:16 | mut file | test.rs:132:9:132:12 | file | provenance | | +| test.rs:110:9:110:16 | mut file | test.rs:136:17:136:20 | file | provenance | | +| test.rs:110:20:110:38 | ...::open | test.rs:110:20:110:50 | ...::open(...) [Ok] | provenance | Src:MaD:5 | +| test.rs:110:20:110:50 | ...::open(...) [Ok] | test.rs:110:20:110:51 | TryExpr | provenance | | +| test.rs:110:20:110:51 | TryExpr | test.rs:110:9:110:16 | mut file | provenance | | +| test.rs:114:22:114:25 | file | test.rs:114:32:114:42 | [post] &mut buffer [&ref] | provenance | MaD:23 | +| test.rs:114:32:114:42 | [post] &mut buffer [&ref] | test.rs:114:37:114:42 | [post] buffer | provenance | | +| test.rs:114:37:114:42 | [post] buffer | test.rs:115:15:115:20 | buffer | provenance | | +| test.rs:115:15:115:20 | buffer | test.rs:115:14:115:20 | &buffer | provenance | | +| test.rs:120:22:120:25 | file | test.rs:120:39:120:49 | [post] &mut buffer [&ref] | provenance | MaD:25 | +| test.rs:120:39:120:49 | [post] &mut buffer [&ref] | test.rs:120:44:120:49 | [post] buffer | provenance | | +| test.rs:120:44:120:49 | [post] buffer | test.rs:121:15:121:20 | buffer | provenance | | +| test.rs:121:15:121:20 | buffer | test.rs:121:14:121:20 | &buffer | provenance | | +| test.rs:126:22:126:25 | file | test.rs:126:42:126:52 | [post] &mut buffer [&ref] | provenance | MaD:26 | +| test.rs:126:42:126:52 | [post] &mut buffer [&ref] | test.rs:126:47:126:52 | [post] buffer | provenance | | +| test.rs:126:47:126:52 | [post] buffer | test.rs:127:15:127:20 | buffer | provenance | | +| test.rs:127:15:127:20 | buffer | test.rs:127:14:127:20 | &buffer | provenance | | +| test.rs:132:9:132:12 | file | test.rs:132:25:132:35 | [post] &mut buffer [&ref] | provenance | MaD:24 | +| test.rs:132:25:132:35 | [post] &mut buffer [&ref] | test.rs:132:30:132:35 | [post] buffer | provenance | | +| test.rs:132:30:132:35 | [post] buffer | test.rs:133:15:133:20 | buffer | provenance | | +| test.rs:133:15:133:20 | buffer | test.rs:133:14:133:20 | &buffer | provenance | | +| test.rs:136:17:136:20 | file | test.rs:136:17:136:28 | file.bytes() | provenance | MaD:20 | +| test.rs:136:17:136:28 | file.bytes() | test.rs:137:14:137:17 | byte | provenance | | +| test.rs:143:13:143:18 | mut f1 | test.rs:145:22:145:23 | f1 | provenance | | +| test.rs:143:22:143:63 | ... .open(...) [Ok] | test.rs:143:22:143:72 | ... .unwrap() | provenance | MaD:39 | +| test.rs:143:22:143:72 | ... .unwrap() | test.rs:143:13:143:18 | mut f1 | provenance | | +| test.rs:143:50:143:53 | open | test.rs:143:22:143:63 | ... .open(...) [Ok] | provenance | Src:MaD:6 | +| test.rs:145:22:145:23 | f1 | test.rs:145:30:145:40 | [post] &mut buffer [&ref] | provenance | MaD:23 | +| test.rs:145:30:145:40 | [post] &mut buffer [&ref] | test.rs:145:35:145:40 | [post] buffer | provenance | | +| test.rs:145:35:145:40 | [post] buffer | test.rs:146:15:146:20 | buffer | provenance | | +| test.rs:146:15:146:20 | buffer | test.rs:146:14:146:20 | &buffer | provenance | | +| test.rs:150:13:150:18 | mut f2 | test.rs:155:22:155:23 | f2 | provenance | | +| test.rs:150:22:152:27 | ... .open(...) [Ok] | test.rs:150:22:153:21 | ... .unwrap() | provenance | MaD:39 | +| test.rs:150:22:153:21 | ... .unwrap() | test.rs:150:13:150:18 | mut f2 | provenance | | +| test.rs:152:14:152:17 | open | test.rs:150:22:152:27 | ... .open(...) [Ok] | provenance | Src:MaD:6 | +| test.rs:155:22:155:23 | f2 | test.rs:155:30:155:40 | [post] &mut buffer [&ref] | provenance | MaD:23 | +| test.rs:155:30:155:40 | [post] &mut buffer [&ref] | test.rs:155:35:155:40 | [post] buffer | provenance | | +| test.rs:155:35:155:40 | [post] buffer | test.rs:156:15:156:20 | buffer | provenance | | +| test.rs:156:15:156:20 | buffer | test.rs:156:14:156:20 | &buffer | provenance | | +| test.rs:160:13:160:18 | mut f3 | test.rs:168:22:168:23 | f3 | provenance | | +| test.rs:160:22:165:27 | ... .open(...) [Ok] | test.rs:160:22:166:21 | ... .unwrap() | provenance | MaD:39 | +| test.rs:160:22:166:21 | ... .unwrap() | test.rs:160:13:160:18 | mut f3 | provenance | | +| test.rs:165:14:165:17 | open | test.rs:160:22:165:27 | ... .open(...) [Ok] | provenance | Src:MaD:6 | +| test.rs:168:22:168:23 | f3 | test.rs:168:30:168:40 | [post] &mut buffer [&ref] | provenance | MaD:23 | +| test.rs:168:30:168:40 | [post] &mut buffer [&ref] | test.rs:168:35:168:40 | [post] buffer | provenance | | +| test.rs:168:35:168:40 | [post] buffer | test.rs:169:15:169:20 | buffer | provenance | | +| test.rs:169:15:169:20 | buffer | test.rs:169:14:169:20 | &buffer | provenance | | +| test.rs:176:13:176:17 | file1 | test.rs:178:26:178:30 | file1 | provenance | | +| test.rs:176:21:176:39 | ...::open | test.rs:176:21:176:51 | ...::open(...) [Ok] | provenance | Src:MaD:5 | +| test.rs:176:21:176:51 | ...::open(...) [Ok] | test.rs:176:21:176:52 | TryExpr | provenance | | +| test.rs:176:21:176:52 | TryExpr | test.rs:176:13:176:17 | file1 | provenance | | +| test.rs:177:13:177:17 | file2 | test.rs:178:38:178:42 | file2 | provenance | | +| test.rs:177:21:177:39 | ...::open | test.rs:177:21:177:59 | ...::open(...) [Ok] | provenance | Src:MaD:5 | +| test.rs:177:21:177:59 | ...::open(...) [Ok] | test.rs:177:21:177:60 | TryExpr | provenance | | +| test.rs:177:21:177:60 | TryExpr | test.rs:177:13:177:17 | file2 | provenance | | +| test.rs:178:13:178:22 | mut reader | test.rs:179:9:179:14 | reader | provenance | | +| test.rs:178:26:178:30 | file1 | test.rs:178:26:178:43 | file1.chain(...) | provenance | MaD:22 | +| test.rs:178:26:178:43 | file1.chain(...) | test.rs:178:13:178:22 | mut reader | provenance | | +| test.rs:178:38:178:42 | file2 | test.rs:178:26:178:43 | file1.chain(...) | provenance | MaD:21 | +| test.rs:179:9:179:14 | reader | test.rs:179:31:179:41 | [post] &mut buffer [&ref] | provenance | MaD:26 | +| test.rs:179:31:179:41 | [post] &mut buffer [&ref] | test.rs:179:36:179:41 | [post] buffer | provenance | | +| test.rs:179:36:179:41 | [post] buffer | test.rs:180:15:180:20 | buffer | provenance | | +| test.rs:180:15:180:20 | buffer | test.rs:180:14:180:20 | &buffer | provenance | | +| test.rs:185:13:185:17 | file1 | test.rs:186:26:186:30 | file1 | provenance | | +| test.rs:185:21:185:39 | ...::open | test.rs:185:21:185:51 | ...::open(...) [Ok] | provenance | Src:MaD:5 | +| test.rs:185:21:185:51 | ...::open(...) [Ok] | test.rs:185:21:185:52 | TryExpr | provenance | | +| test.rs:185:21:185:52 | TryExpr | test.rs:185:13:185:17 | file1 | provenance | | +| test.rs:186:13:186:22 | mut reader | test.rs:187:9:187:14 | reader | provenance | | +| test.rs:186:26:186:30 | file1 | test.rs:186:26:186:40 | file1.take(...) | provenance | MaD:27 | +| test.rs:186:26:186:40 | file1.take(...) | test.rs:186:13:186:22 | mut reader | provenance | | +| test.rs:187:9:187:14 | reader | test.rs:187:31:187:41 | [post] &mut buffer [&ref] | provenance | MaD:26 | +| test.rs:187:31:187:41 | [post] &mut buffer [&ref] | test.rs:187:36:187:41 | [post] buffer | provenance | | +| test.rs:187:36:187:41 | [post] buffer | test.rs:188:15:188:20 | buffer | provenance | | +| test.rs:188:15:188:20 | buffer | test.rs:188:14:188:20 | &buffer | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:201:22:201:25 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:207:22:207:25 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:213:22:213:25 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:219:9:219:12 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:224:18:224:21 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:225:18:225:21 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:226:18:226:21 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:227:18:227:21 | file | provenance | | +| test.rs:197:9:197:16 | mut file | test.rs:236:9:236:12 | file | provenance | | +| test.rs:197:20:197:40 | ...::open | test.rs:197:20:197:52 | ...::open(...) [future, Ok] | provenance | Src:MaD:7 | +| test.rs:197:20:197:52 | ...::open(...) [future, Ok] | test.rs:197:20:197:58 | await ... [Ok] | provenance | | +| test.rs:197:20:197:58 | await ... [Ok] | test.rs:197:20:197:59 | TryExpr | provenance | | +| test.rs:197:20:197:59 | TryExpr | test.rs:197:9:197:16 | mut file | provenance | | +| test.rs:201:22:201:25 | file | test.rs:201:32:201:42 | [post] &mut buffer [&ref] | provenance | MaD:28 | +| test.rs:201:32:201:42 | [post] &mut buffer [&ref] | test.rs:201:37:201:42 | [post] buffer | provenance | | +| test.rs:201:37:201:42 | [post] buffer | test.rs:202:15:202:20 | buffer | provenance | | | test.rs:202:15:202:20 | buffer | test.rs:202:14:202:20 | &buffer | provenance | | -| test.rs:207:9:207:12 | file | test.rs:207:25:207:35 | [post] &mut buffer [&ref] | provenance | MaD:30 | -| test.rs:207:25:207:35 | [post] &mut buffer [&ref] | test.rs:207:30:207:35 | [post] buffer | provenance | | -| test.rs:207:30:207:35 | [post] buffer | test.rs:208:15:208:20 | buffer | provenance | | +| test.rs:207:22:207:25 | file | test.rs:207:39:207:49 | [post] &mut buffer [&ref] | provenance | MaD:34 | +| test.rs:207:39:207:49 | [post] &mut buffer [&ref] | test.rs:207:44:207:49 | [post] buffer | provenance | | +| test.rs:207:44:207:49 | [post] buffer | test.rs:208:15:208:20 | buffer | provenance | | | test.rs:208:15:208:20 | buffer | test.rs:208:14:208:20 | &buffer | provenance | | -| test.rs:212:13:212:14 | v1 | test.rs:216:14:216:15 | v1 | provenance | | -| test.rs:212:18:212:21 | file | test.rs:212:18:212:31 | file.read_u8() [future, Ok] | provenance | MaD:36 | -| test.rs:212:18:212:31 | file.read_u8() [future, Ok] | test.rs:212:18:212:37 | await ... [Ok] | provenance | | -| test.rs:212:18:212:37 | await ... [Ok] | test.rs:212:18:212:38 | TryExpr | provenance | | -| test.rs:212:18:212:38 | TryExpr | test.rs:212:13:212:14 | v1 | provenance | | -| test.rs:213:13:213:14 | v2 | test.rs:217:14:217:15 | v2 | provenance | | -| test.rs:213:18:213:21 | file | test.rs:213:18:213:32 | file.read_i16() [future, Ok] | provenance | MaD:32 | -| test.rs:213:18:213:32 | file.read_i16() [future, Ok] | test.rs:213:18:213:38 | await ... [Ok] | provenance | | -| test.rs:213:18:213:38 | await ... [Ok] | test.rs:213:18:213:39 | TryExpr | provenance | | -| test.rs:213:18:213:39 | TryExpr | test.rs:213:13:213:14 | v2 | provenance | | -| test.rs:214:13:214:14 | v3 | test.rs:218:14:218:15 | v3 | provenance | | -| test.rs:214:18:214:21 | file | test.rs:214:18:214:32 | file.read_f32() [future, Ok] | provenance | MaD:31 | -| test.rs:214:18:214:32 | file.read_f32() [future, Ok] | test.rs:214:18:214:38 | await ... [Ok] | provenance | | -| test.rs:214:18:214:38 | await ... [Ok] | test.rs:214:18:214:39 | TryExpr | provenance | | -| test.rs:214:18:214:39 | TryExpr | test.rs:214:13:214:14 | v3 | provenance | | -| test.rs:215:13:215:14 | v4 | test.rs:219:14:219:15 | v4 | provenance | | -| test.rs:215:18:215:21 | file | test.rs:215:18:215:35 | file.read_i64_le() [future, Ok] | provenance | MaD:33 | -| test.rs:215:18:215:35 | file.read_i64_le() [future, Ok] | test.rs:215:18:215:41 | await ... [Ok] | provenance | | -| test.rs:215:18:215:41 | await ... [Ok] | test.rs:215:18:215:42 | TryExpr | provenance | | -| test.rs:215:18:215:42 | TryExpr | test.rs:215:13:215:14 | v4 | provenance | | -| test.rs:224:9:224:12 | file | test.rs:224:23:224:33 | [post] &mut buffer [&ref] | provenance | MaD:29 | -| test.rs:224:23:224:33 | [post] &mut buffer [&ref] | test.rs:224:28:224:33 | [post] buffer | provenance | | -| test.rs:224:28:224:33 | [post] buffer | test.rs:225:15:225:20 | buffer | provenance | | -| test.rs:225:15:225:20 | buffer | test.rs:225:14:225:20 | &buffer | provenance | | -| test.rs:231:13:231:18 | mut f1 | test.rs:233:22:233:23 | f1 | provenance | | -| test.rs:231:22:231:65 | ... .open(...) [future, Ok] | test.rs:231:22:231:71 | await ... [Ok] | provenance | | -| test.rs:231:22:231:71 | await ... [Ok] | test.rs:231:22:231:72 | TryExpr | provenance | | -| test.rs:231:22:231:72 | TryExpr | test.rs:231:13:231:18 | mut f1 | provenance | | -| test.rs:231:52:231:55 | open | test.rs:231:22:231:65 | ... .open(...) [future, Ok] | provenance | Src:MaD:8 | -| test.rs:233:22:233:23 | f1 | test.rs:233:30:233:40 | [post] &mut buffer [&ref] | provenance | MaD:28 | -| test.rs:233:30:233:40 | [post] &mut buffer [&ref] | test.rs:233:35:233:40 | [post] buffer | provenance | | -| test.rs:233:35:233:40 | [post] buffer | test.rs:234:15:234:20 | buffer | provenance | | -| test.rs:234:15:234:20 | buffer | test.rs:234:14:234:20 | &buffer | provenance | | -| test.rs:262:9:262:16 | mut file | test.rs:266:22:266:25 | file | provenance | | -| test.rs:262:20:262:44 | ...::open | test.rs:262:20:262:56 | ...::open(...) [future, Ok] | provenance | Src:MaD:1 | -| test.rs:262:20:262:56 | ...::open(...) [future, Ok] | test.rs:262:20:262:62 | await ... [Ok] | provenance | | -| test.rs:262:20:262:62 | await ... [Ok] | test.rs:262:20:262:63 | TryExpr | provenance | | -| test.rs:262:20:262:63 | TryExpr | test.rs:262:9:262:16 | mut file | provenance | | -| test.rs:266:22:266:25 | file | test.rs:266:32:266:42 | [post] &mut buffer [&ref] | provenance | MaD:17 | -| test.rs:266:32:266:42 | [post] &mut buffer [&ref] | test.rs:266:37:266:42 | [post] buffer | provenance | | -| test.rs:266:37:266:42 | [post] buffer | test.rs:267:15:267:20 | buffer | provenance | | -| test.rs:267:15:267:20 | buffer | test.rs:267:14:267:20 | &buffer | provenance | | -| test.rs:273:13:273:18 | mut f1 | test.rs:275:22:275:23 | f1 | provenance | | -| test.rs:273:22:273:69 | ... .open(...) [future, Ok] | test.rs:273:22:273:75 | await ... [Ok] | provenance | | -| test.rs:273:22:273:75 | await ... [Ok] | test.rs:273:22:273:76 | TryExpr | provenance | | -| test.rs:273:22:273:76 | TryExpr | test.rs:273:13:273:18 | mut f1 | provenance | | -| test.rs:273:56:273:59 | open | test.rs:273:22:273:69 | ... .open(...) [future, Ok] | provenance | Src:MaD:2 | -| test.rs:275:22:275:23 | f1 | test.rs:275:30:275:40 | [post] &mut buffer [&ref] | provenance | MaD:17 | -| test.rs:275:30:275:40 | [post] &mut buffer [&ref] | test.rs:275:35:275:40 | [post] buffer | provenance | | -| test.rs:275:35:275:40 | [post] buffer | test.rs:276:15:276:20 | buffer | provenance | | -| test.rs:276:15:276:20 | buffer | test.rs:276:14:276:20 | &buffer | provenance | | +| test.rs:213:22:213:25 | file | test.rs:213:42:213:52 | [post] &mut buffer [&ref] | provenance | MaD:35 | +| test.rs:213:42:213:52 | [post] &mut buffer [&ref] | test.rs:213:47:213:52 | [post] buffer | provenance | | +| test.rs:213:47:213:52 | [post] buffer | test.rs:214:15:214:20 | buffer | provenance | | +| test.rs:214:15:214:20 | buffer | test.rs:214:14:214:20 | &buffer | provenance | | +| test.rs:219:9:219:12 | file | test.rs:219:25:219:35 | [post] &mut buffer [&ref] | provenance | MaD:30 | +| test.rs:219:25:219:35 | [post] &mut buffer [&ref] | test.rs:219:30:219:35 | [post] buffer | provenance | | +| test.rs:219:30:219:35 | [post] buffer | test.rs:220:15:220:20 | buffer | provenance | | +| test.rs:220:15:220:20 | buffer | test.rs:220:14:220:20 | &buffer | provenance | | +| test.rs:224:13:224:14 | v1 | test.rs:228:14:228:15 | v1 | provenance | | +| test.rs:224:18:224:21 | file | test.rs:224:18:224:31 | file.read_u8() [future, Ok] | provenance | MaD:36 | +| test.rs:224:18:224:31 | file.read_u8() [future, Ok] | test.rs:224:18:224:37 | await ... [Ok] | provenance | | +| test.rs:224:18:224:37 | await ... [Ok] | test.rs:224:18:224:38 | TryExpr | provenance | | +| test.rs:224:18:224:38 | TryExpr | test.rs:224:13:224:14 | v1 | provenance | | +| test.rs:225:13:225:14 | v2 | test.rs:229:14:229:15 | v2 | provenance | | +| test.rs:225:18:225:21 | file | test.rs:225:18:225:32 | file.read_i16() [future, Ok] | provenance | MaD:32 | +| test.rs:225:18:225:32 | file.read_i16() [future, Ok] | test.rs:225:18:225:38 | await ... [Ok] | provenance | | +| test.rs:225:18:225:38 | await ... [Ok] | test.rs:225:18:225:39 | TryExpr | provenance | | +| test.rs:225:18:225:39 | TryExpr | test.rs:225:13:225:14 | v2 | provenance | | +| test.rs:226:13:226:14 | v3 | test.rs:230:14:230:15 | v3 | provenance | | +| test.rs:226:18:226:21 | file | test.rs:226:18:226:32 | file.read_f32() [future, Ok] | provenance | MaD:31 | +| test.rs:226:18:226:32 | file.read_f32() [future, Ok] | test.rs:226:18:226:38 | await ... [Ok] | provenance | | +| test.rs:226:18:226:38 | await ... [Ok] | test.rs:226:18:226:39 | TryExpr | provenance | | +| test.rs:226:18:226:39 | TryExpr | test.rs:226:13:226:14 | v3 | provenance | | +| test.rs:227:13:227:14 | v4 | test.rs:231:14:231:15 | v4 | provenance | | +| test.rs:227:18:227:21 | file | test.rs:227:18:227:35 | file.read_i64_le() [future, Ok] | provenance | MaD:33 | +| test.rs:227:18:227:35 | file.read_i64_le() [future, Ok] | test.rs:227:18:227:41 | await ... [Ok] | provenance | | +| test.rs:227:18:227:41 | await ... [Ok] | test.rs:227:18:227:42 | TryExpr | provenance | | +| test.rs:227:18:227:42 | TryExpr | test.rs:227:13:227:14 | v4 | provenance | | +| test.rs:236:9:236:12 | file | test.rs:236:23:236:33 | [post] &mut buffer [&ref] | provenance | MaD:29 | +| test.rs:236:23:236:33 | [post] &mut buffer [&ref] | test.rs:236:28:236:33 | [post] buffer | provenance | | +| test.rs:236:28:236:33 | [post] buffer | test.rs:237:15:237:20 | buffer | provenance | | +| test.rs:237:15:237:20 | buffer | test.rs:237:14:237:20 | &buffer | provenance | | +| test.rs:243:13:243:18 | mut f1 | test.rs:245:22:245:23 | f1 | provenance | | +| test.rs:243:22:243:65 | ... .open(...) [future, Ok] | test.rs:243:22:243:71 | await ... [Ok] | provenance | | +| test.rs:243:22:243:71 | await ... [Ok] | test.rs:243:22:243:72 | TryExpr | provenance | | +| test.rs:243:22:243:72 | TryExpr | test.rs:243:13:243:18 | mut f1 | provenance | | +| test.rs:243:52:243:55 | open | test.rs:243:22:243:65 | ... .open(...) [future, Ok] | provenance | Src:MaD:8 | +| test.rs:245:22:245:23 | f1 | test.rs:245:30:245:40 | [post] &mut buffer [&ref] | provenance | MaD:28 | +| test.rs:245:30:245:40 | [post] &mut buffer [&ref] | test.rs:245:35:245:40 | [post] buffer | provenance | | +| test.rs:245:35:245:40 | [post] buffer | test.rs:246:15:246:20 | buffer | provenance | | +| test.rs:246:15:246:20 | buffer | test.rs:246:14:246:20 | &buffer | provenance | | +| test.rs:274:9:274:16 | mut file | test.rs:278:22:278:25 | file | provenance | | +| test.rs:274:20:274:44 | ...::open | test.rs:274:20:274:56 | ...::open(...) [future, Ok] | provenance | Src:MaD:1 | +| test.rs:274:20:274:56 | ...::open(...) [future, Ok] | test.rs:274:20:274:62 | await ... [Ok] | provenance | | +| test.rs:274:20:274:62 | await ... [Ok] | test.rs:274:20:274:63 | TryExpr | provenance | | +| test.rs:274:20:274:63 | TryExpr | test.rs:274:9:274:16 | mut file | provenance | | +| test.rs:278:22:278:25 | file | test.rs:278:32:278:42 | [post] &mut buffer [&ref] | provenance | MaD:17 | +| test.rs:278:32:278:42 | [post] &mut buffer [&ref] | test.rs:278:37:278:42 | [post] buffer | provenance | | +| test.rs:278:37:278:42 | [post] buffer | test.rs:279:15:279:20 | buffer | provenance | | +| test.rs:279:15:279:20 | buffer | test.rs:279:14:279:20 | &buffer | provenance | | +| test.rs:285:13:285:18 | mut f1 | test.rs:287:22:287:23 | f1 | provenance | | +| test.rs:285:22:285:69 | ... .open(...) [future, Ok] | test.rs:285:22:285:75 | await ... [Ok] | provenance | | +| test.rs:285:22:285:75 | await ... [Ok] | test.rs:285:22:285:76 | TryExpr | provenance | | +| test.rs:285:22:285:76 | TryExpr | test.rs:285:13:285:18 | mut f1 | provenance | | +| test.rs:285:56:285:59 | open | test.rs:285:22:285:69 | ... .open(...) [future, Ok] | provenance | Src:MaD:2 | +| test.rs:287:22:287:23 | f1 | test.rs:287:30:287:40 | [post] &mut buffer [&ref] | provenance | MaD:17 | +| test.rs:287:30:287:40 | [post] &mut buffer [&ref] | test.rs:287:35:287:40 | [post] buffer | provenance | | +| test.rs:287:35:287:40 | [post] buffer | test.rs:288:15:288:20 | buffer | provenance | | +| test.rs:288:15:288:20 | buffer | test.rs:288:14:288:20 | &buffer | provenance | | nodes | test.rs:12:13:12:18 | buffer | semmle.label | buffer | | test.rs:12:31:12:43 | ...::read | semmle.label | ...::read | @@ -274,272 +311,315 @@ nodes | test.rs:22:22:22:51 | ...::read_to_string(...) [Ok] | semmle.label | ...::read_to_string(...) [Ok] | | test.rs:22:22:22:52 | TryExpr | semmle.label | TryExpr | | test.rs:23:14:23:19 | buffer | semmle.label | buffer | -| test.rs:29:13:29:16 | path | semmle.label | path | -| test.rs:29:20:29:27 | e.path() | semmle.label | e.path() | -| test.rs:29:22:29:25 | path | semmle.label | path | -| test.rs:30:14:30:17 | path | semmle.label | path | -| test.rs:30:14:30:25 | path.clone() | semmle.label | path.clone() | +| test.rs:30:13:30:16 | path | semmle.label | path | +| test.rs:30:20:30:27 | e.path() | semmle.label | e.path() | +| test.rs:30:22:30:25 | path | semmle.label | path | | test.rs:31:14:31:17 | path | semmle.label | path | | test.rs:31:14:31:25 | path.clone() | semmle.label | path.clone() | -| test.rs:31:14:31:35 | ... .as_path() | semmle.label | ... .as_path() | +| test.rs:32:14:32:17 | path | semmle.label | path | +| test.rs:32:14:32:25 | path.clone() | semmle.label | path.clone() | +| test.rs:32:14:32:35 | ... .as_path() | semmle.label | ... .as_path() | +| test.rs:33:14:33:17 | path | semmle.label | path | +| test.rs:33:14:33:25 | path.clone() | semmle.label | path.clone() | +| test.rs:33:14:33:42 | ... .into_os_string() | semmle.label | ... .into_os_string() | +| test.rs:34:14:34:69 | ...::from(...) | semmle.label | ...::from(...) | +| test.rs:34:39:34:42 | path | semmle.label | path | +| test.rs:34:39:34:50 | path.clone() | semmle.label | path.clone() | +| test.rs:34:39:34:68 | ... .into_boxed_path() [Box(0)] | semmle.label | ... .into_boxed_path() [Box(0)] | +| test.rs:35:14:35:17 | path | semmle.label | path | +| test.rs:35:14:35:25 | path.clone() | semmle.label | path.clone() | +| test.rs:35:14:35:37 | ... .as_os_str() | semmle.label | ... .as_os_str() | +| test.rs:36:14:36:17 | path | semmle.label | path | +| test.rs:36:14:36:25 | path.clone() | semmle.label | path.clone() | +| test.rs:36:14:36:41 | ... .as_mut_os_str() | semmle.label | ... .as_mut_os_str() | +| test.rs:37:14:37:17 | path | semmle.label | path | +| test.rs:37:14:37:26 | path.to_str() | semmle.label | path.to_str() | +| test.rs:38:14:38:17 | path | semmle.label | path | +| test.rs:38:14:38:31 | path.to_path_buf() | semmle.label | path.to_path_buf() | +| test.rs:39:14:39:17 | path | semmle.label | path | +| test.rs:39:14:39:29 | path.file_name() [Some, &ref] | semmle.label | path.file_name() [Some, &ref] | +| test.rs:39:14:39:38 | ... .unwrap() | semmle.label | ... .unwrap() | | test.rs:40:14:40:17 | path | semmle.label | path | -| test.rs:40:14:40:32 | path.canonicalize() [Ok] | semmle.label | path.canonicalize() [Ok] | -| test.rs:40:14:40:41 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:40:14:40:29 | path.extension() [Some, &ref] | semmle.label | path.extension() [Some, &ref] | +| test.rs:40:14:40:38 | ... .unwrap() | semmle.label | ... .unwrap() | | test.rs:41:14:41:17 | path | semmle.label | path | -| test.rs:43:13:43:21 | file_name | semmle.label | file_name | -| test.rs:43:25:43:37 | e.file_name() | semmle.label | e.file_name() | -| test.rs:43:27:43:35 | file_name | semmle.label | file_name | -| test.rs:44:14:44:22 | file_name | semmle.label | file_name | -| test.rs:44:14:44:30 | file_name.clone() | semmle.label | file_name.clone() | +| test.rs:41:14:41:32 | path.canonicalize() [Ok] | semmle.label | path.canonicalize() [Ok] | +| test.rs:41:14:41:41 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:42:14:42:17 | path | semmle.label | path | +| test.rs:44:13:44:21 | file_name | semmle.label | file_name | +| test.rs:44:25:44:37 | e.file_name() | semmle.label | e.file_name() | +| test.rs:44:27:44:35 | file_name | semmle.label | file_name | | test.rs:45:14:45:22 | file_name | semmle.label | file_name | | test.rs:45:14:45:30 | file_name.clone() | semmle.label | file_name.clone() | -| test.rs:45:14:45:44 | ... .into_string() [Ok, String] | semmle.label | ... .into_string() [Ok, String] | -| test.rs:45:14:45:53 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:46:14:46:22 | file_name | semmle.label | file_name | +| test.rs:46:14:46:30 | file_name.clone() | semmle.label | file_name.clone() | +| test.rs:46:14:46:44 | ... .into_string() [Ok, String] | semmle.label | ... .into_string() [Ok, String] | +| test.rs:46:14:46:53 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:47:14:47:22 | file_name | semmle.label | file_name | +| test.rs:47:14:47:31 | file_name.to_str() [Some, &ref] | semmle.label | file_name.to_str() [Some, &ref] | +| test.rs:47:14:47:40 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:48:14:48:22 | file_name | semmle.label | file_name | +| test.rs:48:14:48:40 | file_name.to_string_lossy() [Owned] | semmle.label | file_name.to_string_lossy() [Owned] | +| test.rs:48:14:48:49 | ... .to_mut() | semmle.label | ... .to_mut() | | test.rs:49:14:49:22 | file_name | semmle.label | file_name | -| test.rs:65:13:65:18 | target | semmle.label | target | -| test.rs:65:22:65:34 | ...::read_link | semmle.label | ...::read_link | -| test.rs:65:22:65:49 | ...::read_link(...) [Ok] | semmle.label | ...::read_link(...) [Ok] | -| test.rs:65:22:65:50 | TryExpr | semmle.label | TryExpr | -| test.rs:66:14:66:19 | target | semmle.label | target | -| test.rs:74:13:74:18 | buffer | semmle.label | buffer | -| test.rs:74:31:74:45 | ...::read | semmle.label | ...::read | -| test.rs:74:31:74:57 | ...::read(...) [future, Ok] | semmle.label | ...::read(...) [future, Ok] | -| test.rs:74:31:74:63 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:74:31:74:64 | TryExpr | semmle.label | TryExpr | -| test.rs:75:14:75:19 | buffer | semmle.label | buffer | -| test.rs:79:13:79:18 | buffer | semmle.label | buffer | -| test.rs:79:31:79:45 | ...::read | semmle.label | ...::read | -| test.rs:79:31:79:57 | ...::read(...) [future, Ok] | semmle.label | ...::read(...) [future, Ok] | -| test.rs:79:31:79:63 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:79:31:79:64 | TryExpr | semmle.label | TryExpr | -| test.rs:80:14:80:19 | buffer | semmle.label | buffer | -| test.rs:84:13:84:18 | buffer | semmle.label | buffer | -| test.rs:84:22:84:46 | ...::read_to_string | semmle.label | ...::read_to_string | -| test.rs:84:22:84:58 | ...::read_to_string(...) [future, Ok] | semmle.label | ...::read_to_string(...) [future, Ok] | -| test.rs:84:22:84:64 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:84:22:84:65 | TryExpr | semmle.label | TryExpr | -| test.rs:85:14:85:19 | buffer | semmle.label | buffer | -| test.rs:90:13:90:16 | path | semmle.label | path | -| test.rs:90:20:90:31 | entry.path() | semmle.label | entry.path() | -| test.rs:90:26:90:29 | path | semmle.label | path | -| test.rs:91:13:91:21 | file_name | semmle.label | file_name | -| test.rs:91:25:91:41 | entry.file_name() | semmle.label | entry.file_name() | -| test.rs:91:31:91:39 | file_name | semmle.label | file_name | -| test.rs:92:14:92:17 | path | semmle.label | path | -| test.rs:93:14:93:22 | file_name | semmle.label | file_name | -| test.rs:97:13:97:18 | target | semmle.label | target | -| test.rs:97:22:97:41 | ...::read_link | semmle.label | ...::read_link | -| test.rs:97:22:97:56 | ...::read_link(...) [future, Ok] | semmle.label | ...::read_link(...) [future, Ok] | -| test.rs:97:22:97:62 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:97:22:97:63 | TryExpr | semmle.label | TryExpr | -| test.rs:98:14:98:19 | target | semmle.label | target | -| test.rs:107:9:107:16 | mut file | semmle.label | mut file | -| test.rs:107:20:107:38 | ...::open | semmle.label | ...::open | -| test.rs:107:20:107:50 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | -| test.rs:107:20:107:51 | TryExpr | semmle.label | TryExpr | -| test.rs:111:22:111:25 | file | semmle.label | file | -| test.rs:111:32:111:42 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:111:37:111:42 | [post] buffer | semmle.label | [post] buffer | -| test.rs:112:14:112:20 | &buffer | semmle.label | &buffer | -| test.rs:112:15:112:20 | buffer | semmle.label | buffer | -| test.rs:117:22:117:25 | file | semmle.label | file | -| test.rs:117:39:117:49 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:117:44:117:49 | [post] buffer | semmle.label | [post] buffer | -| test.rs:118:14:118:20 | &buffer | semmle.label | &buffer | -| test.rs:118:15:118:20 | buffer | semmle.label | buffer | -| test.rs:123:22:123:25 | file | semmle.label | file | -| test.rs:123:42:123:52 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:123:47:123:52 | [post] buffer | semmle.label | [post] buffer | -| test.rs:124:14:124:20 | &buffer | semmle.label | &buffer | -| test.rs:124:15:124:20 | buffer | semmle.label | buffer | -| test.rs:129:9:129:12 | file | semmle.label | file | -| test.rs:129:25:129:35 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:129:30:129:35 | [post] buffer | semmle.label | [post] buffer | -| test.rs:130:14:130:20 | &buffer | semmle.label | &buffer | -| test.rs:130:15:130:20 | buffer | semmle.label | buffer | -| test.rs:133:17:133:20 | file | semmle.label | file | -| test.rs:133:17:133:28 | file.bytes() | semmle.label | file.bytes() | -| test.rs:134:14:134:17 | byte | semmle.label | byte | -| test.rs:140:13:140:18 | mut f1 | semmle.label | mut f1 | -| test.rs:140:22:140:63 | ... .open(...) [Ok] | semmle.label | ... .open(...) [Ok] | -| test.rs:140:22:140:72 | ... .unwrap() | semmle.label | ... .unwrap() | -| test.rs:140:50:140:53 | open | semmle.label | open | -| test.rs:142:22:142:23 | f1 | semmle.label | f1 | -| test.rs:142:30:142:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:142:35:142:40 | [post] buffer | semmle.label | [post] buffer | -| test.rs:143:14:143:20 | &buffer | semmle.label | &buffer | -| test.rs:143:15:143:20 | buffer | semmle.label | buffer | -| test.rs:147:13:147:18 | mut f2 | semmle.label | mut f2 | -| test.rs:147:22:147:80 | ... .open(...) [Ok] | semmle.label | ... .open(...) [Ok] | -| test.rs:147:22:147:89 | ... .unwrap() | semmle.label | ... .unwrap() | -| test.rs:147:67:147:70 | open | semmle.label | open | -| test.rs:149:22:149:23 | f2 | semmle.label | f2 | -| test.rs:149:30:149:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:149:35:149:40 | [post] buffer | semmle.label | [post] buffer | -| test.rs:150:14:150:20 | &buffer | semmle.label | &buffer | -| test.rs:150:15:150:20 | buffer | semmle.label | buffer | -| test.rs:154:13:154:18 | mut f3 | semmle.label | mut f3 | -| test.rs:154:22:154:114 | ... .open(...) [Ok] | semmle.label | ... .open(...) [Ok] | -| test.rs:154:22:154:123 | ... .unwrap() | semmle.label | ... .unwrap() | -| test.rs:154:101:154:104 | open | semmle.label | open | -| test.rs:156:22:156:23 | f3 | semmle.label | f3 | -| test.rs:156:30:156:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:156:35:156:40 | [post] buffer | semmle.label | [post] buffer | -| test.rs:157:14:157:20 | &buffer | semmle.label | &buffer | -| test.rs:157:15:157:20 | buffer | semmle.label | buffer | -| test.rs:164:13:164:17 | file1 | semmle.label | file1 | -| test.rs:164:21:164:39 | ...::open | semmle.label | ...::open | -| test.rs:164:21:164:51 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | -| test.rs:164:21:164:52 | TryExpr | semmle.label | TryExpr | -| test.rs:165:13:165:17 | file2 | semmle.label | file2 | -| test.rs:165:21:165:39 | ...::open | semmle.label | ...::open | -| test.rs:165:21:165:59 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | -| test.rs:165:21:165:60 | TryExpr | semmle.label | TryExpr | -| test.rs:166:13:166:22 | mut reader | semmle.label | mut reader | -| test.rs:166:26:166:30 | file1 | semmle.label | file1 | -| test.rs:166:26:166:43 | file1.chain(...) | semmle.label | file1.chain(...) | -| test.rs:166:38:166:42 | file2 | semmle.label | file2 | -| test.rs:167:9:167:14 | reader | semmle.label | reader | -| test.rs:167:31:167:41 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:167:36:167:41 | [post] buffer | semmle.label | [post] buffer | -| test.rs:168:14:168:20 | &buffer | semmle.label | &buffer | -| test.rs:168:15:168:20 | buffer | semmle.label | buffer | -| test.rs:173:13:173:17 | file1 | semmle.label | file1 | -| test.rs:173:21:173:39 | ...::open | semmle.label | ...::open | -| test.rs:173:21:173:51 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | -| test.rs:173:21:173:52 | TryExpr | semmle.label | TryExpr | -| test.rs:174:13:174:22 | mut reader | semmle.label | mut reader | -| test.rs:174:26:174:30 | file1 | semmle.label | file1 | -| test.rs:174:26:174:40 | file1.take(...) | semmle.label | file1.take(...) | -| test.rs:175:9:175:14 | reader | semmle.label | reader | -| test.rs:175:31:175:41 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:175:36:175:41 | [post] buffer | semmle.label | [post] buffer | -| test.rs:176:14:176:20 | &buffer | semmle.label | &buffer | -| test.rs:176:15:176:20 | buffer | semmle.label | buffer | -| test.rs:185:9:185:16 | mut file | semmle.label | mut file | -| test.rs:185:20:185:40 | ...::open | semmle.label | ...::open | -| test.rs:185:20:185:52 | ...::open(...) [future, Ok] | semmle.label | ...::open(...) [future, Ok] | -| test.rs:185:20:185:58 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:185:20:185:59 | TryExpr | semmle.label | TryExpr | -| test.rs:189:22:189:25 | file | semmle.label | file | -| test.rs:189:32:189:42 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:189:37:189:42 | [post] buffer | semmle.label | [post] buffer | -| test.rs:190:14:190:20 | &buffer | semmle.label | &buffer | -| test.rs:190:15:190:20 | buffer | semmle.label | buffer | -| test.rs:195:22:195:25 | file | semmle.label | file | -| test.rs:195:39:195:49 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:195:44:195:49 | [post] buffer | semmle.label | [post] buffer | -| test.rs:196:14:196:20 | &buffer | semmle.label | &buffer | -| test.rs:196:15:196:20 | buffer | semmle.label | buffer | +| test.rs:49:14:49:30 | file_name.clone() | semmle.label | file_name.clone() | +| test.rs:49:14:49:49 | ... .as_encoded_bytes() | semmle.label | ... .as_encoded_bytes() | +| test.rs:50:14:50:22 | file_name | semmle.label | file_name | +| test.rs:68:13:68:18 | target | semmle.label | target | +| test.rs:68:22:68:34 | ...::read_link | semmle.label | ...::read_link | +| test.rs:68:22:68:49 | ...::read_link(...) [Ok] | semmle.label | ...::read_link(...) [Ok] | +| test.rs:68:22:68:50 | TryExpr | semmle.label | TryExpr | +| test.rs:69:14:69:19 | target | semmle.label | target | +| test.rs:77:13:77:18 | buffer | semmle.label | buffer | +| test.rs:77:31:77:45 | ...::read | semmle.label | ...::read | +| test.rs:77:31:77:57 | ...::read(...) [future, Ok] | semmle.label | ...::read(...) [future, Ok] | +| test.rs:77:31:77:63 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:77:31:77:64 | TryExpr | semmle.label | TryExpr | +| test.rs:78:14:78:19 | buffer | semmle.label | buffer | +| test.rs:82:13:82:18 | buffer | semmle.label | buffer | +| test.rs:82:31:82:45 | ...::read | semmle.label | ...::read | +| test.rs:82:31:82:57 | ...::read(...) [future, Ok] | semmle.label | ...::read(...) [future, Ok] | +| test.rs:82:31:82:63 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:82:31:82:64 | TryExpr | semmle.label | TryExpr | +| test.rs:83:14:83:19 | buffer | semmle.label | buffer | +| test.rs:87:13:87:18 | buffer | semmle.label | buffer | +| test.rs:87:22:87:46 | ...::read_to_string | semmle.label | ...::read_to_string | +| test.rs:87:22:87:58 | ...::read_to_string(...) [future, Ok] | semmle.label | ...::read_to_string(...) [future, Ok] | +| test.rs:87:22:87:64 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:87:22:87:65 | TryExpr | semmle.label | TryExpr | +| test.rs:88:14:88:19 | buffer | semmle.label | buffer | +| test.rs:93:13:93:16 | path | semmle.label | path | +| test.rs:93:20:93:31 | entry.path() | semmle.label | entry.path() | +| test.rs:93:26:93:29 | path | semmle.label | path | +| test.rs:94:13:94:21 | file_name | semmle.label | file_name | +| test.rs:94:25:94:41 | entry.file_name() | semmle.label | entry.file_name() | +| test.rs:94:31:94:39 | file_name | semmle.label | file_name | +| test.rs:95:14:95:17 | path | semmle.label | path | +| test.rs:96:14:96:22 | file_name | semmle.label | file_name | +| test.rs:100:13:100:18 | target | semmle.label | target | +| test.rs:100:22:100:41 | ...::read_link | semmle.label | ...::read_link | +| test.rs:100:22:100:56 | ...::read_link(...) [future, Ok] | semmle.label | ...::read_link(...) [future, Ok] | +| test.rs:100:22:100:62 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:100:22:100:63 | TryExpr | semmle.label | TryExpr | +| test.rs:101:14:101:19 | target | semmle.label | target | +| test.rs:110:9:110:16 | mut file | semmle.label | mut file | +| test.rs:110:20:110:38 | ...::open | semmle.label | ...::open | +| test.rs:110:20:110:50 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | +| test.rs:110:20:110:51 | TryExpr | semmle.label | TryExpr | +| test.rs:114:22:114:25 | file | semmle.label | file | +| test.rs:114:32:114:42 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:114:37:114:42 | [post] buffer | semmle.label | [post] buffer | +| test.rs:115:14:115:20 | &buffer | semmle.label | &buffer | +| test.rs:115:15:115:20 | buffer | semmle.label | buffer | +| test.rs:120:22:120:25 | file | semmle.label | file | +| test.rs:120:39:120:49 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:120:44:120:49 | [post] buffer | semmle.label | [post] buffer | +| test.rs:121:14:121:20 | &buffer | semmle.label | &buffer | +| test.rs:121:15:121:20 | buffer | semmle.label | buffer | +| test.rs:126:22:126:25 | file | semmle.label | file | +| test.rs:126:42:126:52 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:126:47:126:52 | [post] buffer | semmle.label | [post] buffer | +| test.rs:127:14:127:20 | &buffer | semmle.label | &buffer | +| test.rs:127:15:127:20 | buffer | semmle.label | buffer | +| test.rs:132:9:132:12 | file | semmle.label | file | +| test.rs:132:25:132:35 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:132:30:132:35 | [post] buffer | semmle.label | [post] buffer | +| test.rs:133:14:133:20 | &buffer | semmle.label | &buffer | +| test.rs:133:15:133:20 | buffer | semmle.label | buffer | +| test.rs:136:17:136:20 | file | semmle.label | file | +| test.rs:136:17:136:28 | file.bytes() | semmle.label | file.bytes() | +| test.rs:137:14:137:17 | byte | semmle.label | byte | +| test.rs:143:13:143:18 | mut f1 | semmle.label | mut f1 | +| test.rs:143:22:143:63 | ... .open(...) [Ok] | semmle.label | ... .open(...) [Ok] | +| test.rs:143:22:143:72 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:143:50:143:53 | open | semmle.label | open | +| test.rs:145:22:145:23 | f1 | semmle.label | f1 | +| test.rs:145:30:145:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:145:35:145:40 | [post] buffer | semmle.label | [post] buffer | +| test.rs:146:14:146:20 | &buffer | semmle.label | &buffer | +| test.rs:146:15:146:20 | buffer | semmle.label | buffer | +| test.rs:150:13:150:18 | mut f2 | semmle.label | mut f2 | +| test.rs:150:22:152:27 | ... .open(...) [Ok] | semmle.label | ... .open(...) [Ok] | +| test.rs:150:22:153:21 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:152:14:152:17 | open | semmle.label | open | +| test.rs:155:22:155:23 | f2 | semmle.label | f2 | +| test.rs:155:30:155:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:155:35:155:40 | [post] buffer | semmle.label | [post] buffer | +| test.rs:156:14:156:20 | &buffer | semmle.label | &buffer | +| test.rs:156:15:156:20 | buffer | semmle.label | buffer | +| test.rs:160:13:160:18 | mut f3 | semmle.label | mut f3 | +| test.rs:160:22:165:27 | ... .open(...) [Ok] | semmle.label | ... .open(...) [Ok] | +| test.rs:160:22:166:21 | ... .unwrap() | semmle.label | ... .unwrap() | +| test.rs:165:14:165:17 | open | semmle.label | open | +| test.rs:168:22:168:23 | f3 | semmle.label | f3 | +| test.rs:168:30:168:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:168:35:168:40 | [post] buffer | semmle.label | [post] buffer | +| test.rs:169:14:169:20 | &buffer | semmle.label | &buffer | +| test.rs:169:15:169:20 | buffer | semmle.label | buffer | +| test.rs:176:13:176:17 | file1 | semmle.label | file1 | +| test.rs:176:21:176:39 | ...::open | semmle.label | ...::open | +| test.rs:176:21:176:51 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | +| test.rs:176:21:176:52 | TryExpr | semmle.label | TryExpr | +| test.rs:177:13:177:17 | file2 | semmle.label | file2 | +| test.rs:177:21:177:39 | ...::open | semmle.label | ...::open | +| test.rs:177:21:177:59 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | +| test.rs:177:21:177:60 | TryExpr | semmle.label | TryExpr | +| test.rs:178:13:178:22 | mut reader | semmle.label | mut reader | +| test.rs:178:26:178:30 | file1 | semmle.label | file1 | +| test.rs:178:26:178:43 | file1.chain(...) | semmle.label | file1.chain(...) | +| test.rs:178:38:178:42 | file2 | semmle.label | file2 | +| test.rs:179:9:179:14 | reader | semmle.label | reader | +| test.rs:179:31:179:41 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:179:36:179:41 | [post] buffer | semmle.label | [post] buffer | +| test.rs:180:14:180:20 | &buffer | semmle.label | &buffer | +| test.rs:180:15:180:20 | buffer | semmle.label | buffer | +| test.rs:185:13:185:17 | file1 | semmle.label | file1 | +| test.rs:185:21:185:39 | ...::open | semmle.label | ...::open | +| test.rs:185:21:185:51 | ...::open(...) [Ok] | semmle.label | ...::open(...) [Ok] | +| test.rs:185:21:185:52 | TryExpr | semmle.label | TryExpr | +| test.rs:186:13:186:22 | mut reader | semmle.label | mut reader | +| test.rs:186:26:186:30 | file1 | semmle.label | file1 | +| test.rs:186:26:186:40 | file1.take(...) | semmle.label | file1.take(...) | +| test.rs:187:9:187:14 | reader | semmle.label | reader | +| test.rs:187:31:187:41 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:187:36:187:41 | [post] buffer | semmle.label | [post] buffer | +| test.rs:188:14:188:20 | &buffer | semmle.label | &buffer | +| test.rs:188:15:188:20 | buffer | semmle.label | buffer | +| test.rs:197:9:197:16 | mut file | semmle.label | mut file | +| test.rs:197:20:197:40 | ...::open | semmle.label | ...::open | +| test.rs:197:20:197:52 | ...::open(...) [future, Ok] | semmle.label | ...::open(...) [future, Ok] | +| test.rs:197:20:197:58 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:197:20:197:59 | TryExpr | semmle.label | TryExpr | | test.rs:201:22:201:25 | file | semmle.label | file | -| test.rs:201:42:201:52 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:201:47:201:52 | [post] buffer | semmle.label | [post] buffer | +| test.rs:201:32:201:42 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:201:37:201:42 | [post] buffer | semmle.label | [post] buffer | | test.rs:202:14:202:20 | &buffer | semmle.label | &buffer | | test.rs:202:15:202:20 | buffer | semmle.label | buffer | -| test.rs:207:9:207:12 | file | semmle.label | file | -| test.rs:207:25:207:35 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:207:30:207:35 | [post] buffer | semmle.label | [post] buffer | +| test.rs:207:22:207:25 | file | semmle.label | file | +| test.rs:207:39:207:49 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:207:44:207:49 | [post] buffer | semmle.label | [post] buffer | | test.rs:208:14:208:20 | &buffer | semmle.label | &buffer | | test.rs:208:15:208:20 | buffer | semmle.label | buffer | -| test.rs:212:13:212:14 | v1 | semmle.label | v1 | -| test.rs:212:18:212:21 | file | semmle.label | file | -| test.rs:212:18:212:31 | file.read_u8() [future, Ok] | semmle.label | file.read_u8() [future, Ok] | -| test.rs:212:18:212:37 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:212:18:212:38 | TryExpr | semmle.label | TryExpr | -| test.rs:213:13:213:14 | v2 | semmle.label | v2 | -| test.rs:213:18:213:21 | file | semmle.label | file | -| test.rs:213:18:213:32 | file.read_i16() [future, Ok] | semmle.label | file.read_i16() [future, Ok] | -| test.rs:213:18:213:38 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:213:18:213:39 | TryExpr | semmle.label | TryExpr | -| test.rs:214:13:214:14 | v3 | semmle.label | v3 | -| test.rs:214:18:214:21 | file | semmle.label | file | -| test.rs:214:18:214:32 | file.read_f32() [future, Ok] | semmle.label | file.read_f32() [future, Ok] | -| test.rs:214:18:214:38 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:214:18:214:39 | TryExpr | semmle.label | TryExpr | -| test.rs:215:13:215:14 | v4 | semmle.label | v4 | -| test.rs:215:18:215:21 | file | semmle.label | file | -| test.rs:215:18:215:35 | file.read_i64_le() [future, Ok] | semmle.label | file.read_i64_le() [future, Ok] | -| test.rs:215:18:215:41 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:215:18:215:42 | TryExpr | semmle.label | TryExpr | -| test.rs:216:14:216:15 | v1 | semmle.label | v1 | -| test.rs:217:14:217:15 | v2 | semmle.label | v2 | -| test.rs:218:14:218:15 | v3 | semmle.label | v3 | -| test.rs:219:14:219:15 | v4 | semmle.label | v4 | -| test.rs:224:9:224:12 | file | semmle.label | file | -| test.rs:224:23:224:33 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:224:28:224:33 | [post] buffer | semmle.label | [post] buffer | -| test.rs:225:14:225:20 | &buffer | semmle.label | &buffer | -| test.rs:225:15:225:20 | buffer | semmle.label | buffer | -| test.rs:231:13:231:18 | mut f1 | semmle.label | mut f1 | -| test.rs:231:22:231:65 | ... .open(...) [future, Ok] | semmle.label | ... .open(...) [future, Ok] | -| test.rs:231:22:231:71 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:231:22:231:72 | TryExpr | semmle.label | TryExpr | -| test.rs:231:52:231:55 | open | semmle.label | open | -| test.rs:233:22:233:23 | f1 | semmle.label | f1 | -| test.rs:233:30:233:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:233:35:233:40 | [post] buffer | semmle.label | [post] buffer | -| test.rs:234:14:234:20 | &buffer | semmle.label | &buffer | -| test.rs:234:15:234:20 | buffer | semmle.label | buffer | -| test.rs:262:9:262:16 | mut file | semmle.label | mut file | -| test.rs:262:20:262:44 | ...::open | semmle.label | ...::open | -| test.rs:262:20:262:56 | ...::open(...) [future, Ok] | semmle.label | ...::open(...) [future, Ok] | -| test.rs:262:20:262:62 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:262:20:262:63 | TryExpr | semmle.label | TryExpr | -| test.rs:266:22:266:25 | file | semmle.label | file | -| test.rs:266:32:266:42 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:266:37:266:42 | [post] buffer | semmle.label | [post] buffer | -| test.rs:267:14:267:20 | &buffer | semmle.label | &buffer | -| test.rs:267:15:267:20 | buffer | semmle.label | buffer | -| test.rs:273:13:273:18 | mut f1 | semmle.label | mut f1 | -| test.rs:273:22:273:69 | ... .open(...) [future, Ok] | semmle.label | ... .open(...) [future, Ok] | -| test.rs:273:22:273:75 | await ... [Ok] | semmle.label | await ... [Ok] | -| test.rs:273:22:273:76 | TryExpr | semmle.label | TryExpr | -| test.rs:273:56:273:59 | open | semmle.label | open | -| test.rs:275:22:275:23 | f1 | semmle.label | f1 | -| test.rs:275:30:275:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | -| test.rs:275:35:275:40 | [post] buffer | semmle.label | [post] buffer | -| test.rs:276:14:276:20 | &buffer | semmle.label | &buffer | -| test.rs:276:15:276:20 | buffer | semmle.label | buffer | +| test.rs:213:22:213:25 | file | semmle.label | file | +| test.rs:213:42:213:52 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:213:47:213:52 | [post] buffer | semmle.label | [post] buffer | +| test.rs:214:14:214:20 | &buffer | semmle.label | &buffer | +| test.rs:214:15:214:20 | buffer | semmle.label | buffer | +| test.rs:219:9:219:12 | file | semmle.label | file | +| test.rs:219:25:219:35 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:219:30:219:35 | [post] buffer | semmle.label | [post] buffer | +| test.rs:220:14:220:20 | &buffer | semmle.label | &buffer | +| test.rs:220:15:220:20 | buffer | semmle.label | buffer | +| test.rs:224:13:224:14 | v1 | semmle.label | v1 | +| test.rs:224:18:224:21 | file | semmle.label | file | +| test.rs:224:18:224:31 | file.read_u8() [future, Ok] | semmle.label | file.read_u8() [future, Ok] | +| test.rs:224:18:224:37 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:224:18:224:38 | TryExpr | semmle.label | TryExpr | +| test.rs:225:13:225:14 | v2 | semmle.label | v2 | +| test.rs:225:18:225:21 | file | semmle.label | file | +| test.rs:225:18:225:32 | file.read_i16() [future, Ok] | semmle.label | file.read_i16() [future, Ok] | +| test.rs:225:18:225:38 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:225:18:225:39 | TryExpr | semmle.label | TryExpr | +| test.rs:226:13:226:14 | v3 | semmle.label | v3 | +| test.rs:226:18:226:21 | file | semmle.label | file | +| test.rs:226:18:226:32 | file.read_f32() [future, Ok] | semmle.label | file.read_f32() [future, Ok] | +| test.rs:226:18:226:38 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:226:18:226:39 | TryExpr | semmle.label | TryExpr | +| test.rs:227:13:227:14 | v4 | semmle.label | v4 | +| test.rs:227:18:227:21 | file | semmle.label | file | +| test.rs:227:18:227:35 | file.read_i64_le() [future, Ok] | semmle.label | file.read_i64_le() [future, Ok] | +| test.rs:227:18:227:41 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:227:18:227:42 | TryExpr | semmle.label | TryExpr | +| test.rs:228:14:228:15 | v1 | semmle.label | v1 | +| test.rs:229:14:229:15 | v2 | semmle.label | v2 | +| test.rs:230:14:230:15 | v3 | semmle.label | v3 | +| test.rs:231:14:231:15 | v4 | semmle.label | v4 | +| test.rs:236:9:236:12 | file | semmle.label | file | +| test.rs:236:23:236:33 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:236:28:236:33 | [post] buffer | semmle.label | [post] buffer | +| test.rs:237:14:237:20 | &buffer | semmle.label | &buffer | +| test.rs:237:15:237:20 | buffer | semmle.label | buffer | +| test.rs:243:13:243:18 | mut f1 | semmle.label | mut f1 | +| test.rs:243:22:243:65 | ... .open(...) [future, Ok] | semmle.label | ... .open(...) [future, Ok] | +| test.rs:243:22:243:71 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:243:22:243:72 | TryExpr | semmle.label | TryExpr | +| test.rs:243:52:243:55 | open | semmle.label | open | +| test.rs:245:22:245:23 | f1 | semmle.label | f1 | +| test.rs:245:30:245:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:245:35:245:40 | [post] buffer | semmle.label | [post] buffer | +| test.rs:246:14:246:20 | &buffer | semmle.label | &buffer | +| test.rs:246:15:246:20 | buffer | semmle.label | buffer | +| test.rs:274:9:274:16 | mut file | semmle.label | mut file | +| test.rs:274:20:274:44 | ...::open | semmle.label | ...::open | +| test.rs:274:20:274:56 | ...::open(...) [future, Ok] | semmle.label | ...::open(...) [future, Ok] | +| test.rs:274:20:274:62 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:274:20:274:63 | TryExpr | semmle.label | TryExpr | +| test.rs:278:22:278:25 | file | semmle.label | file | +| test.rs:278:32:278:42 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:278:37:278:42 | [post] buffer | semmle.label | [post] buffer | +| test.rs:279:14:279:20 | &buffer | semmle.label | &buffer | +| test.rs:279:15:279:20 | buffer | semmle.label | buffer | +| test.rs:285:13:285:18 | mut f1 | semmle.label | mut f1 | +| test.rs:285:22:285:69 | ... .open(...) [future, Ok] | semmle.label | ... .open(...) [future, Ok] | +| test.rs:285:22:285:75 | await ... [Ok] | semmle.label | await ... [Ok] | +| test.rs:285:22:285:76 | TryExpr | semmle.label | TryExpr | +| test.rs:285:56:285:59 | open | semmle.label | open | +| test.rs:287:22:287:23 | f1 | semmle.label | f1 | +| test.rs:287:30:287:40 | [post] &mut buffer [&ref] | semmle.label | [post] &mut buffer [&ref] | +| test.rs:287:35:287:40 | [post] buffer | semmle.label | [post] buffer | +| test.rs:288:14:288:20 | &buffer | semmle.label | &buffer | +| test.rs:288:15:288:20 | buffer | semmle.label | buffer | subpaths testFailures #select | test.rs:13:14:13:19 | buffer | test.rs:12:31:12:43 | ...::read | test.rs:13:14:13:19 | buffer | $@ | test.rs:12:31:12:43 | ...::read | ...::read | | test.rs:18:14:18:19 | buffer | test.rs:17:31:17:38 | ...::read | test.rs:18:14:18:19 | buffer | $@ | test.rs:17:31:17:38 | ...::read | ...::read | | test.rs:23:14:23:19 | buffer | test.rs:22:22:22:39 | ...::read_to_string | test.rs:23:14:23:19 | buffer | $@ | test.rs:22:22:22:39 | ...::read_to_string | ...::read_to_string | -| test.rs:30:14:30:25 | path.clone() | test.rs:29:22:29:25 | path | test.rs:30:14:30:25 | path.clone() | $@ | test.rs:29:22:29:25 | path | path | -| test.rs:31:14:31:35 | ... .as_path() | test.rs:29:22:29:25 | path | test.rs:31:14:31:35 | ... .as_path() | $@ | test.rs:29:22:29:25 | path | path | -| test.rs:40:14:40:41 | ... .unwrap() | test.rs:29:22:29:25 | path | test.rs:40:14:40:41 | ... .unwrap() | $@ | test.rs:29:22:29:25 | path | path | -| test.rs:41:14:41:17 | path | test.rs:29:22:29:25 | path | test.rs:41:14:41:17 | path | $@ | test.rs:29:22:29:25 | path | path | -| test.rs:44:14:44:30 | file_name.clone() | test.rs:43:27:43:35 | file_name | test.rs:44:14:44:30 | file_name.clone() | $@ | test.rs:43:27:43:35 | file_name | file_name | -| test.rs:45:14:45:53 | ... .unwrap() | test.rs:43:27:43:35 | file_name | test.rs:45:14:45:53 | ... .unwrap() | $@ | test.rs:43:27:43:35 | file_name | file_name | -| test.rs:49:14:49:22 | file_name | test.rs:43:27:43:35 | file_name | test.rs:49:14:49:22 | file_name | $@ | test.rs:43:27:43:35 | file_name | file_name | -| test.rs:66:14:66:19 | target | test.rs:65:22:65:34 | ...::read_link | test.rs:66:14:66:19 | target | $@ | test.rs:65:22:65:34 | ...::read_link | ...::read_link | -| test.rs:75:14:75:19 | buffer | test.rs:74:31:74:45 | ...::read | test.rs:75:14:75:19 | buffer | $@ | test.rs:74:31:74:45 | ...::read | ...::read | -| test.rs:80:14:80:19 | buffer | test.rs:79:31:79:45 | ...::read | test.rs:80:14:80:19 | buffer | $@ | test.rs:79:31:79:45 | ...::read | ...::read | -| test.rs:85:14:85:19 | buffer | test.rs:84:22:84:46 | ...::read_to_string | test.rs:85:14:85:19 | buffer | $@ | test.rs:84:22:84:46 | ...::read_to_string | ...::read_to_string | -| test.rs:92:14:92:17 | path | test.rs:90:26:90:29 | path | test.rs:92:14:92:17 | path | $@ | test.rs:90:26:90:29 | path | path | -| test.rs:93:14:93:22 | file_name | test.rs:91:31:91:39 | file_name | test.rs:93:14:93:22 | file_name | $@ | test.rs:91:31:91:39 | file_name | file_name | -| test.rs:98:14:98:19 | target | test.rs:97:22:97:41 | ...::read_link | test.rs:98:14:98:19 | target | $@ | test.rs:97:22:97:41 | ...::read_link | ...::read_link | -| test.rs:112:14:112:20 | &buffer | test.rs:107:20:107:38 | ...::open | test.rs:112:14:112:20 | &buffer | $@ | test.rs:107:20:107:38 | ...::open | ...::open | -| test.rs:118:14:118:20 | &buffer | test.rs:107:20:107:38 | ...::open | test.rs:118:14:118:20 | &buffer | $@ | test.rs:107:20:107:38 | ...::open | ...::open | -| test.rs:124:14:124:20 | &buffer | test.rs:107:20:107:38 | ...::open | test.rs:124:14:124:20 | &buffer | $@ | test.rs:107:20:107:38 | ...::open | ...::open | -| test.rs:130:14:130:20 | &buffer | test.rs:107:20:107:38 | ...::open | test.rs:130:14:130:20 | &buffer | $@ | test.rs:107:20:107:38 | ...::open | ...::open | -| test.rs:134:14:134:17 | byte | test.rs:107:20:107:38 | ...::open | test.rs:134:14:134:17 | byte | $@ | test.rs:107:20:107:38 | ...::open | ...::open | -| test.rs:143:14:143:20 | &buffer | test.rs:140:50:140:53 | open | test.rs:143:14:143:20 | &buffer | $@ | test.rs:140:50:140:53 | open | open | -| test.rs:150:14:150:20 | &buffer | test.rs:147:67:147:70 | open | test.rs:150:14:150:20 | &buffer | $@ | test.rs:147:67:147:70 | open | open | -| test.rs:157:14:157:20 | &buffer | test.rs:154:101:154:104 | open | test.rs:157:14:157:20 | &buffer | $@ | test.rs:154:101:154:104 | open | open | -| test.rs:168:14:168:20 | &buffer | test.rs:164:21:164:39 | ...::open | test.rs:168:14:168:20 | &buffer | $@ | test.rs:164:21:164:39 | ...::open | ...::open | -| test.rs:168:14:168:20 | &buffer | test.rs:165:21:165:39 | ...::open | test.rs:168:14:168:20 | &buffer | $@ | test.rs:165:21:165:39 | ...::open | ...::open | -| test.rs:176:14:176:20 | &buffer | test.rs:173:21:173:39 | ...::open | test.rs:176:14:176:20 | &buffer | $@ | test.rs:173:21:173:39 | ...::open | ...::open | -| test.rs:190:14:190:20 | &buffer | test.rs:185:20:185:40 | ...::open | test.rs:190:14:190:20 | &buffer | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:196:14:196:20 | &buffer | test.rs:185:20:185:40 | ...::open | test.rs:196:14:196:20 | &buffer | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:202:14:202:20 | &buffer | test.rs:185:20:185:40 | ...::open | test.rs:202:14:202:20 | &buffer | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:208:14:208:20 | &buffer | test.rs:185:20:185:40 | ...::open | test.rs:208:14:208:20 | &buffer | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:216:14:216:15 | v1 | test.rs:185:20:185:40 | ...::open | test.rs:216:14:216:15 | v1 | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:217:14:217:15 | v2 | test.rs:185:20:185:40 | ...::open | test.rs:217:14:217:15 | v2 | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:218:14:218:15 | v3 | test.rs:185:20:185:40 | ...::open | test.rs:218:14:218:15 | v3 | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:219:14:219:15 | v4 | test.rs:185:20:185:40 | ...::open | test.rs:219:14:219:15 | v4 | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:225:14:225:20 | &buffer | test.rs:185:20:185:40 | ...::open | test.rs:225:14:225:20 | &buffer | $@ | test.rs:185:20:185:40 | ...::open | ...::open | -| test.rs:234:14:234:20 | &buffer | test.rs:231:52:231:55 | open | test.rs:234:14:234:20 | &buffer | $@ | test.rs:231:52:231:55 | open | open | -| test.rs:267:14:267:20 | &buffer | test.rs:262:20:262:44 | ...::open | test.rs:267:14:267:20 | &buffer | $@ | test.rs:262:20:262:44 | ...::open | ...::open | -| test.rs:276:14:276:20 | &buffer | test.rs:273:56:273:59 | open | test.rs:276:14:276:20 | &buffer | $@ | test.rs:273:56:273:59 | open | open | +| test.rs:31:14:31:25 | path.clone() | test.rs:30:22:30:25 | path | test.rs:31:14:31:25 | path.clone() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:32:14:32:35 | ... .as_path() | test.rs:30:22:30:25 | path | test.rs:32:14:32:35 | ... .as_path() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:33:14:33:42 | ... .into_os_string() | test.rs:30:22:30:25 | path | test.rs:33:14:33:42 | ... .into_os_string() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:34:14:34:69 | ...::from(...) | test.rs:30:22:30:25 | path | test.rs:34:14:34:69 | ...::from(...) | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:35:14:35:37 | ... .as_os_str() | test.rs:30:22:30:25 | path | test.rs:35:14:35:37 | ... .as_os_str() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:36:14:36:41 | ... .as_mut_os_str() | test.rs:30:22:30:25 | path | test.rs:36:14:36:41 | ... .as_mut_os_str() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:37:14:37:26 | path.to_str() | test.rs:30:22:30:25 | path | test.rs:37:14:37:26 | path.to_str() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:38:14:38:31 | path.to_path_buf() | test.rs:30:22:30:25 | path | test.rs:38:14:38:31 | path.to_path_buf() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:39:14:39:38 | ... .unwrap() | test.rs:30:22:30:25 | path | test.rs:39:14:39:38 | ... .unwrap() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:40:14:40:38 | ... .unwrap() | test.rs:30:22:30:25 | path | test.rs:40:14:40:38 | ... .unwrap() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:41:14:41:41 | ... .unwrap() | test.rs:30:22:30:25 | path | test.rs:41:14:41:41 | ... .unwrap() | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:42:14:42:17 | path | test.rs:30:22:30:25 | path | test.rs:42:14:42:17 | path | $@ | test.rs:30:22:30:25 | path | path | +| test.rs:45:14:45:30 | file_name.clone() | test.rs:44:27:44:35 | file_name | test.rs:45:14:45:30 | file_name.clone() | $@ | test.rs:44:27:44:35 | file_name | file_name | +| test.rs:46:14:46:53 | ... .unwrap() | test.rs:44:27:44:35 | file_name | test.rs:46:14:46:53 | ... .unwrap() | $@ | test.rs:44:27:44:35 | file_name | file_name | +| test.rs:47:14:47:40 | ... .unwrap() | test.rs:44:27:44:35 | file_name | test.rs:47:14:47:40 | ... .unwrap() | $@ | test.rs:44:27:44:35 | file_name | file_name | +| test.rs:48:14:48:49 | ... .to_mut() | test.rs:44:27:44:35 | file_name | test.rs:48:14:48:49 | ... .to_mut() | $@ | test.rs:44:27:44:35 | file_name | file_name | +| test.rs:49:14:49:49 | ... .as_encoded_bytes() | test.rs:44:27:44:35 | file_name | test.rs:49:14:49:49 | ... .as_encoded_bytes() | $@ | test.rs:44:27:44:35 | file_name | file_name | +| test.rs:50:14:50:22 | file_name | test.rs:44:27:44:35 | file_name | test.rs:50:14:50:22 | file_name | $@ | test.rs:44:27:44:35 | file_name | file_name | +| test.rs:69:14:69:19 | target | test.rs:68:22:68:34 | ...::read_link | test.rs:69:14:69:19 | target | $@ | test.rs:68:22:68:34 | ...::read_link | ...::read_link | +| test.rs:78:14:78:19 | buffer | test.rs:77:31:77:45 | ...::read | test.rs:78:14:78:19 | buffer | $@ | test.rs:77:31:77:45 | ...::read | ...::read | +| test.rs:83:14:83:19 | buffer | test.rs:82:31:82:45 | ...::read | test.rs:83:14:83:19 | buffer | $@ | test.rs:82:31:82:45 | ...::read | ...::read | +| test.rs:88:14:88:19 | buffer | test.rs:87:22:87:46 | ...::read_to_string | test.rs:88:14:88:19 | buffer | $@ | test.rs:87:22:87:46 | ...::read_to_string | ...::read_to_string | +| test.rs:95:14:95:17 | path | test.rs:93:26:93:29 | path | test.rs:95:14:95:17 | path | $@ | test.rs:93:26:93:29 | path | path | +| test.rs:96:14:96:22 | file_name | test.rs:94:31:94:39 | file_name | test.rs:96:14:96:22 | file_name | $@ | test.rs:94:31:94:39 | file_name | file_name | +| test.rs:101:14:101:19 | target | test.rs:100:22:100:41 | ...::read_link | test.rs:101:14:101:19 | target | $@ | test.rs:100:22:100:41 | ...::read_link | ...::read_link | +| test.rs:115:14:115:20 | &buffer | test.rs:110:20:110:38 | ...::open | test.rs:115:14:115:20 | &buffer | $@ | test.rs:110:20:110:38 | ...::open | ...::open | +| test.rs:121:14:121:20 | &buffer | test.rs:110:20:110:38 | ...::open | test.rs:121:14:121:20 | &buffer | $@ | test.rs:110:20:110:38 | ...::open | ...::open | +| test.rs:127:14:127:20 | &buffer | test.rs:110:20:110:38 | ...::open | test.rs:127:14:127:20 | &buffer | $@ | test.rs:110:20:110:38 | ...::open | ...::open | +| test.rs:133:14:133:20 | &buffer | test.rs:110:20:110:38 | ...::open | test.rs:133:14:133:20 | &buffer | $@ | test.rs:110:20:110:38 | ...::open | ...::open | +| test.rs:137:14:137:17 | byte | test.rs:110:20:110:38 | ...::open | test.rs:137:14:137:17 | byte | $@ | test.rs:110:20:110:38 | ...::open | ...::open | +| test.rs:146:14:146:20 | &buffer | test.rs:143:50:143:53 | open | test.rs:146:14:146:20 | &buffer | $@ | test.rs:143:50:143:53 | open | open | +| test.rs:156:14:156:20 | &buffer | test.rs:152:14:152:17 | open | test.rs:156:14:156:20 | &buffer | $@ | test.rs:152:14:152:17 | open | open | +| test.rs:169:14:169:20 | &buffer | test.rs:165:14:165:17 | open | test.rs:169:14:169:20 | &buffer | $@ | test.rs:165:14:165:17 | open | open | +| test.rs:180:14:180:20 | &buffer | test.rs:176:21:176:39 | ...::open | test.rs:180:14:180:20 | &buffer | $@ | test.rs:176:21:176:39 | ...::open | ...::open | +| test.rs:180:14:180:20 | &buffer | test.rs:177:21:177:39 | ...::open | test.rs:180:14:180:20 | &buffer | $@ | test.rs:177:21:177:39 | ...::open | ...::open | +| test.rs:188:14:188:20 | &buffer | test.rs:185:21:185:39 | ...::open | test.rs:188:14:188:20 | &buffer | $@ | test.rs:185:21:185:39 | ...::open | ...::open | +| test.rs:202:14:202:20 | &buffer | test.rs:197:20:197:40 | ...::open | test.rs:202:14:202:20 | &buffer | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:208:14:208:20 | &buffer | test.rs:197:20:197:40 | ...::open | test.rs:208:14:208:20 | &buffer | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:214:14:214:20 | &buffer | test.rs:197:20:197:40 | ...::open | test.rs:214:14:214:20 | &buffer | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:220:14:220:20 | &buffer | test.rs:197:20:197:40 | ...::open | test.rs:220:14:220:20 | &buffer | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:228:14:228:15 | v1 | test.rs:197:20:197:40 | ...::open | test.rs:228:14:228:15 | v1 | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:229:14:229:15 | v2 | test.rs:197:20:197:40 | ...::open | test.rs:229:14:229:15 | v2 | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:230:14:230:15 | v3 | test.rs:197:20:197:40 | ...::open | test.rs:230:14:230:15 | v3 | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:231:14:231:15 | v4 | test.rs:197:20:197:40 | ...::open | test.rs:231:14:231:15 | v4 | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:237:14:237:20 | &buffer | test.rs:197:20:197:40 | ...::open | test.rs:237:14:237:20 | &buffer | $@ | test.rs:197:20:197:40 | ...::open | ...::open | +| test.rs:246:14:246:20 | &buffer | test.rs:243:52:243:55 | open | test.rs:246:14:246:20 | &buffer | $@ | test.rs:243:52:243:55 | open | open | +| test.rs:279:14:279:20 | &buffer | test.rs:274:20:274:44 | ...::open | test.rs:279:14:279:20 | &buffer | $@ | test.rs:274:20:274:44 | ...::open | ...::open | +| test.rs:288:14:288:20 | &buffer | test.rs:285:56:285:59 | open | test.rs:288:14:288:20 | &buffer | $@ | test.rs:285:56:285:59 | open | open | diff --git a/rust/ql/test/library-tests/dataflow/sources/file/TaintSources.expected b/rust/ql/test/library-tests/dataflow/sources/file/TaintSources.expected index dd1b94de717..dc17269abe8 100644 --- a/rust/ql/test/library-tests/dataflow/sources/file/TaintSources.expected +++ b/rust/ql/test/library-tests/dataflow/sources/file/TaintSources.expected @@ -1,33 +1,33 @@ | test.rs:12:31:12:43 | ...::read | Flow source 'FileSource' of type file (DEFAULT). | | test.rs:17:31:17:38 | ...::read | Flow source 'FileSource' of type file (DEFAULT). | | test.rs:22:22:22:39 | ...::read_to_string | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:26:18:26:29 | ...::read_dir | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:29:22:29:25 | path | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:43:27:43:35 | file_name | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:51:52:51:59 | read_dir | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:54:22:54:25 | path | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:55:27:55:35 | file_name | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:57:56:57:63 | read_dir | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:60:22:60:25 | path | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:61:27:61:35 | file_name | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:65:22:65:34 | ...::read_link | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:74:31:74:45 | ...::read | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:79:31:79:45 | ...::read | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:84:22:84:46 | ...::read_to_string | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:90:26:90:29 | path | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:91:31:91:39 | file_name | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:97:22:97:41 | ...::read_link | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:107:20:107:38 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:140:50:140:53 | open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:147:67:147:70 | open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:154:101:154:104 | open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:164:21:164:39 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:165:21:165:39 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:173:21:173:39 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:185:20:185:40 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:231:52:231:55 | open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:241:21:241:41 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:242:21:242:41 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:250:21:250:41 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:262:20:262:44 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | -| test.rs:273:56:273:59 | open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:27:26:27:37 | ...::read_dir | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:30:22:30:25 | path | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:44:27:44:35 | file_name | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:53:60:53:67 | read_dir | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:56:22:56:25 | path | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:57:27:57:35 | file_name | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:60:64:60:71 | read_dir | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:63:22:63:25 | path | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:64:27:64:35 | file_name | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:68:22:68:34 | ...::read_link | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:77:31:77:45 | ...::read | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:82:31:82:45 | ...::read | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:87:22:87:46 | ...::read_to_string | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:93:26:93:29 | path | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:94:31:94:39 | file_name | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:100:22:100:41 | ...::read_link | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:110:20:110:38 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:143:50:143:53 | open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:152:14:152:17 | open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:165:14:165:17 | open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:176:21:176:39 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:177:21:177:39 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:185:21:185:39 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:197:20:197:40 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:243:52:243:55 | open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:253:21:253:41 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:254:21:254:41 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:262:21:262:41 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:274:20:274:44 | ...::open | Flow source 'FileSource' of type file (DEFAULT). | +| test.rs:285:56:285:59 | open | Flow source 'FileSource' of type file (DEFAULT). | diff --git a/rust/ql/test/library-tests/dataflow/sources/file/test.rs b/rust/ql/test/library-tests/dataflow/sources/file/test.rs index 18090a54568..5752c07f4d9 100644 --- a/rust/ql/test/library-tests/dataflow/sources/file/test.rs +++ b/rust/ql/test/library-tests/dataflow/sources/file/test.rs @@ -1,11 +1,11 @@ -fn sink(_: T) { } +fn sink(_: T) {} // --- tests --- +use async_std::io::ReadExt; use std::fs; use std::io::Read; use tokio::io::AsyncReadExt; -use async_std::io::ReadExt; fn test_fs() -> Result<(), Box> { { @@ -23,43 +23,46 @@ fn test_fs() -> Result<(), Box> { sink(buffer); // $ hasTaintFlow="file.txt" } - for entry in fs::read_dir("directory")? { // $ Alert[rust/summary/taint-sources] + #[rustfmt::skip] + let _ = for entry in fs::read_dir("directory")? { // $ Alert[rust/summary/taint-sources] let e = entry?; let path = e.path(); // $ Alert[rust/summary/taint-sources] sink(path.clone()); // $ hasTaintFlow sink(path.clone().as_path()); // $ hasTaintFlow - sink(path.clone().into_os_string()); // $ MISSING: hasTaintFlow - sink(std::path::PathBuf::from(path.clone().into_boxed_path())); // $ MISSING: hasTaintFlow - sink(path.clone().as_os_str()); // $ MISSING: hasTaintFlow - sink(path.clone().as_mut_os_str()); // $ MISSING: hasTaintFlow - sink(path.to_str()); // $ MISSING: hasTaintFlow - sink(path.to_path_buf()); // $ MISSING: hasTaintFlow - sink(path.file_name().unwrap()); // $ MISSING: hasTaintFlow - sink(path.extension().unwrap()); // $ MISSING: hasTaintFlow + sink(path.clone().into_os_string()); // $ hasTaintFlow + sink(std::path::PathBuf::from(path.clone().into_boxed_path())); // $ hasTaintFlow + sink(path.clone().as_os_str()); // $ hasTaintFlow + sink(path.clone().as_mut_os_str()); // $ hasTaintFlow + sink(path.to_str()); // $ hasTaintFlow + sink(path.to_path_buf()); // $ hasTaintFlow + sink(path.file_name().unwrap()); // $ hasTaintFlow + sink(path.extension().unwrap()); // $ hasTaintFlow sink(path.canonicalize().unwrap()); // $ hasTaintFlow sink(path); // $ hasTaintFlow let file_name = e.file_name(); // $ Alert[rust/summary/taint-sources] sink(file_name.clone()); // $ hasTaintFlow sink(file_name.clone().into_string().unwrap()); // $ hasTaintFlow - sink(file_name.to_str().unwrap()); // $ MISSING: hasTaintFlow - sink(file_name.to_string_lossy().to_mut()); // $ MISSING: hasTaintFlow - sink(file_name.clone().as_encoded_bytes()); // $ MISSING: hasTaintFlow + sink(file_name.to_str().unwrap()); // $ hasTaintFlow + sink(file_name.to_string_lossy().to_mut()); // $ hasTaintFlow + sink(file_name.clone().as_encoded_bytes()); // $ hasTaintFlow sink(file_name); // $ hasTaintFlow - } - for entry in std::path::Path::new("directory").read_dir()? { // $ Alert[rust/summary/taint-sources] + }; + #[rustfmt::skip] + let _ = for entry in std::path::Path::new("directory").read_dir()? { // $ Alert[rust/summary/taint-sources] let e = entry?; let path = e.path(); // $ Alert[rust/summary/taint-sources] let file_name = e.file_name(); // $ Alert[rust/summary/taint-sources] - } - for entry in std::path::PathBuf::from("directory").read_dir()? { // $ Alert[rust/summary/taint-sources] + }; + #[rustfmt::skip] + let _ = for entry in std::path::PathBuf::from("directory").read_dir()? { // $ Alert[rust/summary/taint-sources] let e = entry?; let path = e.path(); // $ Alert[rust/summary/taint-sources] let file_name = e.file_name(); // $ Alert[rust/summary/taint-sources] - } + }; { let target = fs::read_link("symlink.txt")?; // $ Alert[rust/summary/taint-sources] @@ -144,14 +147,23 @@ fn test_io_file() -> std::io::Result<()> { } { - let mut f2 = std::fs::OpenOptions::new().create_new(true).open("f2.txt").unwrap(); // $ Alert[rust/summary/taint-sources] + let mut f2 = std::fs::OpenOptions::new() + .create_new(true) + .open("f2.txt") // $ Alert[rust/summary/taint-sources] + .unwrap(); let mut buffer = [0u8; 1024]; let _bytes = f2.read(&mut buffer)?; sink(&buffer); // $ hasTaintFlow="f2.txt" } { - let mut f3 = std::fs::OpenOptions::new().read(true).write(true).truncate(true).create(true).open("f3.txt").unwrap(); // $ Alert[rust/summary/taint-sources] + let mut f3 = std::fs::OpenOptions::new() + .read(true) + .write(true) + .truncate(true) + .create(true) + .open("f3.txt") // $ Alert[rust/summary/taint-sources] + .unwrap(); let mut buffer = [0u8; 1024]; let _bytes = f3.read(&mut buffer)?; sink(&buffer); // $ hasTaintFlow="f3.txt" diff --git a/rust/ql/test/library-tests/dataflow/sources/net/InlineFlow.expected b/rust/ql/test/library-tests/dataflow/sources/net/InlineFlow.expected index d9f811bd341..b5a008f9838 100644 --- a/rust/ql/test/library-tests/dataflow/sources/net/InlineFlow.expected +++ b/rust/ql/test/library-tests/dataflow/sources/net/InlineFlow.expected @@ -16,58 +16,63 @@ models | 15 | Summary: <_ as futures_util::io::AsyncBufReadExt>::read_until; Argument[self].Reference; Argument[1].Reference; taint | | 16 | Summary: <_ as futures_util::io::AsyncReadExt>::read; Argument[self].Reference; Argument[0].Reference; taint | | 17 | Summary: <_ as futures_util::io::AsyncReadExt>::read_to_end; Argument[self].Reference; Argument[0].Reference; taint | -| 18 | Summary: <_ as std::io::BufRead>::read_line; Argument[self].Reference; Argument[0].Reference; taint | -| 19 | Summary: <_ as std::io::Read>::read; Argument[self].Reference; Argument[0].Reference; taint | -| 20 | Summary: <_ as std::io::Read>::read_to_end; Argument[self].Reference; Argument[0].Reference; taint | -| 21 | Summary: <_ as std::io::Read>::read_to_string; Argument[self].Reference; Argument[0].Reference; taint | -| 22 | Summary: <_ as std::io::Read>::take; Argument[self]; ReturnValue; taint | -| 23 | Summary: <_ as tokio::io::util::async_read_ext::AsyncReadExt>::read; Argument[self].Reference; Argument[0].Reference; taint | -| 24 | Summary: ::unwrap; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | -| 25 | Summary: ::new; Argument[0].Reference; ReturnValue; value | -| 26 | Summary: ::new; Argument[0]; ReturnValue.Field[core::pin::Pin::pointer]; value | -| 27 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | -| 28 | Summary: ::connect; Argument[1]; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | -| 29 | Summary: ::new; Argument[0]; ReturnValue; taint | -| 30 | Summary: ::bytes; Argument[self]; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | -| 31 | Summary: ::chunk; Argument[self].Reference; ReturnValue.Future.Field[core::result::Result::Ok(0)].Field[core::option::Option::Some(0)]; taint | -| 32 | Summary: ::text; Argument[self]; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | -| 33 | Summary: ::bytes; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | -| 34 | Summary: ::text; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | -| 35 | Summary: ::text_with_charset; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | -| 36 | Summary: ::new; Argument[0]; ReturnValue; taint | -| 37 | Summary: ::peek; Argument[self].Reference; Argument[0].Reference; taint | -| 38 | Summary: ::try_read; Argument[self].Reference; Argument[0].Reference; taint | -| 39 | Summary: ::try_read_buf; Argument[self].Reference; Argument[0].Reference; taint | +| 18 | Summary: <_ as std::io::BufRead>::lines; Argument[self]; ReturnValue; taint | +| 19 | Summary: <_ as std::io::BufRead>::read_line; Argument[self].Reference; Argument[0].Reference; taint | +| 20 | Summary: <_ as std::io::Read>::read; Argument[self].Reference; Argument[0].Reference; taint | +| 21 | Summary: <_ as std::io::Read>::read_to_end; Argument[self].Reference; Argument[0].Reference; taint | +| 22 | Summary: <_ as std::io::Read>::read_to_string; Argument[self].Reference; Argument[0].Reference; taint | +| 23 | Summary: <_ as std::io::Read>::take; Argument[self]; ReturnValue; taint | +| 24 | Summary: <_ as tokio::io::util::async_read_ext::AsyncReadExt>::read; Argument[self].Reference; Argument[0].Reference; taint | +| 25 | Summary: ::unwrap; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | +| 26 | Summary: ::new; Argument[0].Reference; ReturnValue; value | +| 27 | Summary: ::new; Argument[0]; ReturnValue.Field[core::pin::Pin::pointer]; value | +| 28 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 29 | Summary: ::connect; Argument[1]; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | +| 30 | Summary: ::new; Argument[0]; ReturnValue; taint | +| 31 | Summary: ::body; Argument[self].Reference.Field[http::response::Response::body]; ReturnValue.Reference; value | +| 32 | Summary: ::body_mut; Argument[self].Reference.Field[http::response::Response::body]; ReturnValue.Reference; value | +| 33 | Summary: ::into_body; Argument[self].Field[http::response::Response::body]; ReturnValue; value | +| 34 | Summary: ::bytes; Argument[self]; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | +| 35 | Summary: ::chunk; Argument[self].Reference; ReturnValue.Future.Field[core::result::Result::Ok(0)].Field[core::option::Option::Some(0)]; taint | +| 36 | Summary: ::text; Argument[self]; ReturnValue.Future.Field[core::result::Result::Ok(0)]; taint | +| 37 | Summary: ::bytes; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | +| 38 | Summary: ::text; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | +| 39 | Summary: ::text_with_charset; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | +| 40 | Summary: ::new; Argument[0]; ReturnValue; taint | +| 41 | Summary: ::try_clone; Argument[self].Reference; ReturnValue.Field[core::result::Result::Ok(0)]; taint | +| 42 | Summary: ::peek; Argument[self].Reference; Argument[0].Reference; taint | +| 43 | Summary: ::try_read; Argument[self].Reference; Argument[0].Reference; taint | +| 44 | Summary: ::try_read_buf; Argument[self].Reference; Argument[0].Reference; taint | edges | test.rs:11:9:11:22 | remote_string1 | test.rs:12:10:12:23 | remote_string1 | provenance | | | test.rs:11:26:11:47 | ...::get | test.rs:11:26:11:62 | ...::get(...) [Ok] | provenance | Src:MaD:7 | | test.rs:11:26:11:62 | ...::get(...) [Ok] | test.rs:11:26:11:63 | TryExpr | provenance | | -| test.rs:11:26:11:63 | TryExpr | test.rs:11:26:11:70 | ... .text() [Ok] | provenance | MaD:34 | +| test.rs:11:26:11:63 | TryExpr | test.rs:11:26:11:70 | ... .text() [Ok] | provenance | MaD:38 | | test.rs:11:26:11:70 | ... .text() [Ok] | test.rs:11:26:11:71 | TryExpr | provenance | | | test.rs:11:26:11:71 | TryExpr | test.rs:11:9:11:22 | remote_string1 | provenance | | | test.rs:14:9:14:22 | remote_string2 | test.rs:15:10:15:23 | remote_string2 | provenance | | | test.rs:14:26:14:47 | ...::get | test.rs:14:26:14:62 | ...::get(...) [Ok] | provenance | Src:MaD:7 | -| test.rs:14:26:14:62 | ...::get(...) [Ok] | test.rs:14:26:14:71 | ... .unwrap() | provenance | MaD:27 | -| test.rs:14:26:14:71 | ... .unwrap() | test.rs:14:26:14:78 | ... .text() [Ok] | provenance | MaD:34 | -| test.rs:14:26:14:78 | ... .text() [Ok] | test.rs:14:26:14:87 | ... .unwrap() | provenance | MaD:27 | +| test.rs:14:26:14:62 | ...::get(...) [Ok] | test.rs:14:26:14:71 | ... .unwrap() | provenance | MaD:28 | +| test.rs:14:26:14:71 | ... .unwrap() | test.rs:14:26:14:78 | ... .text() [Ok] | provenance | MaD:38 | +| test.rs:14:26:14:78 | ... .text() [Ok] | test.rs:14:26:14:87 | ... .unwrap() | provenance | MaD:28 | | test.rs:14:26:14:87 | ... .unwrap() | test.rs:14:9:14:22 | remote_string2 | provenance | | | test.rs:17:9:17:22 | remote_string3 | test.rs:18:10:18:23 | remote_string3 | provenance | | | test.rs:17:26:17:47 | ...::get | test.rs:17:26:17:62 | ...::get(...) [Ok] | provenance | Src:MaD:7 | -| test.rs:17:26:17:62 | ...::get(...) [Ok] | test.rs:17:26:17:71 | ... .unwrap() | provenance | MaD:27 | -| test.rs:17:26:17:71 | ... .unwrap() | test.rs:17:26:17:98 | ... .text_with_charset(...) [Ok] | provenance | MaD:35 | -| test.rs:17:26:17:98 | ... .text_with_charset(...) [Ok] | test.rs:17:26:17:107 | ... .unwrap() | provenance | MaD:27 | +| test.rs:17:26:17:62 | ...::get(...) [Ok] | test.rs:17:26:17:71 | ... .unwrap() | provenance | MaD:28 | +| test.rs:17:26:17:71 | ... .unwrap() | test.rs:17:26:17:98 | ... .text_with_charset(...) [Ok] | provenance | MaD:39 | +| test.rs:17:26:17:98 | ... .text_with_charset(...) [Ok] | test.rs:17:26:17:107 | ... .unwrap() | provenance | MaD:28 | | test.rs:17:26:17:107 | ... .unwrap() | test.rs:17:9:17:22 | remote_string3 | provenance | | | test.rs:20:9:20:22 | remote_string4 | test.rs:21:10:21:23 | remote_string4 | provenance | | | test.rs:20:26:20:47 | ...::get | test.rs:20:26:20:62 | ...::get(...) [Ok] | provenance | Src:MaD:7 | -| test.rs:20:26:20:62 | ...::get(...) [Ok] | test.rs:20:26:20:71 | ... .unwrap() | provenance | MaD:27 | -| test.rs:20:26:20:71 | ... .unwrap() | test.rs:20:26:20:79 | ... .bytes() [Ok] | provenance | MaD:33 | -| test.rs:20:26:20:79 | ... .bytes() [Ok] | test.rs:20:26:20:88 | ... .unwrap() | provenance | MaD:27 | +| test.rs:20:26:20:62 | ...::get(...) [Ok] | test.rs:20:26:20:71 | ... .unwrap() | provenance | MaD:28 | +| test.rs:20:26:20:71 | ... .unwrap() | test.rs:20:26:20:79 | ... .bytes() [Ok] | provenance | MaD:37 | +| test.rs:20:26:20:79 | ... .bytes() [Ok] | test.rs:20:26:20:88 | ... .unwrap() | provenance | MaD:28 | | test.rs:20:26:20:88 | ... .unwrap() | test.rs:20:9:20:22 | remote_string4 | provenance | | | test.rs:23:9:23:22 | remote_string5 | test.rs:24:10:24:23 | remote_string5 | provenance | | | test.rs:23:26:23:37 | ...::get | test.rs:23:26:23:52 | ...::get(...) [future, Ok] | provenance | Src:MaD:8 | | test.rs:23:26:23:52 | ...::get(...) [future, Ok] | test.rs:23:26:23:58 | await ... [Ok] | provenance | | | test.rs:23:26:23:58 | await ... [Ok] | test.rs:23:26:23:59 | TryExpr | provenance | | -| test.rs:23:26:23:59 | TryExpr | test.rs:23:26:23:66 | ... .text() [future, Ok] | provenance | MaD:32 | +| test.rs:23:26:23:59 | TryExpr | test.rs:23:26:23:66 | ... .text() [future, Ok] | provenance | MaD:36 | | test.rs:23:26:23:66 | ... .text() [future, Ok] | test.rs:23:26:23:72 | await ... [Ok] | provenance | | | test.rs:23:26:23:72 | await ... [Ok] | test.rs:23:26:23:73 | TryExpr | provenance | | | test.rs:23:26:23:73 | TryExpr | test.rs:23:9:23:22 | remote_string5 | provenance | | @@ -75,7 +80,7 @@ edges | test.rs:26:26:26:37 | ...::get | test.rs:26:26:26:52 | ...::get(...) [future, Ok] | provenance | Src:MaD:8 | | test.rs:26:26:26:52 | ...::get(...) [future, Ok] | test.rs:26:26:26:58 | await ... [Ok] | provenance | | | test.rs:26:26:26:58 | await ... [Ok] | test.rs:26:26:26:59 | TryExpr | provenance | | -| test.rs:26:26:26:59 | TryExpr | test.rs:26:26:26:67 | ... .bytes() [future, Ok] | provenance | MaD:30 | +| test.rs:26:26:26:59 | TryExpr | test.rs:26:26:26:67 | ... .bytes() [future, Ok] | provenance | MaD:34 | | test.rs:26:26:26:67 | ... .bytes() [future, Ok] | test.rs:26:26:26:73 | await ... [Ok] | provenance | | | test.rs:26:26:26:73 | await ... [Ok] | test.rs:26:26:26:74 | TryExpr | provenance | | | test.rs:26:26:26:74 | TryExpr | test.rs:26:9:26:22 | remote_string6 | provenance | | @@ -85,13 +90,13 @@ edges | test.rs:29:24:29:50 | ...::get(...) [future, Ok] | test.rs:29:24:29:56 | await ... [Ok] | provenance | | | test.rs:29:24:29:56 | await ... [Ok] | test.rs:29:24:29:57 | TryExpr | provenance | | | test.rs:29:24:29:57 | TryExpr | test.rs:29:9:29:20 | mut request1 | provenance | | -| test.rs:30:10:30:17 | request1 | test.rs:30:10:30:25 | request1.chunk() [future, Ok, Some] | provenance | MaD:31 | +| test.rs:30:10:30:17 | request1 | test.rs:30:10:30:25 | request1.chunk() [future, Ok, Some] | provenance | MaD:35 | | test.rs:30:10:30:25 | request1.chunk() [future, Ok, Some] | test.rs:30:10:30:31 | await ... [Ok, Some] | provenance | | | test.rs:30:10:30:31 | await ... [Ok, Some] | test.rs:30:10:30:32 | TryExpr [Some] | provenance | | -| test.rs:30:10:30:32 | TryExpr [Some] | test.rs:30:10:30:41 | ... .unwrap() | provenance | MaD:24 | +| test.rs:30:10:30:32 | TryExpr [Some] | test.rs:30:10:30:41 | ... .unwrap() | provenance | MaD:25 | | test.rs:31:15:31:25 | Some(...) [Some] | test.rs:31:20:31:24 | chunk | provenance | | | test.rs:31:20:31:24 | chunk | test.rs:32:14:32:18 | chunk | provenance | | -| test.rs:31:29:31:36 | request1 | test.rs:31:29:31:44 | request1.chunk() [future, Ok, Some] | provenance | MaD:31 | +| test.rs:31:29:31:36 | request1 | test.rs:31:29:31:44 | request1.chunk() [future, Ok, Some] | provenance | MaD:35 | | test.rs:31:29:31:44 | request1.chunk() [future, Ok, Some] | test.rs:31:29:31:50 | await ... [Ok, Some] | provenance | | | test.rs:31:29:31:50 | await ... [Ok, Some] | test.rs:31:29:31:51 | TryExpr [Some] | provenance | | | test.rs:31:29:31:51 | TryExpr [Some] | test.rs:31:15:31:25 | Some(...) [Some] | provenance | | @@ -103,33 +108,52 @@ edges | test.rs:60:31:60:42 | send_request | test.rs:60:24:60:51 | sender.send_request(...) [future, Ok] | provenance | Src:MaD:2 | | test.rs:61:15:61:22 | response | test.rs:61:14:61:22 | &response | provenance | | | test.rs:67:9:67:20 | mut response | test.rs:68:11:68:18 | response | provenance | | +| test.rs:67:9:67:20 | mut response | test.rs:76:18:76:25 | response | provenance | | +| test.rs:67:9:67:20 | mut response | test.rs:77:18:77:25 | response | provenance | | +| test.rs:67:9:67:20 | mut response | test.rs:79:24:79:31 | response | provenance | | | test.rs:67:24:67:51 | sender.send_request(...) [future, Ok] | test.rs:67:24:67:57 | await ... [Ok] | provenance | | | test.rs:67:24:67:57 | await ... [Ok] | test.rs:67:24:67:58 | TryExpr | provenance | | | test.rs:67:24:67:58 | TryExpr | test.rs:67:9:67:20 | mut response | provenance | | | test.rs:67:31:67:42 | send_request | test.rs:67:24:67:51 | sender.send_request(...) [future, Ok] | provenance | Src:MaD:2 | | test.rs:68:11:68:18 | response | test.rs:68:10:68:18 | &response | provenance | | +| test.rs:76:18:76:25 | response | test.rs:76:18:76:32 | response.body() | provenance | MaD:31 | +| test.rs:77:18:77:25 | response | test.rs:77:18:77:36 | response.body_mut() | provenance | MaD:32 | +| test.rs:79:17:79:20 | body | test.rs:80:19:80:22 | body | provenance | | +| test.rs:79:24:79:31 | response | test.rs:79:24:79:43 | response.into_body() | provenance | MaD:33 | +| test.rs:79:24:79:43 | response.into_body() | test.rs:79:17:79:20 | body | provenance | | +| test.rs:80:19:80:22 | body | test.rs:80:18:80:22 | &body | provenance | | | test.rs:155:13:155:22 | mut stream | test.rs:162:17:162:22 | stream | provenance | | | test.rs:155:26:155:53 | ...::connect | test.rs:155:26:155:62 | ...::connect(...) [Ok] | provenance | Src:MaD:4 | | test.rs:155:26:155:62 | ...::connect(...) [Ok] | test.rs:155:26:155:63 | TryExpr | provenance | | | test.rs:155:26:155:63 | TryExpr | test.rs:155:13:155:22 | mut stream | provenance | | -| test.rs:162:17:162:22 | stream | test.rs:162:29:162:39 | [post] &mut buffer [&ref] | provenance | MaD:19 | +| test.rs:162:17:162:22 | stream | test.rs:162:29:162:39 | [post] &mut buffer [&ref] | provenance | MaD:20 | | test.rs:162:29:162:39 | [post] &mut buffer [&ref] | test.rs:162:34:162:39 | [post] buffer | provenance | | | test.rs:162:34:162:39 | [post] buffer | test.rs:165:15:165:20 | buffer | provenance | | | test.rs:162:34:162:39 | [post] buffer | test.rs:166:14:166:19 | buffer | provenance | | | test.rs:165:15:165:20 | buffer | test.rs:165:14:165:20 | &buffer | provenance | | | test.rs:166:14:166:19 | buffer | test.rs:166:14:166:22 | buffer[0] | provenance | MaD:10 | | test.rs:174:13:174:22 | mut stream | test.rs:182:58:182:63 | stream | provenance | | +| test.rs:174:13:174:22 | mut stream | test.rs:203:54:203:59 | stream | provenance | | | test.rs:174:26:174:61 | ...::connect_timeout | test.rs:174:26:174:105 | ...::connect_timeout(...) [Ok] | provenance | Src:MaD:5 | | test.rs:174:26:174:105 | ...::connect_timeout(...) [Ok] | test.rs:174:26:174:106 | TryExpr | provenance | | | test.rs:174:26:174:106 | TryExpr | test.rs:174:13:174:22 | mut stream | provenance | | | test.rs:182:21:182:30 | mut reader | test.rs:185:27:185:32 | reader | provenance | | -| test.rs:182:34:182:64 | ...::new(...) | test.rs:182:34:182:74 | ... .take(...) | provenance | MaD:22 | +| test.rs:182:34:182:64 | ...::new(...) | test.rs:182:34:182:74 | ... .take(...) | provenance | MaD:23 | | test.rs:182:34:182:74 | ... .take(...) | test.rs:182:21:182:30 | mut reader | provenance | | -| test.rs:182:58:182:63 | stream | test.rs:182:34:182:64 | ...::new(...) | provenance | MaD:36 | -| test.rs:185:27:185:32 | reader | test.rs:185:44:185:52 | [post] &mut line [&ref] | provenance | MaD:18 | +| test.rs:182:58:182:63 | stream | test.rs:182:34:182:64 | ...::new(...) | provenance | MaD:40 | +| test.rs:185:27:185:32 | reader | test.rs:185:44:185:52 | [post] &mut line [&ref] | provenance | MaD:19 | | test.rs:185:44:185:52 | [post] &mut line [&ref] | test.rs:185:49:185:52 | [post] line | provenance | | | test.rs:185:49:185:52 | [post] line | test.rs:192:35:192:38 | line | provenance | | | test.rs:192:35:192:38 | line | test.rs:192:34:192:38 | &line | provenance | | +| test.rs:203:21:203:26 | reader | test.rs:204:29:204:34 | reader | provenance | | +| test.rs:203:30:203:73 | ...::new(...) | test.rs:203:30:203:83 | ... .take(...) | provenance | MaD:23 | +| test.rs:203:30:203:83 | ... .take(...) | test.rs:203:21:203:26 | reader | provenance | | +| test.rs:203:54:203:59 | stream | test.rs:203:54:203:71 | stream.try_clone() [Ok] | provenance | MaD:41 | +| test.rs:203:54:203:71 | stream.try_clone() [Ok] | test.rs:203:54:203:72 | TryExpr | provenance | | +| test.rs:203:54:203:72 | TryExpr | test.rs:203:30:203:73 | ...::new(...) | provenance | MaD:40 | +| test.rs:204:29:204:34 | reader | test.rs:204:29:204:42 | reader.lines() | provenance | MaD:18 | +| test.rs:204:29:204:42 | reader.lines() | test.rs:205:28:205:37 | Ok(...) | provenance | | +| test.rs:205:28:205:37 | Ok(...) | test.rs:207:30:207:35 | string | provenance | | | test.rs:224:9:224:24 | mut tokio_stream | test.rs:232:17:232:28 | tokio_stream | provenance | | | test.rs:224:9:224:24 | mut tokio_stream | test.rs:236:18:236:29 | tokio_stream | provenance | | | test.rs:224:9:224:24 | mut tokio_stream | test.rs:252:19:252:30 | tokio_stream | provenance | | @@ -138,11 +162,11 @@ edges | test.rs:224:28:224:66 | ...::connect(...) [future, Ok] | test.rs:224:28:224:72 | await ... [Ok] | provenance | | | test.rs:224:28:224:72 | await ... [Ok] | test.rs:224:28:224:73 | TryExpr | provenance | | | test.rs:224:28:224:73 | TryExpr | test.rs:224:9:224:24 | mut tokio_stream | provenance | | -| test.rs:232:17:232:28 | tokio_stream | test.rs:232:35:232:46 | [post] &mut buffer1 [&ref] | provenance | MaD:37 | +| test.rs:232:17:232:28 | tokio_stream | test.rs:232:35:232:46 | [post] &mut buffer1 [&ref] | provenance | MaD:42 | | test.rs:232:35:232:46 | [post] &mut buffer1 [&ref] | test.rs:232:40:232:46 | [post] buffer1 | provenance | | | test.rs:232:40:232:46 | [post] buffer1 | test.rs:239:15:239:21 | buffer1 | provenance | | | test.rs:232:40:232:46 | [post] buffer1 | test.rs:240:14:240:20 | buffer1 | provenance | | -| test.rs:236:18:236:29 | tokio_stream | test.rs:236:36:236:47 | [post] &mut buffer2 [&ref] | provenance | MaD:23 | +| test.rs:236:18:236:29 | tokio_stream | test.rs:236:36:236:47 | [post] &mut buffer2 [&ref] | provenance | MaD:24 | | test.rs:236:36:236:47 | [post] &mut buffer2 [&ref] | test.rs:236:41:236:47 | [post] buffer2 | provenance | | | test.rs:236:41:236:47 | [post] buffer2 | test.rs:243:15:243:21 | buffer2 | provenance | | | test.rs:236:41:236:47 | [post] buffer2 | test.rs:244:14:244:20 | buffer2 | provenance | | @@ -150,17 +174,17 @@ edges | test.rs:240:14:240:20 | buffer1 | test.rs:240:14:240:23 | buffer1[0] | provenance | MaD:10 | | test.rs:243:15:243:21 | buffer2 | test.rs:243:14:243:21 | &buffer2 | provenance | | | test.rs:244:14:244:20 | buffer2 | test.rs:244:14:244:23 | buffer2[0] | provenance | MaD:10 | -| test.rs:252:19:252:30 | tokio_stream | test.rs:252:41:252:51 | [post] &mut buffer [&ref] | provenance | MaD:38 | +| test.rs:252:19:252:30 | tokio_stream | test.rs:252:41:252:51 | [post] &mut buffer [&ref] | provenance | MaD:43 | | test.rs:252:41:252:51 | [post] &mut buffer [&ref] | test.rs:252:46:252:51 | [post] buffer | provenance | | | test.rs:252:46:252:51 | [post] buffer | test.rs:259:27:259:32 | buffer | provenance | | | test.rs:259:27:259:32 | buffer | test.rs:259:26:259:32 | &buffer | provenance | | -| test.rs:275:19:275:30 | tokio_stream | test.rs:275:45:275:55 | [post] &mut buffer [&ref] | provenance | MaD:39 | +| test.rs:275:19:275:30 | tokio_stream | test.rs:275:45:275:55 | [post] &mut buffer [&ref] | provenance | MaD:44 | | test.rs:275:45:275:55 | [post] &mut buffer [&ref] | test.rs:275:50:275:55 | [post] buffer | provenance | | | test.rs:275:50:275:55 | [post] buffer | test.rs:282:27:282:32 | buffer | provenance | | | test.rs:282:27:282:32 | buffer | test.rs:282:26:282:32 | &buffer | provenance | | | test.rs:332:9:332:18 | mut client | test.rs:333:22:333:27 | client | provenance | | | test.rs:332:22:332:50 | ...::new | test.rs:332:22:332:75 | ...::new(...) [Ok] | provenance | Src:MaD:3 | -| test.rs:332:22:332:75 | ...::new(...) [Ok] | test.rs:332:22:332:84 | ... .unwrap() | provenance | MaD:27 | +| test.rs:332:22:332:75 | ...::new(...) [Ok] | test.rs:332:22:332:84 | ... .unwrap() | provenance | MaD:28 | | test.rs:332:22:332:84 | ... .unwrap() | test.rs:332:9:332:18 | mut client | provenance | | | test.rs:333:9:333:18 | mut reader | test.rs:334:11:334:16 | reader | provenance | | | test.rs:333:9:333:18 | mut reader | test.rs:338:22:338:27 | reader | provenance | | @@ -169,15 +193,15 @@ edges | test.rs:333:22:333:27 | client | test.rs:333:22:333:36 | client.reader() | provenance | MaD:9 | | test.rs:333:22:333:36 | client.reader() | test.rs:333:9:333:18 | mut reader | provenance | | | test.rs:334:11:334:16 | reader | test.rs:334:10:334:16 | &reader | provenance | | -| test.rs:338:22:338:27 | reader | test.rs:338:34:338:44 | [post] &mut buffer [&ref] | provenance | MaD:19 | +| test.rs:338:22:338:27 | reader | test.rs:338:34:338:44 | [post] &mut buffer [&ref] | provenance | MaD:20 | | test.rs:338:34:338:44 | [post] &mut buffer [&ref] | test.rs:338:39:338:44 | [post] buffer | provenance | | | test.rs:338:39:338:44 | [post] buffer | test.rs:339:15:339:20 | buffer | provenance | | | test.rs:339:15:339:20 | buffer | test.rs:339:14:339:20 | &buffer | provenance | | -| test.rs:344:22:344:27 | reader | test.rs:344:41:344:51 | [post] &mut buffer [&ref] | provenance | MaD:20 | +| test.rs:344:22:344:27 | reader | test.rs:344:41:344:51 | [post] &mut buffer [&ref] | provenance | MaD:21 | | test.rs:344:41:344:51 | [post] &mut buffer [&ref] | test.rs:344:46:344:51 | [post] buffer | provenance | | | test.rs:344:46:344:51 | [post] buffer | test.rs:345:15:345:20 | buffer | provenance | | | test.rs:345:15:345:20 | buffer | test.rs:345:14:345:20 | &buffer | provenance | | -| test.rs:350:22:350:27 | reader | test.rs:350:44:350:54 | [post] &mut buffer [&ref] | provenance | MaD:21 | +| test.rs:350:22:350:27 | reader | test.rs:350:44:350:54 | [post] &mut buffer [&ref] | provenance | MaD:22 | | test.rs:350:44:350:54 | [post] &mut buffer [&ref] | test.rs:350:49:350:54 | [post] buffer | provenance | | | test.rs:350:49:350:54 | [post] buffer | test.rs:351:15:351:20 | buffer | provenance | | | test.rs:351:15:351:20 | buffer | test.rs:351:14:351:20 | &buffer | provenance | | @@ -196,15 +220,15 @@ edges | test.rs:380:26:380:60 | connector.connect(...) [future, Ok] | test.rs:380:26:380:66 | await ... [Ok] | provenance | | | test.rs:380:26:380:66 | await ... [Ok] | test.rs:380:26:380:67 | TryExpr | provenance | | | test.rs:380:26:380:67 | TryExpr | test.rs:380:13:380:22 | mut reader | provenance | | -| test.rs:380:57:380:59 | tcp | test.rs:380:26:380:60 | connector.connect(...) [future, Ok] | provenance | MaD:28 | +| test.rs:380:57:380:59 | tcp | test.rs:380:26:380:60 | connector.connect(...) [future, Ok] | provenance | MaD:29 | | test.rs:381:15:381:20 | reader | test.rs:381:14:381:20 | &reader | provenance | | | test.rs:386:17:386:26 | mut pinned | test.rs:387:19:387:24 | pinned | provenance | | | test.rs:386:17:386:26 | mut pinned | test.rs:389:30:389:35 | pinned | provenance | | | test.rs:386:17:386:26 | mut pinned [Pin, &ref] | test.rs:387:19:387:24 | pinned [Pin, &ref] | provenance | | | test.rs:386:30:386:50 | ...::new(...) | test.rs:386:17:386:26 | mut pinned | provenance | | | test.rs:386:30:386:50 | ...::new(...) [Pin, &ref] | test.rs:386:17:386:26 | mut pinned [Pin, &ref] | provenance | | -| test.rs:386:39:386:49 | &mut reader [&ref] | test.rs:386:30:386:50 | ...::new(...) | provenance | MaD:25 | -| test.rs:386:39:386:49 | &mut reader [&ref] | test.rs:386:30:386:50 | ...::new(...) [Pin, &ref] | provenance | MaD:26 | +| test.rs:386:39:386:49 | &mut reader [&ref] | test.rs:386:30:386:50 | ...::new(...) | provenance | MaD:26 | +| test.rs:386:39:386:49 | &mut reader [&ref] | test.rs:386:30:386:50 | ...::new(...) [Pin, &ref] | provenance | MaD:27 | | test.rs:386:44:386:49 | reader | test.rs:386:39:386:49 | &mut reader [&ref] | provenance | | | test.rs:387:19:387:24 | pinned | test.rs:387:18:387:24 | &pinned | provenance | | | test.rs:387:19:387:24 | pinned [Pin, &ref] | test.rs:387:18:387:24 | &pinned | provenance | | @@ -242,15 +266,15 @@ edges | test.rs:408:13:408:23 | mut reader2 | test.rs:493:31:493:37 | reader2 | provenance | | | test.rs:408:13:408:23 | mut reader2 | test.rs:500:31:500:37 | reader2 | provenance | | | test.rs:408:27:408:61 | ...::new(...) | test.rs:408:13:408:23 | mut reader2 | provenance | | -| test.rs:408:55:408:60 | reader | test.rs:408:27:408:61 | ...::new(...) | provenance | MaD:29 | +| test.rs:408:55:408:60 | reader | test.rs:408:27:408:61 | ...::new(...) | provenance | MaD:30 | | test.rs:409:15:409:21 | reader2 | test.rs:409:14:409:21 | &reader2 | provenance | | | test.rs:413:17:413:26 | mut pinned | test.rs:414:19:414:24 | pinned | provenance | | | test.rs:413:17:413:26 | mut pinned | test.rs:416:26:416:31 | pinned | provenance | | | test.rs:413:17:413:26 | mut pinned [Pin, &ref] | test.rs:414:19:414:24 | pinned [Pin, &ref] | provenance | | | test.rs:413:30:413:51 | ...::new(...) | test.rs:413:17:413:26 | mut pinned | provenance | | | test.rs:413:30:413:51 | ...::new(...) [Pin, &ref] | test.rs:413:17:413:26 | mut pinned [Pin, &ref] | provenance | | -| test.rs:413:39:413:50 | &mut reader2 [&ref] | test.rs:413:30:413:51 | ...::new(...) | provenance | MaD:25 | -| test.rs:413:39:413:50 | &mut reader2 [&ref] | test.rs:413:30:413:51 | ...::new(...) [Pin, &ref] | provenance | MaD:26 | +| test.rs:413:39:413:50 | &mut reader2 [&ref] | test.rs:413:30:413:51 | ...::new(...) | provenance | MaD:26 | +| test.rs:413:39:413:50 | &mut reader2 [&ref] | test.rs:413:30:413:51 | ...::new(...) [Pin, &ref] | provenance | MaD:27 | | test.rs:413:44:413:50 | reader2 | test.rs:413:39:413:50 | &mut reader2 [&ref] | provenance | | | test.rs:414:19:414:24 | pinned | test.rs:414:18:414:24 | &pinned | provenance | | | test.rs:414:19:414:24 | pinned [Pin, &ref] | test.rs:414:18:414:24 | &pinned | provenance | | @@ -265,7 +289,7 @@ edges | test.rs:423:17:423:23 | buffer2 [Ready, Ok] | test.rs:424:20:424:26 | buffer2 [Ready, Ok] | provenance | | | test.rs:423:27:423:48 | ...::new(...) | test.rs:423:27:423:71 | ... .poll_fill_buf(...) [Ready, Ok] | provenance | MaD:11 | | test.rs:423:27:423:71 | ... .poll_fill_buf(...) [Ready, Ok] | test.rs:423:17:423:23 | buffer2 [Ready, Ok] | provenance | | -| test.rs:423:36:423:47 | &mut reader2 [&ref] | test.rs:423:27:423:48 | ...::new(...) | provenance | MaD:25 | +| test.rs:423:36:423:47 | &mut reader2 [&ref] | test.rs:423:27:423:48 | ...::new(...) | provenance | MaD:26 | | test.rs:423:41:423:47 | reader2 | test.rs:423:36:423:47 | &mut reader2 [&ref] | provenance | | | test.rs:424:20:424:26 | buffer2 [Ready, Ok] | test.rs:425:17:425:36 | ...::Ready(...) [Ready, Ok] | provenance | | | test.rs:424:20:424:26 | buffer2 [Ready, Ok] | test.rs:426:27:426:33 | buffer2 [Ready, Ok] | provenance | | @@ -283,8 +307,8 @@ edges | test.rs:444:17:444:26 | mut pinned [Pin, &ref] | test.rs:445:19:445:24 | pinned [Pin, &ref] | provenance | | | test.rs:444:30:444:51 | ...::new(...) | test.rs:444:17:444:26 | mut pinned | provenance | | | test.rs:444:30:444:51 | ...::new(...) [Pin, &ref] | test.rs:444:17:444:26 | mut pinned [Pin, &ref] | provenance | | -| test.rs:444:39:444:50 | &mut reader2 [&ref] | test.rs:444:30:444:51 | ...::new(...) | provenance | MaD:25 | -| test.rs:444:39:444:50 | &mut reader2 [&ref] | test.rs:444:30:444:51 | ...::new(...) [Pin, &ref] | provenance | MaD:26 | +| test.rs:444:39:444:50 | &mut reader2 [&ref] | test.rs:444:30:444:51 | ...::new(...) | provenance | MaD:26 | +| test.rs:444:39:444:50 | &mut reader2 [&ref] | test.rs:444:30:444:51 | ...::new(...) [Pin, &ref] | provenance | MaD:27 | | test.rs:444:44:444:50 | reader2 | test.rs:444:39:444:50 | &mut reader2 [&ref] | provenance | | | test.rs:445:19:445:24 | pinned | test.rs:445:18:445:24 | &pinned | provenance | | | test.rs:445:19:445:24 | pinned [Pin, &ref] | test.rs:445:18:445:24 | &pinned | provenance | | @@ -314,8 +338,8 @@ edges | test.rs:467:17:467:26 | mut pinned [Pin, &ref] | test.rs:468:19:468:24 | pinned [Pin, &ref] | provenance | | | test.rs:467:30:467:51 | ...::new(...) | test.rs:467:17:467:26 | mut pinned | provenance | | | test.rs:467:30:467:51 | ...::new(...) [Pin, &ref] | test.rs:467:17:467:26 | mut pinned [Pin, &ref] | provenance | | -| test.rs:467:39:467:50 | &mut reader2 [&ref] | test.rs:467:30:467:51 | ...::new(...) | provenance | MaD:25 | -| test.rs:467:39:467:50 | &mut reader2 [&ref] | test.rs:467:30:467:51 | ...::new(...) [Pin, &ref] | provenance | MaD:26 | +| test.rs:467:39:467:50 | &mut reader2 [&ref] | test.rs:467:30:467:51 | ...::new(...) | provenance | MaD:26 | +| test.rs:467:39:467:50 | &mut reader2 [&ref] | test.rs:467:30:467:51 | ...::new(...) [Pin, &ref] | provenance | MaD:27 | | test.rs:467:44:467:50 | reader2 | test.rs:467:39:467:50 | &mut reader2 [&ref] | provenance | | | test.rs:468:19:468:24 | pinned | test.rs:468:18:468:24 | &pinned | provenance | | | test.rs:468:19:468:24 | pinned [Pin, &ref] | test.rs:468:18:468:24 | &pinned | provenance | | @@ -423,6 +447,15 @@ nodes | test.rs:67:31:67:42 | send_request | semmle.label | send_request | | test.rs:68:10:68:18 | &response | semmle.label | &response | | test.rs:68:11:68:18 | response | semmle.label | response | +| test.rs:76:18:76:25 | response | semmle.label | response | +| test.rs:76:18:76:32 | response.body() | semmle.label | response.body() | +| test.rs:77:18:77:25 | response | semmle.label | response | +| test.rs:77:18:77:36 | response.body_mut() | semmle.label | response.body_mut() | +| test.rs:79:17:79:20 | body | semmle.label | body | +| test.rs:79:24:79:31 | response | semmle.label | response | +| test.rs:79:24:79:43 | response.into_body() | semmle.label | response.into_body() | +| test.rs:80:18:80:22 | &body | semmle.label | &body | +| test.rs:80:19:80:22 | body | semmle.label | body | | test.rs:155:13:155:22 | mut stream | semmle.label | mut stream | | test.rs:155:26:155:53 | ...::connect | semmle.label | ...::connect | | test.rs:155:26:155:62 | ...::connect(...) [Ok] | semmle.label | ...::connect(...) [Ok] | @@ -447,6 +480,16 @@ nodes | test.rs:185:49:185:52 | [post] line | semmle.label | [post] line | | test.rs:192:34:192:38 | &line | semmle.label | &line | | test.rs:192:35:192:38 | line | semmle.label | line | +| test.rs:203:21:203:26 | reader | semmle.label | reader | +| test.rs:203:30:203:73 | ...::new(...) | semmle.label | ...::new(...) | +| test.rs:203:30:203:83 | ... .take(...) | semmle.label | ... .take(...) | +| test.rs:203:54:203:59 | stream | semmle.label | stream | +| test.rs:203:54:203:71 | stream.try_clone() [Ok] | semmle.label | stream.try_clone() [Ok] | +| test.rs:203:54:203:72 | TryExpr | semmle.label | TryExpr | +| test.rs:204:29:204:34 | reader | semmle.label | reader | +| test.rs:204:29:204:42 | reader.lines() | semmle.label | reader.lines() | +| test.rs:205:28:205:37 | Ok(...) | semmle.label | Ok(...) | +| test.rs:207:30:207:35 | string | semmle.label | string | | test.rs:224:9:224:24 | mut tokio_stream | semmle.label | mut tokio_stream | | test.rs:224:28:224:57 | ...::connect | semmle.label | ...::connect | | test.rs:224:28:224:66 | ...::connect(...) [future, Ok] | semmle.label | ...::connect(...) [future, Ok] | @@ -668,9 +711,13 @@ testFailures | test.rs:61:14:61:22 | &response | test.rs:60:31:60:42 | send_request | test.rs:61:14:61:22 | &response | $@ | test.rs:60:31:60:42 | send_request | send_request | | test.rs:62:14:62:21 | response | test.rs:60:31:60:42 | send_request | test.rs:62:14:62:21 | response | $@ | test.rs:60:31:60:42 | send_request | send_request | | test.rs:68:10:68:18 | &response | test.rs:67:31:67:42 | send_request | test.rs:68:10:68:18 | &response | $@ | test.rs:67:31:67:42 | send_request | send_request | +| test.rs:76:18:76:32 | response.body() | test.rs:67:31:67:42 | send_request | test.rs:76:18:76:32 | response.body() | $@ | test.rs:67:31:67:42 | send_request | send_request | +| test.rs:77:18:77:36 | response.body_mut() | test.rs:67:31:67:42 | send_request | test.rs:77:18:77:36 | response.body_mut() | $@ | test.rs:67:31:67:42 | send_request | send_request | +| test.rs:80:18:80:22 | &body | test.rs:67:31:67:42 | send_request | test.rs:80:18:80:22 | &body | $@ | test.rs:67:31:67:42 | send_request | send_request | | test.rs:165:14:165:20 | &buffer | test.rs:155:26:155:53 | ...::connect | test.rs:165:14:165:20 | &buffer | $@ | test.rs:155:26:155:53 | ...::connect | ...::connect | | test.rs:166:14:166:22 | buffer[0] | test.rs:155:26:155:53 | ...::connect | test.rs:166:14:166:22 | buffer[0] | $@ | test.rs:155:26:155:53 | ...::connect | ...::connect | | test.rs:192:34:192:38 | &line | test.rs:174:26:174:61 | ...::connect_timeout | test.rs:192:34:192:38 | &line | $@ | test.rs:174:26:174:61 | ...::connect_timeout | ...::connect_timeout | +| test.rs:207:30:207:35 | string | test.rs:174:26:174:61 | ...::connect_timeout | test.rs:207:30:207:35 | string | $@ | test.rs:174:26:174:61 | ...::connect_timeout | ...::connect_timeout | | test.rs:239:14:239:21 | &buffer1 | test.rs:224:28:224:57 | ...::connect | test.rs:239:14:239:21 | &buffer1 | $@ | test.rs:224:28:224:57 | ...::connect | ...::connect | | test.rs:240:14:240:23 | buffer1[0] | test.rs:224:28:224:57 | ...::connect | test.rs:240:14:240:23 | buffer1[0] | $@ | test.rs:224:28:224:57 | ...::connect | ...::connect | | test.rs:243:14:243:21 | &buffer2 | test.rs:224:28:224:57 | ...::connect | test.rs:243:14:243:21 | &buffer2 | $@ | test.rs:224:28:224:57 | ...::connect | ...::connect | diff --git a/rust/ql/test/library-tests/dataflow/sources/net/test.rs b/rust/ql/test/library-tests/dataflow/sources/net/test.rs index f029ac53805..bb6f54cb913 100644 --- a/rust/ql/test/library-tests/dataflow/sources/net/test.rs +++ b/rust/ql/test/library-tests/dataflow/sources/net/test.rs @@ -73,11 +73,11 @@ async fn test_hyper_http(case: i64) -> Result<(), Box> { match case { 1 => { - sink(response.body()); // $ MISSING: hasTaintFlow - sink(response.body_mut()); // $ MISSING: hasTaintFlow + sink(response.body()); // $ hasTaintFlow=request + sink(response.body_mut()); // $ hasTaintFlow=request let body = response.into_body(); - sink(&body); // $ MISSING: hasTaintFlow + sink(&body); // $ hasTaintFlow=request println!("awaiting response..."); let data = body.collect().await?; @@ -204,7 +204,7 @@ async fn test_std_tcpstream(case: i64) -> std::io::Result<()> { for line in reader.lines() { // $ MISSING: Alert[rust/summary/taint-sources] if let Ok(string) = line { println!("line = {}", string); - sink(string); // $ MISSING: hasTaintFlow=&sock_addr + sink(string); // $ hasTaintFlow=&sock_addr } } } diff --git a/rust/ql/test/library-tests/dataflow/sources/web_frameworks/InlineFlow.expected b/rust/ql/test/library-tests/dataflow/sources/web_frameworks/InlineFlow.expected index 4c85f166699..d3c65fac62f 100644 --- a/rust/ql/test/library-tests/dataflow/sources/web_frameworks/InlineFlow.expected +++ b/rust/ql/test/library-tests/dataflow/sources/web_frameworks/InlineFlow.expected @@ -10,8 +10,8 @@ models | 9 | Source: axum::routing::method_routing::post; Argument[0].Parameter[0..7]; remote | | 10 | Source: axum::routing::method_routing::put; Argument[0].Parameter[0..7]; remote | | 11 | Summary: ::into_inner; Argument[self]; ReturnValue; taint | -| 12 | Summary: ::as_bytes; Argument[self]; ReturnValue; value | -| 13 | Summary: ::as_str; Argument[self]; ReturnValue; value | +| 12 | Summary: ::as_bytes; Argument[self].Reference; ReturnValue.Reference.Element; taint | +| 13 | Summary: ::as_str; Argument[self].Reference; ReturnValue.Reference; taint | edges | test.rs:11:31:11:31 | a | test.rs:13:14:13:14 | a | provenance | | | test.rs:11:31:11:31 | a | test.rs:14:14:14:14 | a | provenance | | diff --git a/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected b/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected index c39c5e60476..86f7d8f0bc0 100644 --- a/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected +++ b/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected @@ -5,8 +5,8 @@ models | 4 | Summary: ::from; Argument[0].Field[alloc::borrow::Cow::Owned(0)]; ReturnValue; value | | 5 | Summary: ::from; Argument[0].Reference; ReturnValue; value | | 6 | Summary: ::add; Argument[0].Reference; ReturnValue; taint | -| 7 | Summary: ::add; Argument[self,0]; ReturnValue; taint | -| 8 | Summary: ::as_str; Argument[self]; ReturnValue; value | +| 7 | Summary: ::add; Argument[self]; ReturnValue; taint | +| 8 | Summary: ::as_str; Argument[self].Reference; ReturnValue.Reference; taint | | 9 | Summary: alloc::fmt::format; Argument[0]; ReturnValue; taint | | 10 | Summary: core::hint::must_use; Argument[0]; ReturnValue; value | edges diff --git a/rust/ql/test/library-tests/type-inference/closure.rs b/rust/ql/test/library-tests/type-inference/closure.rs index 43b26819325..e5a9c83aa07 100644 --- a/rust/ql/test/library-tests/type-inference/closure.rs +++ b/rust/ql/test/library-tests/type-inference/closure.rs @@ -36,6 +36,10 @@ mod fn_once_trait { let _return = f(true); // $ type=_return:i64 } + fn return_type_omitted(f: F) { + let _return = f(true); // $ type=_return:() + } + fn argument_type i64>(f: F) { let arg = Default::default(); // $ target=default type=arg:bool f(arg); diff --git a/rust/ql/test/library-tests/type-inference/type-inference.expected b/rust/ql/test/library-tests/type-inference/type-inference.expected index a9328488156..353b18ff840 100644 --- a/rust/ql/test/library-tests/type-inference/type-inference.expected +++ b/rust/ql/test/library-tests/type-inference/type-inference.expected @@ -230,51 +230,55 @@ inferCertainType | closure.rs:35:50:37:5 | { ... } | | {EXTERNAL LOCATION} | () | | closure.rs:36:23:36:23 | f | | closure.rs:35:20:35:41 | F | | closure.rs:36:25:36:28 | true | | {EXTERNAL LOCATION} | bool | -| closure.rs:39:46:39:46 | f | | closure.rs:39:22:39:43 | F | -| closure.rs:39:52:42:5 | { ... } | | {EXTERNAL LOCATION} | () | -| closure.rs:41:9:41:9 | f | | closure.rs:39:22:39:43 | F | -| closure.rs:44:39:44:39 | f | | closure.rs:44:20:44:36 | F | -| closure.rs:44:45:44:45 | a | | closure.rs:44:14:44:14 | A | -| closure.rs:44:56:46:5 | { ... } | | closure.rs:44:17:44:17 | B | -| closure.rs:45:9:45:9 | f | | closure.rs:44:20:44:36 | F | -| closure.rs:45:11:45:11 | a | | closure.rs:44:14:44:14 | A | -| closure.rs:48:18:48:18 | f | | closure.rs:48:21:48:43 | impl ... | -| closure.rs:48:53:50:5 | { ... } | | {EXTERNAL LOCATION} | i64 | -| closure.rs:49:9:49:9 | f | | closure.rs:48:21:48:43 | impl ... | -| closure.rs:52:15:64:5 | { ... } | | {EXTERNAL LOCATION} | () | -| closure.rs:53:18:53:18 | x | | {EXTERNAL LOCATION} | bool | -| closure.rs:54:16:54:16 | x | | {EXTERNAL LOCATION} | bool | -| closure.rs:60:27:60:30 | true | | {EXTERNAL LOCATION} | bool | -| closure.rs:63:13:63:15 | _r2 | | {EXTERNAL LOCATION} | i64 | -| closure.rs:63:19:63:30 | apply_two(...) | | {EXTERNAL LOCATION} | i64 | -| closure.rs:68:54:68:54 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:68:54:68:54 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:68:54:68:54 | f | T | closure.rs:68:26:68:51 | F | -| closure.rs:68:65:68:67 | arg | | closure.rs:68:20:68:20 | A | -| closure.rs:68:78:70:5 | { ... } | | closure.rs:68:23:68:23 | B | -| closure.rs:69:9:69:9 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:69:9:69:9 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:69:9:69:9 | f | T | closure.rs:68:26:68:51 | F | -| closure.rs:69:11:69:13 | arg | | closure.rs:68:20:68:20 | A | -| closure.rs:72:30:72:30 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:72:30:72:30 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:72:30:72:30 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:72:30:72:30 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:72:30:72:30 | f | T.dyn(Args).T0 | closure.rs:72:24:72:24 | A | -| closure.rs:72:30:72:30 | f | T.dyn(Output) | closure.rs:72:27:72:27 | B | -| closure.rs:72:58:72:60 | arg | | closure.rs:72:24:72:24 | A | -| closure.rs:72:66:75:5 | { ... } | | {EXTERNAL LOCATION} | () | -| closure.rs:73:31:73:31 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:73:31:73:31 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:73:31:73:31 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:73:31:73:31 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:73:31:73:31 | f | T.dyn(Args).T0 | closure.rs:72:24:72:24 | A | -| closure.rs:73:31:73:31 | f | T.dyn(Output) | closure.rs:72:27:72:27 | B | -| closure.rs:73:34:73:36 | arg | | closure.rs:72:24:72:24 | A | -| closure.rs:74:31:74:53 | ...::new(...) | | {EXTERNAL LOCATION} | Box | -| closure.rs:74:31:74:53 | ...::new(...) | A | {EXTERNAL LOCATION} | Global | -| closure.rs:74:41:74:41 | _ | | {EXTERNAL LOCATION} | i64 | -| closure.rs:74:49:74:52 | true | | {EXTERNAL LOCATION} | bool | +| closure.rs:39:45:39:45 | f | | closure.rs:39:28:39:42 | F | +| closure.rs:39:51:41:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:40:23:40:23 | f | | closure.rs:39:28:39:42 | F | +| closure.rs:40:25:40:28 | true | | {EXTERNAL LOCATION} | bool | +| closure.rs:43:46:43:46 | f | | closure.rs:43:22:43:43 | F | +| closure.rs:43:52:46:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:45:9:45:9 | f | | closure.rs:43:22:43:43 | F | +| closure.rs:48:39:48:39 | f | | closure.rs:48:20:48:36 | F | +| closure.rs:48:45:48:45 | a | | closure.rs:48:14:48:14 | A | +| closure.rs:48:56:50:5 | { ... } | | closure.rs:48:17:48:17 | B | +| closure.rs:49:9:49:9 | f | | closure.rs:48:20:48:36 | F | +| closure.rs:49:11:49:11 | a | | closure.rs:48:14:48:14 | A | +| closure.rs:52:18:52:18 | f | | closure.rs:52:21:52:43 | impl ... | +| closure.rs:52:53:54:5 | { ... } | | {EXTERNAL LOCATION} | i64 | +| closure.rs:53:9:53:9 | f | | closure.rs:52:21:52:43 | impl ... | +| closure.rs:56:15:68:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:57:18:57:18 | x | | {EXTERNAL LOCATION} | bool | +| closure.rs:58:16:58:16 | x | | {EXTERNAL LOCATION} | bool | +| closure.rs:64:27:64:30 | true | | {EXTERNAL LOCATION} | bool | +| closure.rs:67:13:67:15 | _r2 | | {EXTERNAL LOCATION} | i64 | +| closure.rs:67:19:67:30 | apply_two(...) | | {EXTERNAL LOCATION} | i64 | +| closure.rs:72:54:72:54 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:72:54:72:54 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:72:54:72:54 | f | T | closure.rs:72:26:72:51 | F | +| closure.rs:72:65:72:67 | arg | | closure.rs:72:20:72:20 | A | +| closure.rs:72:78:74:5 | { ... } | | closure.rs:72:23:72:23 | B | +| closure.rs:73:9:73:9 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:73:9:73:9 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:73:9:73:9 | f | T | closure.rs:72:26:72:51 | F | +| closure.rs:73:11:73:13 | arg | | closure.rs:72:20:72:20 | A | +| closure.rs:76:30:76:30 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:76:30:76:30 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:76:30:76:30 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:76:30:76:30 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:76:30:76:30 | f | T.dyn(Args).T0 | closure.rs:76:24:76:24 | A | +| closure.rs:76:30:76:30 | f | T.dyn(Output) | closure.rs:76:27:76:27 | B | +| closure.rs:76:58:76:60 | arg | | closure.rs:76:24:76:24 | A | +| closure.rs:76:66:79:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:77:31:77:31 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:77:31:77:31 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:77:31:77:31 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:77:31:77:31 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:77:31:77:31 | f | T.dyn(Args).T0 | closure.rs:76:24:76:24 | A | +| closure.rs:77:31:77:31 | f | T.dyn(Output) | closure.rs:76:27:76:27 | B | +| closure.rs:77:34:77:36 | arg | | closure.rs:76:24:76:24 | A | +| closure.rs:78:31:78:53 | ...::new(...) | | {EXTERNAL LOCATION} | Box | +| closure.rs:78:31:78:53 | ...::new(...) | A | {EXTERNAL LOCATION} | Global | +| closure.rs:78:41:78:41 | _ | | {EXTERNAL LOCATION} | i64 | +| closure.rs:78:49:78:52 | true | | {EXTERNAL LOCATION} | bool | | dereference.rs:13:14:13:18 | SelfParam | | {EXTERNAL LOCATION} | & | | dereference.rs:13:14:13:18 | SelfParam | TRef | dereference.rs:5:1:7:1 | MyIntPointer | | dereference.rs:13:29:15:5 | { ... } | | {EXTERNAL LOCATION} | & | @@ -4976,111 +4980,117 @@ inferType | closure.rs:36:23:36:23 | f | | closure.rs:35:20:35:41 | F | | closure.rs:36:23:36:29 | f(...) | | {EXTERNAL LOCATION} | i64 | | closure.rs:36:25:36:28 | true | | {EXTERNAL LOCATION} | bool | -| closure.rs:39:46:39:46 | f | | closure.rs:39:22:39:43 | F | -| closure.rs:39:52:42:5 | { ... } | | {EXTERNAL LOCATION} | () | -| closure.rs:40:13:40:15 | arg | | {EXTERNAL LOCATION} | bool | -| closure.rs:40:19:40:36 | ...::default(...) | | {EXTERNAL LOCATION} | bool | -| closure.rs:41:9:41:9 | f | | closure.rs:39:22:39:43 | F | -| closure.rs:41:9:41:14 | f(...) | | {EXTERNAL LOCATION} | i64 | -| closure.rs:41:11:41:13 | arg | | {EXTERNAL LOCATION} | bool | -| closure.rs:44:39:44:39 | f | | closure.rs:44:20:44:36 | F | -| closure.rs:44:45:44:45 | a | | closure.rs:44:14:44:14 | A | -| closure.rs:44:56:46:5 | { ... } | | closure.rs:44:17:44:17 | B | -| closure.rs:45:9:45:9 | f | | closure.rs:44:20:44:36 | F | -| closure.rs:45:9:45:12 | f(...) | | closure.rs:44:17:44:17 | B | -| closure.rs:45:11:45:11 | a | | closure.rs:44:14:44:14 | A | -| closure.rs:48:18:48:18 | f | | closure.rs:48:21:48:43 | impl ... | -| closure.rs:48:53:50:5 | { ... } | | {EXTERNAL LOCATION} | i64 | -| closure.rs:49:9:49:9 | f | | closure.rs:48:21:48:43 | impl ... | -| closure.rs:49:9:49:12 | f(...) | | {EXTERNAL LOCATION} | i64 | -| closure.rs:49:11:49:11 | 2 | | {EXTERNAL LOCATION} | i32 | -| closure.rs:49:11:49:11 | 2 | | {EXTERNAL LOCATION} | i64 | -| closure.rs:52:15:64:5 | { ... } | | {EXTERNAL LOCATION} | () | -| closure.rs:53:13:53:13 | f | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:53:13:53:13 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:53:13:53:13 | f | dyn(Args).T0 | {EXTERNAL LOCATION} | bool | -| closure.rs:53:13:53:13 | f | dyn(Output) | {EXTERNAL LOCATION} | i32 | -| closure.rs:53:13:53:13 | f | dyn(Output) | {EXTERNAL LOCATION} | i64 | -| closure.rs:53:17:59:9 | \|...\| ... | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:53:17:59:9 | \|...\| ... | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:53:17:59:9 | \|...\| ... | dyn(Args).T0 | {EXTERNAL LOCATION} | bool | -| closure.rs:53:17:59:9 | \|...\| ... | dyn(Output) | {EXTERNAL LOCATION} | i32 | -| closure.rs:53:17:59:9 | \|...\| ... | dyn(Output) | {EXTERNAL LOCATION} | i64 | -| closure.rs:53:18:53:18 | x | | {EXTERNAL LOCATION} | bool | -| closure.rs:53:34:59:9 | { ... } | | {EXTERNAL LOCATION} | i32 | -| closure.rs:53:34:59:9 | { ... } | | {EXTERNAL LOCATION} | i64 | -| closure.rs:54:13:58:13 | if x {...} else {...} | | {EXTERNAL LOCATION} | i32 | -| closure.rs:54:13:58:13 | if x {...} else {...} | | {EXTERNAL LOCATION} | i64 | -| closure.rs:54:16:54:16 | x | | {EXTERNAL LOCATION} | bool | -| closure.rs:54:18:56:13 | { ... } | | {EXTERNAL LOCATION} | i32 | -| closure.rs:54:18:56:13 | { ... } | | {EXTERNAL LOCATION} | i64 | -| closure.rs:55:17:55:17 | 1 | | {EXTERNAL LOCATION} | i32 | -| closure.rs:55:17:55:17 | 1 | | {EXTERNAL LOCATION} | i64 | -| closure.rs:56:20:58:13 | { ... } | | {EXTERNAL LOCATION} | i32 | -| closure.rs:56:20:58:13 | { ... } | | {EXTERNAL LOCATION} | i64 | -| closure.rs:57:17:57:17 | 0 | | {EXTERNAL LOCATION} | i32 | -| closure.rs:57:17:57:17 | 0 | | {EXTERNAL LOCATION} | i64 | -| closure.rs:60:13:60:14 | _r | | {EXTERNAL LOCATION} | i32 | -| closure.rs:60:13:60:14 | _r | | {EXTERNAL LOCATION} | i64 | -| closure.rs:60:18:60:31 | apply(...) | | {EXTERNAL LOCATION} | i32 | -| closure.rs:60:18:60:31 | apply(...) | | {EXTERNAL LOCATION} | i64 | -| closure.rs:60:24:60:24 | f | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:60:24:60:24 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:60:24:60:24 | f | dyn(Args).T0 | {EXTERNAL LOCATION} | bool | -| closure.rs:60:24:60:24 | f | dyn(Output) | {EXTERNAL LOCATION} | i32 | -| closure.rs:60:24:60:24 | f | dyn(Output) | {EXTERNAL LOCATION} | i64 | -| closure.rs:60:27:60:30 | true | | {EXTERNAL LOCATION} | bool | -| closure.rs:62:13:62:13 | f | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:62:13:62:13 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:62:17:62:25 | \|...\| ... | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:62:17:62:25 | \|...\| ... | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:62:25:62:25 | 1 | | {EXTERNAL LOCATION} | i32 | -| closure.rs:63:13:63:15 | _r2 | | {EXTERNAL LOCATION} | i64 | -| closure.rs:63:19:63:30 | apply_two(...) | | {EXTERNAL LOCATION} | i64 | -| closure.rs:63:29:63:29 | f | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:63:29:63:29 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:68:54:68:54 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:68:54:68:54 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:68:54:68:54 | f | T | closure.rs:68:26:68:51 | F | -| closure.rs:68:65:68:67 | arg | | closure.rs:68:20:68:20 | A | -| closure.rs:68:78:70:5 | { ... } | | closure.rs:68:23:68:23 | B | -| closure.rs:69:9:69:9 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:69:9:69:9 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:69:9:69:9 | f | T | closure.rs:68:26:68:51 | F | -| closure.rs:69:9:69:14 | f(...) | | closure.rs:68:23:68:23 | B | -| closure.rs:69:11:69:13 | arg | | closure.rs:68:20:68:20 | A | -| closure.rs:72:30:72:30 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:72:30:72:30 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:72:30:72:30 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:72:30:72:30 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:72:30:72:30 | f | T.dyn(Args).T0 | closure.rs:72:24:72:24 | A | -| closure.rs:72:30:72:30 | f | T.dyn(Output) | closure.rs:72:27:72:27 | B | -| closure.rs:72:58:72:60 | arg | | closure.rs:72:24:72:24 | A | -| closure.rs:72:66:75:5 | { ... } | | {EXTERNAL LOCATION} | () | -| closure.rs:73:13:73:15 | _r1 | | closure.rs:72:27:72:27 | B | -| closure.rs:73:19:73:37 | apply_boxed(...) | | closure.rs:72:27:72:27 | B | -| closure.rs:73:31:73:31 | f | | {EXTERNAL LOCATION} | Box | -| closure.rs:73:31:73:31 | f | A | {EXTERNAL LOCATION} | Global | -| closure.rs:73:31:73:31 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:73:31:73:31 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:73:31:73:31 | f | T.dyn(Args).T0 | closure.rs:72:24:72:24 | A | -| closure.rs:73:31:73:31 | f | T.dyn(Output) | closure.rs:72:27:72:27 | B | -| closure.rs:73:34:73:36 | arg | | closure.rs:72:24:72:24 | A | -| closure.rs:74:13:74:15 | _r2 | | {EXTERNAL LOCATION} | bool | -| closure.rs:74:19:74:57 | apply_boxed(...) | | {EXTERNAL LOCATION} | bool | -| closure.rs:74:31:74:53 | ...::new(...) | | {EXTERNAL LOCATION} | Box | -| closure.rs:74:31:74:53 | ...::new(...) | A | {EXTERNAL LOCATION} | Global | -| closure.rs:74:31:74:53 | ...::new(...) | T | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:74:31:74:53 | ...::new(...) | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:74:31:74:53 | ...::new(...) | T.dyn(Args).T0 | {EXTERNAL LOCATION} | i64 | -| closure.rs:74:31:74:53 | ...::new(...) | T.dyn(Output) | {EXTERNAL LOCATION} | bool | -| closure.rs:74:40:74:52 | \|...\| true | | {EXTERNAL LOCATION} | dyn FnOnce | -| closure.rs:74:40:74:52 | \|...\| true | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | -| closure.rs:74:40:74:52 | \|...\| true | dyn(Args).T0 | {EXTERNAL LOCATION} | i64 | -| closure.rs:74:40:74:52 | \|...\| true | dyn(Output) | {EXTERNAL LOCATION} | bool | -| closure.rs:74:41:74:41 | _ | | {EXTERNAL LOCATION} | i64 | -| closure.rs:74:49:74:52 | true | | {EXTERNAL LOCATION} | bool | -| closure.rs:74:56:74:56 | 3 | | {EXTERNAL LOCATION} | i32 | +| closure.rs:39:45:39:45 | f | | closure.rs:39:28:39:42 | F | +| closure.rs:39:51:41:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:40:13:40:19 | _return | | {EXTERNAL LOCATION} | () | +| closure.rs:40:23:40:23 | f | | closure.rs:39:28:39:42 | F | +| closure.rs:40:23:40:29 | f(...) | | {EXTERNAL LOCATION} | () | +| closure.rs:40:25:40:28 | true | | {EXTERNAL LOCATION} | bool | +| closure.rs:43:46:43:46 | f | | closure.rs:43:22:43:43 | F | +| closure.rs:43:52:46:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:44:13:44:15 | arg | | {EXTERNAL LOCATION} | bool | +| closure.rs:44:19:44:36 | ...::default(...) | | {EXTERNAL LOCATION} | bool | +| closure.rs:45:9:45:9 | f | | closure.rs:43:22:43:43 | F | +| closure.rs:45:9:45:14 | f(...) | | {EXTERNAL LOCATION} | i64 | +| closure.rs:45:11:45:13 | arg | | {EXTERNAL LOCATION} | bool | +| closure.rs:48:39:48:39 | f | | closure.rs:48:20:48:36 | F | +| closure.rs:48:45:48:45 | a | | closure.rs:48:14:48:14 | A | +| closure.rs:48:56:50:5 | { ... } | | closure.rs:48:17:48:17 | B | +| closure.rs:49:9:49:9 | f | | closure.rs:48:20:48:36 | F | +| closure.rs:49:9:49:12 | f(...) | | closure.rs:48:17:48:17 | B | +| closure.rs:49:11:49:11 | a | | closure.rs:48:14:48:14 | A | +| closure.rs:52:18:52:18 | f | | closure.rs:52:21:52:43 | impl ... | +| closure.rs:52:53:54:5 | { ... } | | {EXTERNAL LOCATION} | i64 | +| closure.rs:53:9:53:9 | f | | closure.rs:52:21:52:43 | impl ... | +| closure.rs:53:9:53:12 | f(...) | | {EXTERNAL LOCATION} | i64 | +| closure.rs:53:11:53:11 | 2 | | {EXTERNAL LOCATION} | i32 | +| closure.rs:53:11:53:11 | 2 | | {EXTERNAL LOCATION} | i64 | +| closure.rs:56:15:68:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:57:13:57:13 | f | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:57:13:57:13 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:57:13:57:13 | f | dyn(Args).T0 | {EXTERNAL LOCATION} | bool | +| closure.rs:57:13:57:13 | f | dyn(Output) | {EXTERNAL LOCATION} | i32 | +| closure.rs:57:13:57:13 | f | dyn(Output) | {EXTERNAL LOCATION} | i64 | +| closure.rs:57:17:63:9 | \|...\| ... | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:57:17:63:9 | \|...\| ... | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:57:17:63:9 | \|...\| ... | dyn(Args).T0 | {EXTERNAL LOCATION} | bool | +| closure.rs:57:17:63:9 | \|...\| ... | dyn(Output) | {EXTERNAL LOCATION} | i32 | +| closure.rs:57:17:63:9 | \|...\| ... | dyn(Output) | {EXTERNAL LOCATION} | i64 | +| closure.rs:57:18:57:18 | x | | {EXTERNAL LOCATION} | bool | +| closure.rs:57:34:63:9 | { ... } | | {EXTERNAL LOCATION} | i32 | +| closure.rs:57:34:63:9 | { ... } | | {EXTERNAL LOCATION} | i64 | +| closure.rs:58:13:62:13 | if x {...} else {...} | | {EXTERNAL LOCATION} | i32 | +| closure.rs:58:13:62:13 | if x {...} else {...} | | {EXTERNAL LOCATION} | i64 | +| closure.rs:58:16:58:16 | x | | {EXTERNAL LOCATION} | bool | +| closure.rs:58:18:60:13 | { ... } | | {EXTERNAL LOCATION} | i32 | +| closure.rs:58:18:60:13 | { ... } | | {EXTERNAL LOCATION} | i64 | +| closure.rs:59:17:59:17 | 1 | | {EXTERNAL LOCATION} | i32 | +| closure.rs:59:17:59:17 | 1 | | {EXTERNAL LOCATION} | i64 | +| closure.rs:60:20:62:13 | { ... } | | {EXTERNAL LOCATION} | i32 | +| closure.rs:60:20:62:13 | { ... } | | {EXTERNAL LOCATION} | i64 | +| closure.rs:61:17:61:17 | 0 | | {EXTERNAL LOCATION} | i32 | +| closure.rs:61:17:61:17 | 0 | | {EXTERNAL LOCATION} | i64 | +| closure.rs:64:13:64:14 | _r | | {EXTERNAL LOCATION} | i32 | +| closure.rs:64:13:64:14 | _r | | {EXTERNAL LOCATION} | i64 | +| closure.rs:64:18:64:31 | apply(...) | | {EXTERNAL LOCATION} | i32 | +| closure.rs:64:18:64:31 | apply(...) | | {EXTERNAL LOCATION} | i64 | +| closure.rs:64:24:64:24 | f | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:64:24:64:24 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:64:24:64:24 | f | dyn(Args).T0 | {EXTERNAL LOCATION} | bool | +| closure.rs:64:24:64:24 | f | dyn(Output) | {EXTERNAL LOCATION} | i32 | +| closure.rs:64:24:64:24 | f | dyn(Output) | {EXTERNAL LOCATION} | i64 | +| closure.rs:64:27:64:30 | true | | {EXTERNAL LOCATION} | bool | +| closure.rs:66:13:66:13 | f | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:66:13:66:13 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:66:17:66:25 | \|...\| ... | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:66:17:66:25 | \|...\| ... | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:66:25:66:25 | 1 | | {EXTERNAL LOCATION} | i32 | +| closure.rs:67:13:67:15 | _r2 | | {EXTERNAL LOCATION} | i64 | +| closure.rs:67:19:67:30 | apply_two(...) | | {EXTERNAL LOCATION} | i64 | +| closure.rs:67:29:67:29 | f | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:67:29:67:29 | f | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:72:54:72:54 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:72:54:72:54 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:72:54:72:54 | f | T | closure.rs:72:26:72:51 | F | +| closure.rs:72:65:72:67 | arg | | closure.rs:72:20:72:20 | A | +| closure.rs:72:78:74:5 | { ... } | | closure.rs:72:23:72:23 | B | +| closure.rs:73:9:73:9 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:73:9:73:9 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:73:9:73:9 | f | T | closure.rs:72:26:72:51 | F | +| closure.rs:73:9:73:14 | f(...) | | closure.rs:72:23:72:23 | B | +| closure.rs:73:11:73:13 | arg | | closure.rs:72:20:72:20 | A | +| closure.rs:76:30:76:30 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:76:30:76:30 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:76:30:76:30 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:76:30:76:30 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:76:30:76:30 | f | T.dyn(Args).T0 | closure.rs:76:24:76:24 | A | +| closure.rs:76:30:76:30 | f | T.dyn(Output) | closure.rs:76:27:76:27 | B | +| closure.rs:76:58:76:60 | arg | | closure.rs:76:24:76:24 | A | +| closure.rs:76:66:79:5 | { ... } | | {EXTERNAL LOCATION} | () | +| closure.rs:77:13:77:15 | _r1 | | closure.rs:76:27:76:27 | B | +| closure.rs:77:19:77:37 | apply_boxed(...) | | closure.rs:76:27:76:27 | B | +| closure.rs:77:31:77:31 | f | | {EXTERNAL LOCATION} | Box | +| closure.rs:77:31:77:31 | f | A | {EXTERNAL LOCATION} | Global | +| closure.rs:77:31:77:31 | f | T | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:77:31:77:31 | f | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:77:31:77:31 | f | T.dyn(Args).T0 | closure.rs:76:24:76:24 | A | +| closure.rs:77:31:77:31 | f | T.dyn(Output) | closure.rs:76:27:76:27 | B | +| closure.rs:77:34:77:36 | arg | | closure.rs:76:24:76:24 | A | +| closure.rs:78:13:78:15 | _r2 | | {EXTERNAL LOCATION} | bool | +| closure.rs:78:19:78:57 | apply_boxed(...) | | {EXTERNAL LOCATION} | bool | +| closure.rs:78:31:78:53 | ...::new(...) | | {EXTERNAL LOCATION} | Box | +| closure.rs:78:31:78:53 | ...::new(...) | A | {EXTERNAL LOCATION} | Global | +| closure.rs:78:31:78:53 | ...::new(...) | T | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:78:31:78:53 | ...::new(...) | T.dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:78:31:78:53 | ...::new(...) | T.dyn(Args).T0 | {EXTERNAL LOCATION} | i64 | +| closure.rs:78:31:78:53 | ...::new(...) | T.dyn(Output) | {EXTERNAL LOCATION} | bool | +| closure.rs:78:40:78:52 | \|...\| true | | {EXTERNAL LOCATION} | dyn FnOnce | +| closure.rs:78:40:78:52 | \|...\| true | dyn(Args) | {EXTERNAL LOCATION} | (T_1) | +| closure.rs:78:40:78:52 | \|...\| true | dyn(Args).T0 | {EXTERNAL LOCATION} | i64 | +| closure.rs:78:40:78:52 | \|...\| true | dyn(Output) | {EXTERNAL LOCATION} | bool | +| closure.rs:78:41:78:41 | _ | | {EXTERNAL LOCATION} | i64 | +| closure.rs:78:49:78:52 | true | | {EXTERNAL LOCATION} | bool | +| closure.rs:78:56:78:56 | 3 | | {EXTERNAL LOCATION} | i32 | | dereference.rs:13:14:13:18 | SelfParam | | {EXTERNAL LOCATION} | & | | dereference.rs:13:14:13:18 | SelfParam | TRef | dereference.rs:5:1:7:1 | MyIntPointer | | dereference.rs:13:29:15:5 | { ... } | | {EXTERNAL LOCATION} | & | diff --git a/rust/ql/test/library-tests/type-inference/type-inference.ql b/rust/ql/test/library-tests/type-inference/type-inference.ql index 81cad0f975e..c4653f557ac 100644 --- a/rust/ql/test/library-tests/type-inference/type-inference.ql +++ b/rust/ql/test/library-tests/type-inference/type-inference.ql @@ -1,7 +1,7 @@ import rust import utils.test.InlineExpectationsTest -import codeql.rust.internal.Type -import codeql.rust.internal.TypeInference as TypeInference +import codeql.rust.internal.typeinference.Type +import codeql.rust.internal.typeinference.TypeInference as TypeInference import TypeInference private predicate relevantNode(AstNode n) { diff --git a/rust/ql/test/query-tests/security/CWE-089/SqlInjection.expected b/rust/ql/test/query-tests/security/CWE-089/SqlInjection.expected index 808d4848e48..57034006055 100644 --- a/rust/ql/test/query-tests/security/CWE-089/SqlInjection.expected +++ b/rust/ql/test/query-tests/security/CWE-089/SqlInjection.expected @@ -224,8 +224,8 @@ models | 24 | Source: std::env::args; ReturnValue.Element; commandargs | | 25 | Summary: <_ as core::iter::traits::iterator::Iterator>::nth; Argument[self].Reference.Element; ReturnValue.Field[core::option::Option::Some(0)]; value | | 26 | Summary: ::add; Argument[0].Reference; ReturnValue; taint | -| 27 | Summary: ::add; Argument[self,0]; ReturnValue; taint | -| 28 | Summary: ::as_str; Argument[self]; ReturnValue; value | +| 27 | Summary: ::add; Argument[self]; ReturnValue; taint | +| 28 | Summary: ::as_str; Argument[self].Reference; ReturnValue.Reference; taint | | 29 | Summary: ::unwrap_or; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | | 30 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | | 31 | Summary: ::unwrap_or; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | diff --git a/rust/ql/test/query-tests/security/CWE-117/LogInjection.expected b/rust/ql/test/query-tests/security/CWE-117/LogInjection.expected index d812380d9c7..e326a87c42d 100644 --- a/rust/ql/test/query-tests/security/CWE-117/LogInjection.expected +++ b/rust/ql/test/query-tests/security/CWE-117/LogInjection.expected @@ -1,8 +1,14 @@ #select +| main.rs:15:5:15:9 | ...::log | main.rs:8:29:8:37 | ...::args | main.rs:15:5:15:9 | ...::log | Log entry depends on a $@. | main.rs:8:29:8:37 | ...::args | user-provided value | | main.rs:16:5:16:9 | ...::log | main.rs:10:22:10:34 | ...::var | main.rs:16:5:16:9 | ...::log | Log entry depends on a $@. | main.rs:10:22:10:34 | ...::var | user-provided value | | main.rs:17:5:17:10 | ...::log | main.rs:11:23:11:44 | ...::get | main.rs:17:5:17:10 | ...::log | Log entry depends on a $@. | main.rs:11:23:11:44 | ...::get | user-provided value | +| main.rs:18:5:18:10 | ...::log | main.rs:8:29:8:37 | ...::args | main.rs:18:5:18:10 | ...::log | Log entry depends on a $@. | main.rs:8:29:8:37 | ...::args | user-provided value | | main.rs:19:5:19:10 | ...::log | main.rs:10:22:10:34 | ...::var | main.rs:19:5:19:10 | ...::log | Log entry depends on a $@. | main.rs:10:22:10:34 | ...::var | user-provided value | +| main.rs:23:5:23:9 | ...::log | main.rs:8:29:8:37 | ...::args | main.rs:23:5:23:9 | ...::log | Log entry depends on a $@. | main.rs:8:29:8:37 | ...::args | user-provided value | +| main.rs:27:5:27:9 | ...::log | main.rs:8:29:8:37 | ...::args | main.rs:27:5:27:9 | ...::log | Log entry depends on a $@. | main.rs:8:29:8:37 | ...::args | user-provided value | +| main.rs:30:5:30:9 | ...::log | main.rs:8:29:8:37 | ...::args | main.rs:30:5:30:9 | ...::log | Log entry depends on a $@. | main.rs:8:29:8:37 | ...::args | user-provided value | | main.rs:30:5:30:9 | ...::log | main.rs:11:23:11:44 | ...::get | main.rs:30:5:30:9 | ...::log | Log entry depends on a $@. | main.rs:11:23:11:44 | ...::get | user-provided value | +| main.rs:66:5:66:9 | ...::log | main.rs:8:29:8:37 | ...::args | main.rs:66:5:66:9 | ...::log | Log entry depends on a $@. | main.rs:8:29:8:37 | ...::args | user-provided value | | main.rs:112:9:112:13 | ...::log | main.rs:109:25:109:38 | ...::args | main.rs:112:9:112:13 | ...::log | Log entry depends on a $@. | main.rs:109:25:109:38 | ...::args | user-provided value | | main.rs:113:9:113:13 | ...::log | main.rs:109:25:109:38 | ...::args | main.rs:113:9:113:13 | ...::log | Log entry depends on a $@. | main.rs:109:25:109:38 | ...::args | user-provided value | | main.rs:114:9:114:14 | ...::log | main.rs:109:25:109:38 | ...::args | main.rs:114:9:114:14 | ...::log | Log entry depends on a $@. | main.rs:109:25:109:38 | ...::args | user-provided value | @@ -12,22 +18,59 @@ | main.rs:126:9:126:16 | ...::_print | main.rs:123:25:123:37 | ...::var | main.rs:126:9:126:16 | ...::_print | Log entry depends on a $@. | main.rs:123:25:123:37 | ...::var | user-provided value | | main.rs:127:9:127:17 | ...::_eprint | main.rs:123:25:123:37 | ...::var | main.rs:127:9:127:17 | ...::_eprint | Log entry depends on a $@. | main.rs:123:25:123:37 | ...::var | user-provided value | edges +| main.rs:8:9:8:12 | args [element] | main.rs:9:20:9:23 | args [element] | provenance | | +| main.rs:8:29:8:37 | ...::args | main.rs:8:29:8:39 | ...::args(...) [element] | provenance | Src:MaD:5 | +| main.rs:8:29:8:39 | ...::args(...) [element] | main.rs:8:29:8:49 | ... .collect() [element] | provenance | MaD:9 | +| main.rs:8:29:8:49 | ... .collect() [element] | main.rs:8:9:8:12 | args [element] | provenance | | +| main.rs:9:9:9:16 | username | main.rs:15:11:15:36 | MacroExpr | provenance | | +| main.rs:9:9:9:16 | username | main.rs:18:12:18:37 | MacroExpr | provenance | | +| main.rs:9:9:9:16 | username | main.rs:22:33:22:63 | MacroExpr | provenance | | +| main.rs:9:9:9:16 | username | main.rs:26:55:26:62 | username | provenance | | +| main.rs:9:9:9:16 | username | main.rs:30:11:30:66 | MacroExpr | provenance | | +| main.rs:9:9:9:16 | username | main.rs:52:29:52:36 | username | provenance | | +| main.rs:9:20:9:23 | args [element] | main.rs:9:20:9:30 | args.get(...) [Some, &ref] | provenance | MaD:12 | +| main.rs:9:20:9:30 | args.get(...) [Some, &ref] | main.rs:9:20:9:64 | ... .unwrap_or(...) [&ref] | provenance | MaD:13 | +| main.rs:9:20:9:64 | ... .unwrap_or(...) [&ref] | main.rs:9:20:9:72 | ... .clone() | provenance | MaD:8 | +| main.rs:9:20:9:72 | ... .clone() | main.rs:9:9:9:16 | username | provenance | | | main.rs:10:9:10:18 | user_input | main.rs:16:11:16:44 | MacroExpr | provenance | | | main.rs:10:9:10:18 | user_input | main.rs:19:12:19:39 | MacroExpr | provenance | | | main.rs:10:22:10:34 | ...::var | main.rs:10:22:10:48 | ...::var(...) [Ok] | provenance | Src:MaD:6 | -| main.rs:10:22:10:48 | ...::var(...) [Ok] | main.rs:10:22:10:81 | ... .unwrap_or(...) | provenance | MaD:10 | +| main.rs:10:22:10:48 | ...::var(...) [Ok] | main.rs:10:22:10:81 | ... .unwrap_or(...) | provenance | MaD:16 | | main.rs:10:22:10:81 | ... .unwrap_or(...) | main.rs:10:9:10:18 | user_input | provenance | | | main.rs:11:9:11:19 | remote_data | main.rs:17:12:17:46 | MacroExpr | provenance | | | main.rs:11:9:11:19 | remote_data | main.rs:30:11:30:66 | MacroExpr | provenance | | | main.rs:11:23:11:44 | ...::get | main.rs:11:23:11:71 | ...::get(...) [Ok] | provenance | Src:MaD:4 | -| main.rs:11:23:11:71 | ...::get(...) [Ok] | main.rs:11:23:12:17 | ... .unwrap() | provenance | MaD:9 | -| main.rs:11:23:12:17 | ... .unwrap() | main.rs:11:23:12:24 | ... .text() [Ok] | provenance | MaD:12 | -| main.rs:11:23:12:24 | ... .text() [Ok] | main.rs:11:23:12:61 | ... .unwrap_or(...) | provenance | MaD:10 | +| main.rs:11:23:11:71 | ...::get(...) [Ok] | main.rs:11:23:12:17 | ... .unwrap() | provenance | MaD:15 | +| main.rs:11:23:12:17 | ... .unwrap() | main.rs:11:23:12:24 | ... .text() [Ok] | provenance | MaD:18 | +| main.rs:11:23:12:24 | ... .text() [Ok] | main.rs:11:23:12:61 | ... .unwrap_or(...) | provenance | MaD:16 | | main.rs:11:23:12:61 | ... .unwrap_or(...) | main.rs:11:9:11:19 | remote_data | provenance | | +| main.rs:15:11:15:36 | MacroExpr | main.rs:15:5:15:9 | ...::log | provenance | MaD:1 Sink:MaD:1 | | main.rs:16:11:16:44 | MacroExpr | main.rs:16:5:16:9 | ...::log | provenance | MaD:1 Sink:MaD:1 | | main.rs:17:12:17:46 | MacroExpr | main.rs:17:5:17:10 | ...::log | provenance | MaD:1 Sink:MaD:1 | +| main.rs:18:12:18:37 | MacroExpr | main.rs:18:5:18:10 | ...::log | provenance | MaD:1 Sink:MaD:1 | | main.rs:19:12:19:39 | MacroExpr | main.rs:19:5:19:10 | ...::log | provenance | MaD:1 Sink:MaD:1 | +| main.rs:22:9:22:21 | formatted_msg | main.rs:23:11:23:29 | MacroExpr | provenance | | +| main.rs:22:33:22:63 | ...::format(...) | main.rs:22:33:22:63 | { ... } | provenance | | +| main.rs:22:33:22:63 | ...::must_use(...) | main.rs:22:9:22:21 | formatted_msg | provenance | | +| main.rs:22:33:22:63 | MacroExpr | main.rs:22:33:22:63 | ...::format(...) | provenance | MaD:19 | +| main.rs:22:33:22:63 | { ... } | main.rs:22:33:22:63 | ...::must_use(...) | provenance | MaD:20 | +| main.rs:23:11:23:29 | MacroExpr | main.rs:23:5:23:9 | ...::log | provenance | MaD:1 Sink:MaD:1 | +| main.rs:26:9:26:18 | concat_msg | main.rs:27:11:27:26 | MacroExpr | provenance | | +| main.rs:26:22:26:62 | ... + ... | main.rs:26:9:26:18 | concat_msg | provenance | | +| main.rs:26:54:26:62 | &username [&ref] | main.rs:26:22:26:62 | ... + ... | provenance | MaD:11 | +| main.rs:26:55:26:62 | username | main.rs:26:54:26:62 | &username [&ref] | provenance | | +| main.rs:27:11:27:26 | MacroExpr | main.rs:27:5:27:9 | ...::log | provenance | MaD:1 Sink:MaD:1 | | main.rs:30:11:30:66 | MacroExpr | main.rs:30:5:30:9 | ...::log | provenance | MaD:1 Sink:MaD:1 | +| main.rs:52:28:52:36 | &username [&ref] | main.rs:56:27:56:40 | ...: ... [&ref] | provenance | | +| main.rs:52:29:52:36 | username | main.rs:52:28:52:36 | &username [&ref] | provenance | | +| main.rs:56:27:56:40 | ...: ... [&ref] | main.rs:65:38:65:45 | username [&ref] | provenance | | +| main.rs:65:9:65:17 | user_info [UserInfo] | main.rs:66:28:66:36 | user_info [UserInfo] | provenance | | +| main.rs:65:21:65:59 | UserInfo {...} [UserInfo] | main.rs:65:9:65:17 | user_info [UserInfo] | provenance | | +| main.rs:65:38:65:45 | username [&ref] | main.rs:65:38:65:57 | username.to_string() | provenance | MaD:7 | +| main.rs:65:38:65:57 | username.to_string() | main.rs:65:21:65:59 | UserInfo {...} [UserInfo] | provenance | | +| main.rs:66:11:66:41 | MacroExpr | main.rs:66:5:66:9 | ...::log | provenance | MaD:1 Sink:MaD:1 | +| main.rs:66:28:66:36 | user_info [UserInfo] | main.rs:66:28:66:41 | user_info.name | provenance | | +| main.rs:66:28:66:41 | user_info.name | main.rs:66:11:66:41 | MacroExpr | provenance | | | main.rs:109:13:109:21 | user_data | main.rs:112:15:112:35 | MacroExpr | provenance | | | main.rs:109:13:109:21 | user_data | main.rs:113:15:113:38 | MacroExpr | provenance | | | main.rs:109:13:109:21 | user_data | main.rs:114:16:114:37 | MacroExpr | provenance | | @@ -35,8 +78,8 @@ edges | main.rs:109:13:109:21 | user_data | main.rs:116:16:116:37 | MacroExpr | provenance | | | main.rs:109:13:109:21 | user_data | main.rs:119:15:119:75 | MacroExpr | provenance | | | main.rs:109:25:109:38 | ...::args | main.rs:109:25:109:40 | ...::args(...) [element] | provenance | Src:MaD:5 | -| main.rs:109:25:109:40 | ...::args(...) [element] | main.rs:109:25:109:47 | ... .nth(...) [Some] | provenance | MaD:7 | -| main.rs:109:25:109:47 | ... .nth(...) [Some] | main.rs:109:25:109:67 | ... .unwrap_or_default() | provenance | MaD:8 | +| main.rs:109:25:109:40 | ...::args(...) [element] | main.rs:109:25:109:47 | ... .nth(...) [Some] | provenance | MaD:10 | +| main.rs:109:25:109:47 | ... .nth(...) [Some] | main.rs:109:25:109:67 | ... .unwrap_or_default() | provenance | MaD:14 | | main.rs:109:25:109:67 | ... .unwrap_or_default() | main.rs:109:13:109:21 | user_data | provenance | | | main.rs:112:15:112:35 | MacroExpr | main.rs:112:9:112:13 | ...::log | provenance | MaD:1 Sink:MaD:1 | | main.rs:113:15:113:38 | MacroExpr | main.rs:113:9:113:13 | ...::log | provenance | MaD:1 Sink:MaD:1 | @@ -47,7 +90,7 @@ edges | main.rs:123:13:123:21 | user_data | main.rs:126:18:126:38 | MacroExpr | provenance | | | main.rs:123:13:123:21 | user_data | main.rs:127:19:127:49 | MacroExpr | provenance | | | main.rs:123:25:123:37 | ...::var | main.rs:123:25:123:45 | ...::var(...) [Ok] | provenance | Src:MaD:6 | -| main.rs:123:25:123:45 | ...::var(...) [Ok] | main.rs:123:25:123:65 | ... .unwrap_or_default() | provenance | MaD:11 | +| main.rs:123:25:123:45 | ...::var(...) [Ok] | main.rs:123:25:123:65 | ... .unwrap_or_default() | provenance | MaD:17 | | main.rs:123:25:123:65 | ... .unwrap_or_default() | main.rs:123:13:123:21 | user_data | provenance | | | main.rs:126:18:126:38 | MacroExpr | main.rs:126:9:126:16 | ...::_print | provenance | MaD:3 Sink:MaD:3 | | main.rs:127:19:127:49 | MacroExpr | main.rs:127:9:127:17 | ...::_eprint | provenance | MaD:2 Sink:MaD:2 | @@ -58,13 +101,30 @@ models | 4 | Source: reqwest::blocking::get; ReturnValue.Field[core::result::Result::Ok(0)]; remote | | 5 | Source: std::env::args; ReturnValue.Element; commandargs | | 6 | Source: std::env::var; ReturnValue.Field[core::result::Result::Ok(0)]; environment | -| 7 | Summary: <_ as core::iter::traits::iterator::Iterator>::nth; Argument[self].Reference.Element; ReturnValue.Field[core::option::Option::Some(0)]; value | -| 8 | Summary: ::unwrap_or_default; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | -| 9 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | -| 10 | Summary: ::unwrap_or; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | -| 11 | Summary: ::unwrap_or_default; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | -| 12 | Summary: ::text; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | +| 7 | Summary: <_ as alloc::string::ToString>::to_string; Argument[self].Reference; ReturnValue; taint | +| 8 | Summary: <_ as core::clone::Clone>::clone; Argument[self].Reference; ReturnValue; value | +| 9 | Summary: <_ as core::iter::traits::iterator::Iterator>::collect; Argument[self].Element; ReturnValue.Element; value | +| 10 | Summary: <_ as core::iter::traits::iterator::Iterator>::nth; Argument[self].Reference.Element; ReturnValue.Field[core::option::Option::Some(0)]; value | +| 11 | Summary: ::add; Argument[0].Reference; ReturnValue; taint | +| 12 | Summary: ::deref; Argument[self].Reference.Element; ReturnValue.Reference.Element; value | +| 13 | Summary: ::unwrap_or; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | +| 14 | Summary: ::unwrap_or_default; Argument[self].Field[core::option::Option::Some(0)]; ReturnValue; value | +| 15 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 16 | Summary: ::unwrap_or; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 17 | Summary: ::unwrap_or_default; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 18 | Summary: ::text; Argument[self]; ReturnValue.Field[core::result::Result::Ok(0)]; taint | +| 19 | Summary: alloc::fmt::format; Argument[0]; ReturnValue; taint | +| 20 | Summary: core::hint::must_use; Argument[0]; ReturnValue; value | nodes +| main.rs:8:9:8:12 | args [element] | semmle.label | args [element] | +| main.rs:8:29:8:37 | ...::args | semmle.label | ...::args | +| main.rs:8:29:8:39 | ...::args(...) [element] | semmle.label | ...::args(...) [element] | +| main.rs:8:29:8:49 | ... .collect() [element] | semmle.label | ... .collect() [element] | +| main.rs:9:9:9:16 | username | semmle.label | username | +| main.rs:9:20:9:23 | args [element] | semmle.label | args [element] | +| main.rs:9:20:9:30 | args.get(...) [Some, &ref] | semmle.label | args.get(...) [Some, &ref] | +| main.rs:9:20:9:64 | ... .unwrap_or(...) [&ref] | semmle.label | ... .unwrap_or(...) [&ref] | +| main.rs:9:20:9:72 | ... .clone() | semmle.label | ... .clone() | | main.rs:10:9:10:18 | user_input | semmle.label | user_input | | main.rs:10:22:10:34 | ...::var | semmle.label | ...::var | | main.rs:10:22:10:48 | ...::var(...) [Ok] | semmle.label | ...::var(...) [Ok] | @@ -75,14 +135,42 @@ nodes | main.rs:11:23:12:17 | ... .unwrap() | semmle.label | ... .unwrap() | | main.rs:11:23:12:24 | ... .text() [Ok] | semmle.label | ... .text() [Ok] | | main.rs:11:23:12:61 | ... .unwrap_or(...) | semmle.label | ... .unwrap_or(...) | +| main.rs:15:5:15:9 | ...::log | semmle.label | ...::log | +| main.rs:15:11:15:36 | MacroExpr | semmle.label | MacroExpr | | main.rs:16:5:16:9 | ...::log | semmle.label | ...::log | | main.rs:16:11:16:44 | MacroExpr | semmle.label | MacroExpr | | main.rs:17:5:17:10 | ...::log | semmle.label | ...::log | | main.rs:17:12:17:46 | MacroExpr | semmle.label | MacroExpr | +| main.rs:18:5:18:10 | ...::log | semmle.label | ...::log | +| main.rs:18:12:18:37 | MacroExpr | semmle.label | MacroExpr | | main.rs:19:5:19:10 | ...::log | semmle.label | ...::log | | main.rs:19:12:19:39 | MacroExpr | semmle.label | MacroExpr | +| main.rs:22:9:22:21 | formatted_msg | semmle.label | formatted_msg | +| main.rs:22:33:22:63 | ...::format(...) | semmle.label | ...::format(...) | +| main.rs:22:33:22:63 | ...::must_use(...) | semmle.label | ...::must_use(...) | +| main.rs:22:33:22:63 | MacroExpr | semmle.label | MacroExpr | +| main.rs:22:33:22:63 | { ... } | semmle.label | { ... } | +| main.rs:23:5:23:9 | ...::log | semmle.label | ...::log | +| main.rs:23:11:23:29 | MacroExpr | semmle.label | MacroExpr | +| main.rs:26:9:26:18 | concat_msg | semmle.label | concat_msg | +| main.rs:26:22:26:62 | ... + ... | semmle.label | ... + ... | +| main.rs:26:54:26:62 | &username [&ref] | semmle.label | &username [&ref] | +| main.rs:26:55:26:62 | username | semmle.label | username | +| main.rs:27:5:27:9 | ...::log | semmle.label | ...::log | +| main.rs:27:11:27:26 | MacroExpr | semmle.label | MacroExpr | | main.rs:30:5:30:9 | ...::log | semmle.label | ...::log | | main.rs:30:11:30:66 | MacroExpr | semmle.label | MacroExpr | +| main.rs:52:28:52:36 | &username [&ref] | semmle.label | &username [&ref] | +| main.rs:52:29:52:36 | username | semmle.label | username | +| main.rs:56:27:56:40 | ...: ... [&ref] | semmle.label | ...: ... [&ref] | +| main.rs:65:9:65:17 | user_info [UserInfo] | semmle.label | user_info [UserInfo] | +| main.rs:65:21:65:59 | UserInfo {...} [UserInfo] | semmle.label | UserInfo {...} [UserInfo] | +| main.rs:65:38:65:45 | username [&ref] | semmle.label | username [&ref] | +| main.rs:65:38:65:57 | username.to_string() | semmle.label | username.to_string() | +| main.rs:66:5:66:9 | ...::log | semmle.label | ...::log | +| main.rs:66:11:66:41 | MacroExpr | semmle.label | MacroExpr | +| main.rs:66:28:66:36 | user_info [UserInfo] | semmle.label | user_info [UserInfo] | +| main.rs:66:28:66:41 | user_info.name | semmle.label | user_info.name | | main.rs:109:13:109:21 | user_data | semmle.label | user_data | | main.rs:109:25:109:38 | ...::args | semmle.label | ...::args | | main.rs:109:25:109:40 | ...::args(...) [element] | semmle.label | ...::args(...) [element] | diff --git a/rust/ql/test/query-tests/security/CWE-117/main.rs b/rust/ql/test/query-tests/security/CWE-117/main.rs index f5001846d1b..9fb3558b3d2 100644 --- a/rust/ql/test/query-tests/security/CWE-117/main.rs +++ b/rust/ql/test/query-tests/security/CWE-117/main.rs @@ -5,29 +5,29 @@ fn main() { env_logger::init(); // Sources of user input - let args: Vec = env::args().collect(); - let username = args.get(1).unwrap_or(&String::from("Guest")).clone(); // $ MISSING: Source=commandargs + let args: Vec = env::args().collect(); // $ Source=commandargs + let username = args.get(1).unwrap_or(&String::from("Guest")).clone(); let user_input = std::env::var("USER_INPUT").unwrap_or("default".to_string()); // $ Source=environment let remote_data = reqwest::blocking::get("http://example.com/user") // $ Source=remote .unwrap().text().unwrap_or("remote_user".to_string()); // BAD: Direct logging of user input - info!("User login: {}", username); // $ MISSING: Alert[rust/log-injection] + info!("User login: {}", username); // $ Alert[rust/log-injection]=commandargs warn!("Warning for user: {}", user_input); // $ Alert[rust/log-injection]=environment error!("Error processing: {}", remote_data); // $ Alert[rust/log-injection]=remote - debug!("Debug info: {}", username); // $ MISSING: Alert[rust/log-injection] + debug!("Debug info: {}", username); // $ Alert[rust/log-injection]=commandargs trace!("Trace data: {}", user_input); // $ Alert[rust/log-injection]=environment // BAD: Formatted strings with user input let formatted_msg = format!("Processing user: {}", username); - info!("{}", formatted_msg); // $ MISSING: Alert[rust/log-injection] + info!("{}", formatted_msg); // $ Alert[rust/log-injection]=commandargs // BAD: String concatenation with user input let concat_msg = "User activity: ".to_string() + &username; - info!("{}", concat_msg); // $ MISSING: Alert[rust/log-injection] + info!("{}", concat_msg); // $ Alert[rust/log-injection]=commandargs // BAD: Complex formatting - info!("User {} accessed resource at {}", username, remote_data); // $ Alert[rust/log-injection]=remote + info!("User {} accessed resource at {}", username, remote_data); // $ Alert[rust/log-injection]=remote Alert[rust/log-injection]=commandargs // GOOD: Sanitized input let sanitized_username = username.replace('\n', "").replace('\r', ""); @@ -63,7 +63,7 @@ fn test_complex_scenarios(username: &str, user_input: &str) { // BAD: Through struct fields let user_info = UserInfo { name: username.to_string() }; - info!("User info: {}", user_info.name); // $ MISSING: Alert[rust/log-injection] + info!("User info: {}", user_info.name); // $ Alert[rust/log-injection]=commandargs // GOOD: After sanitization let clean_input = sanitize_input(user_input); diff --git a/rust/ql/test/query-tests/security/CWE-295/DisabledCertificateCheck.expected b/rust/ql/test/query-tests/security/CWE-295/DisabledCertificateCheck.expected index bbc67f6fd18..dd4fd929404 100644 --- a/rust/ql/test/query-tests/security/CWE-295/DisabledCertificateCheck.expected +++ b/rust/ql/test/query-tests/security/CWE-295/DisabledCertificateCheck.expected @@ -15,6 +15,7 @@ | main.rs:109:4:109:34 | danger_accept_invalid_hostnames | main.rs:107:17:107:31 | ...::exists | main.rs:109:4:109:34 | danger_accept_invalid_hostnames | Disabling TLS certificate validation can expose the application to man-in-the-middle attacks. | | main.rs:115:4:115:34 | danger_accept_invalid_hostnames | main.rs:113:43:113:50 | metadata | main.rs:115:4:115:34 | danger_accept_invalid_hostnames | Disabling TLS certificate validation can expose the application to man-in-the-middle attacks. | | main.rs:121:4:121:34 | danger_accept_invalid_hostnames | main.rs:119:11:119:27 | ...::metadata | main.rs:121:4:121:34 | danger_accept_invalid_hostnames | Disabling TLS certificate validation can expose the application to man-in-the-middle attacks. | +| main.rs:134:4:134:34 | danger_accept_invalid_hostnames | main.rs:129:14:129:27 | ...::stdin | main.rs:134:4:134:34 | danger_accept_invalid_hostnames | Disabling TLS certificate validation can expose the application to man-in-the-middle attacks. | | main.rs:146:4:146:34 | danger_accept_invalid_hostnames | main.rs:144:39:144:42 | true | main.rs:146:4:146:34 | danger_accept_invalid_hostnames | Disabling TLS certificate validation can expose the application to man-in-the-middle attacks. | edges | main.rs:4:32:4:35 | true | main.rs:4:4:4:30 | danger_accept_invalid_certs | provenance | MaD:1 Sink:MaD:1 | @@ -37,21 +38,33 @@ edges | main.rs:93:32:93:47 | sometimes_global | main.rs:93:4:93:30 | danger_accept_invalid_certs | provenance | MaD:1 Sink:MaD:1 | | main.rs:107:6:107:7 | b1 | main.rs:109:36:109:37 | b1 | provenance | | | main.rs:107:17:107:31 | ...::exists | main.rs:107:17:107:42 | ...::exists(...) [Ok] | provenance | Src:MaD:8 | -| main.rs:107:17:107:42 | ...::exists(...) [Ok] | main.rs:107:17:107:51 | ... .unwrap() | provenance | MaD:10 | +| main.rs:107:17:107:42 | ...::exists(...) [Ok] | main.rs:107:17:107:51 | ... .unwrap() | provenance | MaD:13 | | main.rs:107:17:107:51 | ... .unwrap() | main.rs:107:6:107:7 | b1 | provenance | | | main.rs:109:36:109:37 | b1 | main.rs:109:4:109:34 | danger_accept_invalid_hostnames | provenance | MaD:2 Sink:MaD:2 | | main.rs:113:6:113:7 | b2 | main.rs:115:36:115:37 | b2 | provenance | | -| main.rs:113:11:113:52 | ... .metadata() [Ok] | main.rs:113:11:113:61 | ... .unwrap() | provenance | MaD:10 | -| main.rs:113:11:113:61 | ... .unwrap() | main.rs:113:11:113:71 | ... .is_file() | provenance | MaD:12 | +| main.rs:113:11:113:52 | ... .metadata() [Ok] | main.rs:113:11:113:61 | ... .unwrap() | provenance | MaD:13 | +| main.rs:113:11:113:61 | ... .unwrap() | main.rs:113:11:113:71 | ... .is_file() | provenance | MaD:16 | | main.rs:113:11:113:71 | ... .is_file() | main.rs:113:6:113:7 | b2 | provenance | | | main.rs:113:43:113:50 | metadata | main.rs:113:11:113:52 | ... .metadata() [Ok] | provenance | Src:MaD:7 | | main.rs:115:36:115:37 | b2 | main.rs:115:4:115:34 | danger_accept_invalid_hostnames | provenance | MaD:2 Sink:MaD:2 | | main.rs:119:6:119:7 | b3 | main.rs:121:36:121:37 | b3 | provenance | | | main.rs:119:11:119:27 | ...::metadata | main.rs:119:11:119:38 | ...::metadata(...) [Ok] | provenance | Src:MaD:9 | -| main.rs:119:11:119:38 | ...::metadata(...) [Ok] | main.rs:119:11:119:47 | ... .unwrap() | provenance | MaD:10 | -| main.rs:119:11:119:47 | ... .unwrap() | main.rs:119:11:119:56 | ... .is_dir() | provenance | MaD:11 | +| main.rs:119:11:119:38 | ...::metadata(...) [Ok] | main.rs:119:11:119:47 | ... .unwrap() | provenance | MaD:13 | +| main.rs:119:11:119:47 | ... .unwrap() | main.rs:119:11:119:56 | ... .is_dir() | provenance | MaD:15 | | main.rs:119:11:119:56 | ... .is_dir() | main.rs:119:6:119:7 | b3 | provenance | | | main.rs:121:36:121:37 | b3 | main.rs:121:4:121:34 | danger_accept_invalid_hostnames | provenance | MaD:2 Sink:MaD:2 | +| main.rs:129:6:129:10 | input | main.rs:130:2:130:6 | input | provenance | | +| main.rs:129:14:129:27 | ...::stdin | main.rs:129:14:129:29 | ...::stdin(...) | provenance | Src:MaD:10 MaD:10 | +| main.rs:129:14:129:29 | ...::stdin(...) | main.rs:129:6:129:10 | input | provenance | | +| main.rs:130:2:130:6 | input | main.rs:130:18:130:32 | [post] &mut input_line [&ref] | provenance | MaD:17 | +| main.rs:130:18:130:32 | [post] &mut input_line [&ref] | main.rs:130:23:130:32 | [post] input_line | provenance | | +| main.rs:130:23:130:32 | [post] input_line | main.rs:132:17:132:26 | input_line | provenance | | +| main.rs:132:6:132:7 | b4 | main.rs:134:36:134:37 | b4 | provenance | | +| main.rs:132:17:132:26 | input_line | main.rs:132:17:132:42 | input_line.parse() [Ok] | provenance | MaD:11 | +| main.rs:132:17:132:26 | input_line | main.rs:132:17:132:42 | input_line.parse() [Ok] | provenance | MaD:12 | +| main.rs:132:17:132:42 | input_line.parse() [Ok] | main.rs:132:17:132:59 | ... .unwrap_or(...) | provenance | MaD:14 | +| main.rs:132:17:132:59 | ... .unwrap_or(...) | main.rs:132:6:132:7 | b4 | provenance | | +| main.rs:134:36:134:37 | b4 | main.rs:134:4:134:34 | danger_accept_invalid_hostnames | provenance | MaD:2 Sink:MaD:2 | | main.rs:144:6:144:7 | b6 | main.rs:146:36:146:37 | b6 | provenance | | | main.rs:144:39:144:42 | true | main.rs:144:6:144:7 | b6 | provenance | | | main.rs:146:36:146:37 | b6 | main.rs:146:4:146:34 | danger_accept_invalid_hostnames | provenance | MaD:2 Sink:MaD:2 | @@ -66,9 +79,14 @@ models | 7 | Source: ::metadata; ReturnValue.Field[core::result::Result::Ok(0)]; file | | 8 | Source: std::fs::exists; ReturnValue.Field[core::result::Result::Ok(0)]; file | | 9 | Source: std::fs::metadata; ReturnValue.Field[core::result::Result::Ok(0)]; file | -| 10 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | -| 11 | Summary: ::is_dir; Argument[self].Reference; ReturnValue; taint | -| 12 | Summary: ::is_file; Argument[self].Reference; ReturnValue; taint | +| 10 | Source: std::io::stdio::stdin; ReturnValue; stdin | +| 11 | Summary: <_ as core::ops::deref::Deref>::deref; Argument[self].Reference; ReturnValue.Reference; taint | +| 12 | Summary: ::deref; Argument[self]; ReturnValue; value | +| 13 | Summary: ::unwrap; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 14 | Summary: ::unwrap_or; Argument[self].Field[core::result::Result::Ok(0)]; ReturnValue; value | +| 15 | Summary: ::is_dir; Argument[self].Reference; ReturnValue; taint | +| 16 | Summary: ::is_file; Argument[self].Reference; ReturnValue; taint | +| 17 | Summary: ::read_line; Argument[self].Reference; Argument[0].Reference; taint | nodes | main.rs:4:4:4:30 | danger_accept_invalid_certs | semmle.label | danger_accept_invalid_certs | | main.rs:4:32:4:35 | true | semmle.label | true | @@ -121,6 +139,18 @@ nodes | main.rs:119:11:119:56 | ... .is_dir() | semmle.label | ... .is_dir() | | main.rs:121:4:121:34 | danger_accept_invalid_hostnames | semmle.label | danger_accept_invalid_hostnames | | main.rs:121:36:121:37 | b3 | semmle.label | b3 | +| main.rs:129:6:129:10 | input | semmle.label | input | +| main.rs:129:14:129:27 | ...::stdin | semmle.label | ...::stdin | +| main.rs:129:14:129:29 | ...::stdin(...) | semmle.label | ...::stdin(...) | +| main.rs:130:2:130:6 | input | semmle.label | input | +| main.rs:130:18:130:32 | [post] &mut input_line [&ref] | semmle.label | [post] &mut input_line [&ref] | +| main.rs:130:23:130:32 | [post] input_line | semmle.label | [post] input_line | +| main.rs:132:6:132:7 | b4 | semmle.label | b4 | +| main.rs:132:17:132:26 | input_line | semmle.label | input_line | +| main.rs:132:17:132:42 | input_line.parse() [Ok] | semmle.label | input_line.parse() [Ok] | +| main.rs:132:17:132:59 | ... .unwrap_or(...) | semmle.label | ... .unwrap_or(...) | +| main.rs:134:4:134:34 | danger_accept_invalid_hostnames | semmle.label | danger_accept_invalid_hostnames | +| main.rs:134:36:134:37 | b4 | semmle.label | b4 | | main.rs:144:6:144:7 | b6 | semmle.label | b6 | | main.rs:144:39:144:42 | true | semmle.label | true | | main.rs:146:4:146:34 | danger_accept_invalid_hostnames | semmle.label | danger_accept_invalid_hostnames | diff --git a/rust/ql/test/query-tests/security/CWE-295/main.rs b/rust/ql/test/query-tests/security/CWE-295/main.rs index 6088e6fc1be..e8c20c1d6df 100644 --- a/rust/ql/test/query-tests/security/CWE-295/main.rs +++ b/rust/ql/test/query-tests/security/CWE-295/main.rs @@ -126,12 +126,12 @@ fn test_threat_model_source() { // (these are a little closer to something real) let mut input_line = String::new(); - let input = std::io::stdin(); + let input = std::io::stdin(); // $ Source=stdin input.read_line(&mut input_line).unwrap(); let b4: bool = input_line.parse::().unwrap_or(false); let _client = native_tls::TlsConnector::builder() - .danger_accept_invalid_hostnames(b4) // $ MISSING: Alert[rust/disabled-certificate-check]=stdin + .danger_accept_invalid_hostnames(b4) // $ Alert[rust/disabled-certificate-check]=stdin .build() .unwrap(); diff --git a/rust/ql/test/query-tests/security/CWE-312/CleartextLogging.expected b/rust/ql/test/query-tests/security/CWE-312/CleartextLogging.expected index e399f4ce0b7..61de9de03b5 100644 --- a/rust/ql/test/query-tests/security/CWE-312/CleartextLogging.expected +++ b/rust/ql/test/query-tests/security/CWE-312/CleartextLogging.expected @@ -136,7 +136,6 @@ edges | test_logging.rs:94:11:94:28 | MacroExpr | test_logging.rs:94:5:94:9 | ...::log | provenance | MaD:11 Sink:MaD:11 | | test_logging.rs:96:9:96:10 | m2 | test_logging.rs:97:11:97:18 | MacroExpr | provenance | | | test_logging.rs:96:14:96:49 | ... + ... | test_logging.rs:96:9:96:10 | m2 | provenance | | -| test_logging.rs:96:41:96:49 | &password | test_logging.rs:96:14:96:49 | ... + ... | provenance | MaD:17 | | test_logging.rs:96:41:96:49 | &password | test_logging.rs:96:14:96:49 | ... + ... | provenance | MaD:16 | | test_logging.rs:96:41:96:49 | &password [&ref] | test_logging.rs:96:14:96:49 | ... + ... | provenance | MaD:16 | | test_logging.rs:96:42:96:49 | password | test_logging.rs:96:41:96:49 | &password | provenance | Config | @@ -145,8 +144,8 @@ edges | test_logging.rs:99:9:99:10 | m3 | test_logging.rs:100:11:100:18 | MacroExpr | provenance | | | test_logging.rs:99:22:99:45 | ...::format(...) | test_logging.rs:99:22:99:45 | { ... } | provenance | | | test_logging.rs:99:22:99:45 | ...::must_use(...) | test_logging.rs:99:9:99:10 | m3 | provenance | | -| test_logging.rs:99:22:99:45 | MacroExpr | test_logging.rs:99:22:99:45 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:99:22:99:45 | { ... } | test_logging.rs:99:22:99:45 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:99:22:99:45 | MacroExpr | test_logging.rs:99:22:99:45 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:99:22:99:45 | { ... } | test_logging.rs:99:22:99:45 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:99:38:99:45 | password | test_logging.rs:99:22:99:45 | MacroExpr | provenance | | | test_logging.rs:100:11:100:18 | MacroExpr | test_logging.rs:100:5:100:9 | ...::log | provenance | MaD:11 Sink:MaD:11 | | test_logging.rs:118:12:118:41 | MacroExpr | test_logging.rs:118:5:118:10 | ...::log | provenance | MaD:11 Sink:MaD:11 | @@ -167,8 +166,8 @@ edges | test_logging.rs:176:34:176:79 | MacroExpr | test_logging.rs:176:33:176:79 | &... [&ref] | provenance | | | test_logging.rs:176:42:176:78 | ...::format(...) | test_logging.rs:176:42:176:78 | { ... } | provenance | | | test_logging.rs:176:42:176:78 | ...::must_use(...) | test_logging.rs:176:34:176:79 | MacroExpr | provenance | | -| test_logging.rs:176:42:176:78 | MacroExpr | test_logging.rs:176:42:176:78 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:176:42:176:78 | { ... } | test_logging.rs:176:42:176:78 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:176:42:176:78 | MacroExpr | test_logging.rs:176:42:176:78 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:176:42:176:78 | { ... } | test_logging.rs:176:42:176:78 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:176:70:176:78 | password2 | test_logging.rs:176:42:176:78 | MacroExpr | provenance | | | test_logging.rs:180:35:180:81 | &... | test_logging.rs:180:24:180:33 | log_expect | provenance | MaD:3 Sink:MaD:3 | | test_logging.rs:180:35:180:81 | &... [&ref] | test_logging.rs:180:24:180:33 | log_expect | provenance | MaD:3 Sink:MaD:3 | @@ -176,8 +175,8 @@ edges | test_logging.rs:180:36:180:81 | MacroExpr | test_logging.rs:180:35:180:81 | &... [&ref] | provenance | | | test_logging.rs:180:44:180:80 | ...::format(...) | test_logging.rs:180:44:180:80 | { ... } | provenance | | | test_logging.rs:180:44:180:80 | ...::must_use(...) | test_logging.rs:180:36:180:81 | MacroExpr | provenance | | -| test_logging.rs:180:44:180:80 | MacroExpr | test_logging.rs:180:44:180:80 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:180:44:180:80 | { ... } | test_logging.rs:180:44:180:80 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:180:44:180:80 | MacroExpr | test_logging.rs:180:44:180:80 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:180:44:180:80 | { ... } | test_logging.rs:180:44:180:80 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:180:72:180:80 | password2 | test_logging.rs:180:44:180:80 | MacroExpr | provenance | | | test_logging.rs:183:9:183:19 | err_result2 [Err] | test_logging.rs:184:13:184:23 | err_result2 [Err] | provenance | | | test_logging.rs:183:47:183:68 | Err(...) [Err] | test_logging.rs:183:9:183:19 | err_result2 [Err] | provenance | | @@ -220,40 +219,40 @@ edges | test_logging.rs:226:36:226:59 | ...::Some(...) [Some] | test_logging.rs:226:13:226:28 | ...::assert_failed | provenance | MaD:9 Sink:MaD:9 | | test_logging.rs:226:36:226:59 | MacroExpr | test_logging.rs:226:36:226:59 | ...::Some(...) [Some] | provenance | | | test_logging.rs:226:52:226:59 | password | test_logging.rs:226:36:226:59 | MacroExpr | provenance | | -| test_logging.rs:229:30:229:62 | MacroExpr | test_logging.rs:229:30:229:71 | ... .as_str() [&ref] | provenance | MaD:19 | +| test_logging.rs:229:30:229:62 | MacroExpr | test_logging.rs:229:30:229:71 | ... .as_str() [&ref] | provenance | MaD:18 | | test_logging.rs:229:30:229:71 | ... .as_str() [&ref] | test_logging.rs:229:23:229:28 | expect | provenance | MaD:2 Sink:MaD:2 | | test_logging.rs:229:38:229:61 | ...::format(...) | test_logging.rs:229:38:229:61 | { ... } | provenance | | | test_logging.rs:229:38:229:61 | ...::must_use(...) | test_logging.rs:229:30:229:62 | MacroExpr | provenance | | -| test_logging.rs:229:38:229:61 | MacroExpr | test_logging.rs:229:38:229:61 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:229:38:229:61 | { ... } | test_logging.rs:229:38:229:61 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:229:38:229:61 | MacroExpr | test_logging.rs:229:38:229:61 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:229:38:229:61 | { ... } | test_logging.rs:229:38:229:61 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:229:54:229:61 | password | test_logging.rs:229:38:229:61 | MacroExpr | provenance | | -| test_logging.rs:242:16:242:50 | MacroExpr | test_logging.rs:242:16:242:61 | ... .as_bytes() [&ref] | provenance | MaD:18 | -| test_logging.rs:242:16:242:61 | ... .as_bytes() [&ref] | test_logging.rs:242:10:242:14 | write | provenance | MaD:7 Sink:MaD:7 | +| test_logging.rs:242:16:242:50 | MacroExpr | test_logging.rs:242:16:242:61 | ... .as_bytes() [&ref, element] | provenance | MaD:17 | +| test_logging.rs:242:16:242:61 | ... .as_bytes() [&ref, element] | test_logging.rs:242:10:242:14 | write | provenance | MaD:7 Sink:MaD:7 Sink:MaD:7 | | test_logging.rs:242:24:242:49 | ...::format(...) | test_logging.rs:242:24:242:49 | { ... } | provenance | | | test_logging.rs:242:24:242:49 | ...::must_use(...) | test_logging.rs:242:16:242:50 | MacroExpr | provenance | | -| test_logging.rs:242:24:242:49 | MacroExpr | test_logging.rs:242:24:242:49 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:242:24:242:49 | { ... } | test_logging.rs:242:24:242:49 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:242:24:242:49 | MacroExpr | test_logging.rs:242:24:242:49 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:242:24:242:49 | { ... } | test_logging.rs:242:24:242:49 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:242:42:242:49 | password | test_logging.rs:242:24:242:49 | MacroExpr | provenance | | -| test_logging.rs:245:20:245:54 | MacroExpr | test_logging.rs:245:20:245:65 | ... .as_bytes() [&ref] | provenance | MaD:18 | -| test_logging.rs:245:20:245:65 | ... .as_bytes() [&ref] | test_logging.rs:245:10:245:18 | write_all | provenance | MaD:8 Sink:MaD:8 | +| test_logging.rs:245:20:245:54 | MacroExpr | test_logging.rs:245:20:245:65 | ... .as_bytes() [&ref, element] | provenance | MaD:17 | +| test_logging.rs:245:20:245:65 | ... .as_bytes() [&ref, element] | test_logging.rs:245:10:245:18 | write_all | provenance | MaD:8 Sink:MaD:8 Sink:MaD:8 | | test_logging.rs:245:28:245:53 | ...::format(...) | test_logging.rs:245:28:245:53 | { ... } | provenance | | | test_logging.rs:245:28:245:53 | ...::must_use(...) | test_logging.rs:245:20:245:54 | MacroExpr | provenance | | -| test_logging.rs:245:28:245:53 | MacroExpr | test_logging.rs:245:28:245:53 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:245:28:245:53 | { ... } | test_logging.rs:245:28:245:53 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:245:28:245:53 | MacroExpr | test_logging.rs:245:28:245:53 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:245:28:245:53 | { ... } | test_logging.rs:245:28:245:53 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:245:46:245:53 | password | test_logging.rs:245:28:245:53 | MacroExpr | provenance | | -| test_logging.rs:248:15:248:49 | MacroExpr | test_logging.rs:248:15:248:60 | ... .as_bytes() [&ref] | provenance | MaD:18 | -| test_logging.rs:248:15:248:60 | ... .as_bytes() [&ref] | test_logging.rs:248:9:248:13 | write | provenance | MaD:7 Sink:MaD:7 | +| test_logging.rs:248:15:248:49 | MacroExpr | test_logging.rs:248:15:248:60 | ... .as_bytes() [&ref, element] | provenance | MaD:17 | +| test_logging.rs:248:15:248:60 | ... .as_bytes() [&ref, element] | test_logging.rs:248:9:248:13 | write | provenance | MaD:7 Sink:MaD:7 Sink:MaD:7 | | test_logging.rs:248:23:248:48 | ...::format(...) | test_logging.rs:248:23:248:48 | { ... } | provenance | | | test_logging.rs:248:23:248:48 | ...::must_use(...) | test_logging.rs:248:15:248:49 | MacroExpr | provenance | | -| test_logging.rs:248:23:248:48 | MacroExpr | test_logging.rs:248:23:248:48 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:248:23:248:48 | { ... } | test_logging.rs:248:23:248:48 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:248:23:248:48 | MacroExpr | test_logging.rs:248:23:248:48 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:248:23:248:48 | { ... } | test_logging.rs:248:23:248:48 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:248:41:248:48 | password | test_logging.rs:248:23:248:48 | MacroExpr | provenance | | -| test_logging.rs:251:15:251:49 | MacroExpr | test_logging.rs:251:15:251:60 | ... .as_bytes() [&ref] | provenance | MaD:18 | -| test_logging.rs:251:15:251:60 | ... .as_bytes() [&ref] | test_logging.rs:251:9:251:13 | write | provenance | MaD:6 Sink:MaD:6 | +| test_logging.rs:251:15:251:49 | MacroExpr | test_logging.rs:251:15:251:60 | ... .as_bytes() [&ref, element] | provenance | MaD:17 | +| test_logging.rs:251:15:251:60 | ... .as_bytes() [&ref, element] | test_logging.rs:251:9:251:13 | write | provenance | MaD:6 Sink:MaD:6 Sink:MaD:6 | | test_logging.rs:251:23:251:48 | ...::format(...) | test_logging.rs:251:23:251:48 | { ... } | provenance | | | test_logging.rs:251:23:251:48 | ...::must_use(...) | test_logging.rs:251:15:251:49 | MacroExpr | provenance | | -| test_logging.rs:251:23:251:48 | MacroExpr | test_logging.rs:251:23:251:48 | ...::format(...) | provenance | MaD:20 | -| test_logging.rs:251:23:251:48 | { ... } | test_logging.rs:251:23:251:48 | ...::must_use(...) | provenance | MaD:21 | +| test_logging.rs:251:23:251:48 | MacroExpr | test_logging.rs:251:23:251:48 | ...::format(...) | provenance | MaD:19 | +| test_logging.rs:251:23:251:48 | { ... } | test_logging.rs:251:23:251:48 | ...::must_use(...) | provenance | MaD:20 | | test_logging.rs:251:41:251:48 | password | test_logging.rs:251:23:251:48 | MacroExpr | provenance | | models | 1 | Sink: ::log_expect; Argument[0]; log-injection | @@ -272,11 +271,10 @@ models | 14 | Sink: std::io::stdio::_print; Argument[0]; log-injection | | 15 | Summary: <_ as core::clone::Clone>::clone; Argument[self].Reference; ReturnValue; value | | 16 | Summary: ::add; Argument[0].Reference; ReturnValue; taint | -| 17 | Summary: ::add; Argument[self,0]; ReturnValue; taint | -| 18 | Summary: ::as_bytes; Argument[self]; ReturnValue; value | -| 19 | Summary: ::as_str; Argument[self]; ReturnValue; value | -| 20 | Summary: alloc::fmt::format; Argument[0]; ReturnValue; taint | -| 21 | Summary: core::hint::must_use; Argument[0]; ReturnValue; value | +| 17 | Summary: ::as_bytes; Argument[self].Reference; ReturnValue.Reference.Element; taint | +| 18 | Summary: ::as_str; Argument[self].Reference; ReturnValue.Reference; taint | +| 19 | Summary: alloc::fmt::format; Argument[0]; ReturnValue; taint | +| 20 | Summary: core::hint::must_use; Argument[0]; ReturnValue; value | nodes | test_logging.rs:42:5:42:10 | ...::log | semmle.label | ...::log | | test_logging.rs:42:12:42:35 | MacroExpr | semmle.label | MacroExpr | @@ -491,7 +489,7 @@ nodes | test_logging.rs:229:54:229:61 | password | semmle.label | password | | test_logging.rs:242:10:242:14 | write | semmle.label | write | | test_logging.rs:242:16:242:50 | MacroExpr | semmle.label | MacroExpr | -| test_logging.rs:242:16:242:61 | ... .as_bytes() [&ref] | semmle.label | ... .as_bytes() [&ref] | +| test_logging.rs:242:16:242:61 | ... .as_bytes() [&ref, element] | semmle.label | ... .as_bytes() [&ref, element] | | test_logging.rs:242:24:242:49 | ...::format(...) | semmle.label | ...::format(...) | | test_logging.rs:242:24:242:49 | ...::must_use(...) | semmle.label | ...::must_use(...) | | test_logging.rs:242:24:242:49 | MacroExpr | semmle.label | MacroExpr | @@ -499,7 +497,7 @@ nodes | test_logging.rs:242:42:242:49 | password | semmle.label | password | | test_logging.rs:245:10:245:18 | write_all | semmle.label | write_all | | test_logging.rs:245:20:245:54 | MacroExpr | semmle.label | MacroExpr | -| test_logging.rs:245:20:245:65 | ... .as_bytes() [&ref] | semmle.label | ... .as_bytes() [&ref] | +| test_logging.rs:245:20:245:65 | ... .as_bytes() [&ref, element] | semmle.label | ... .as_bytes() [&ref, element] | | test_logging.rs:245:28:245:53 | ...::format(...) | semmle.label | ...::format(...) | | test_logging.rs:245:28:245:53 | ...::must_use(...) | semmle.label | ...::must_use(...) | | test_logging.rs:245:28:245:53 | MacroExpr | semmle.label | MacroExpr | @@ -507,7 +505,7 @@ nodes | test_logging.rs:245:46:245:53 | password | semmle.label | password | | test_logging.rs:248:9:248:13 | write | semmle.label | write | | test_logging.rs:248:15:248:49 | MacroExpr | semmle.label | MacroExpr | -| test_logging.rs:248:15:248:60 | ... .as_bytes() [&ref] | semmle.label | ... .as_bytes() [&ref] | +| test_logging.rs:248:15:248:60 | ... .as_bytes() [&ref, element] | semmle.label | ... .as_bytes() [&ref, element] | | test_logging.rs:248:23:248:48 | ...::format(...) | semmle.label | ...::format(...) | | test_logging.rs:248:23:248:48 | ...::must_use(...) | semmle.label | ...::must_use(...) | | test_logging.rs:248:23:248:48 | MacroExpr | semmle.label | MacroExpr | @@ -515,7 +513,7 @@ nodes | test_logging.rs:248:41:248:48 | password | semmle.label | password | | test_logging.rs:251:9:251:13 | write | semmle.label | write | | test_logging.rs:251:15:251:49 | MacroExpr | semmle.label | MacroExpr | -| test_logging.rs:251:15:251:60 | ... .as_bytes() [&ref] | semmle.label | ... .as_bytes() [&ref] | +| test_logging.rs:251:15:251:60 | ... .as_bytes() [&ref, element] | semmle.label | ... .as_bytes() [&ref, element] | | test_logging.rs:251:23:251:48 | ...::format(...) | semmle.label | ...::format(...) | | test_logging.rs:251:23:251:48 | ...::must_use(...) | semmle.label | ...::must_use(...) | | test_logging.rs:251:23:251:48 | MacroExpr | semmle.label | MacroExpr | diff --git a/rust/ql/test/query-tests/security/CWE-312/CleartextStorageDatabase.expected b/rust/ql/test/query-tests/security/CWE-312/CleartextStorageDatabase.expected index 23a715355f4..732b422c65f 100644 --- a/rust/ql/test/query-tests/security/CWE-312/CleartextStorageDatabase.expected +++ b/rust/ql/test/query-tests/security/CWE-312/CleartextStorageDatabase.expected @@ -15,7 +15,6 @@ edges | test_storage.rs:71:9:71:21 | insert_query2 | test_storage.rs:139:25:139:37 | insert_query2 | provenance | | | test_storage.rs:71:25:71:114 | ... + ... | test_storage.rs:71:25:71:121 | ... + ... | provenance | MaD:7 | | test_storage.rs:71:25:71:121 | ... + ... | test_storage.rs:71:9:71:21 | insert_query2 | provenance | | -| test_storage.rs:71:96:71:114 | &... | test_storage.rs:71:25:71:114 | ... + ... | provenance | MaD:7 | | test_storage.rs:71:96:71:114 | &... | test_storage.rs:71:25:71:114 | ... + ... | provenance | MaD:6 | | test_storage.rs:71:96:71:114 | &... [&ref] | test_storage.rs:71:25:71:114 | ... + ... | provenance | MaD:6 | | test_storage.rs:71:97:71:114 | get_phone_number(...) | test_storage.rs:71:96:71:114 | &... | provenance | Config | @@ -33,7 +32,6 @@ edges | test_storage.rs:189:9:189:24 | insert_query_bad | test_storage.rs:194:25:194:40 | insert_query_bad | provenance | | | test_storage.rs:189:28:189:117 | ... + ... | test_storage.rs:189:28:189:124 | ... + ... | provenance | MaD:7 | | test_storage.rs:189:28:189:124 | ... + ... | test_storage.rs:189:9:189:24 | insert_query_bad | provenance | | -| test_storage.rs:189:99:189:117 | &... | test_storage.rs:189:28:189:117 | ... + ... | provenance | MaD:7 | | test_storage.rs:189:99:189:117 | &... | test_storage.rs:189:28:189:117 | ... + ... | provenance | MaD:6 | | test_storage.rs:189:99:189:117 | &... [&ref] | test_storage.rs:189:28:189:117 | ... + ... | provenance | MaD:6 | | test_storage.rs:189:100:189:117 | get_phone_number(...) | test_storage.rs:189:99:189:117 | &... | provenance | Config | @@ -41,7 +39,6 @@ edges | test_storage.rs:190:9:190:24 | select_query_bad | test_storage.rs:196:35:196:50 | select_query_bad | provenance | | | test_storage.rs:190:28:190:103 | ... + ... | test_storage.rs:190:28:190:109 | ... + ... | provenance | MaD:7 | | test_storage.rs:190:28:190:109 | ... + ... | test_storage.rs:190:9:190:24 | select_query_bad | provenance | | -| test_storage.rs:190:85:190:103 | &... | test_storage.rs:190:28:190:103 | ... + ... | provenance | MaD:7 | | test_storage.rs:190:85:190:103 | &... | test_storage.rs:190:28:190:103 | ... + ... | provenance | MaD:6 | | test_storage.rs:190:85:190:103 | &... [&ref] | test_storage.rs:190:28:190:103 | ... + ... | provenance | MaD:6 | | test_storage.rs:190:86:190:103 | get_phone_number(...) | test_storage.rs:190:85:190:103 | &... | provenance | Config | @@ -66,8 +63,8 @@ models | 4 | Sink: sqlx_core::query::query; Argument[0]; sql-injection | | 5 | Sink: sqlx_core::raw_sql::raw_sql; Argument[0]; sql-injection | | 6 | Summary: ::add; Argument[0].Reference; ReturnValue; taint | -| 7 | Summary: ::add; Argument[self,0]; ReturnValue; taint | -| 8 | Summary: ::as_str; Argument[self]; ReturnValue; value | +| 7 | Summary: ::add; Argument[self]; ReturnValue; taint | +| 8 | Summary: ::as_str; Argument[self].Reference; ReturnValue.Reference; taint | nodes | test_storage.rs:71:9:71:21 | insert_query2 | semmle.label | insert_query2 | | test_storage.rs:71:25:71:114 | ... + ... | semmle.label | ... + ... | diff --git a/rust/ql/test/query-tests/security/CWE-770/UncontrolledAllocationSize.expected b/rust/ql/test/query-tests/security/CWE-770/UncontrolledAllocationSize.expected index 6da53e4f4c8..b820daa0511 100644 --- a/rust/ql/test/query-tests/security/CWE-770/UncontrolledAllocationSize.expected +++ b/rust/ql/test/query-tests/security/CWE-770/UncontrolledAllocationSize.expected @@ -1,56 +1,56 @@ #select -| main.rs:18:13:18:31 | ...::realloc | main.rs:317:13:317:26 | ...::args | main.rs:18:13:18:31 | ...::realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:21:13:21:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:21:13:21:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:22:13:22:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:22:13:22:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:23:13:23:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:23:13:23:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:24:13:24:36 | ...::alloc_zeroed | main.rs:317:13:317:26 | ...::args | main.rs:24:13:24:36 | ...::alloc_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:30:13:30:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:30:13:30:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:33:13:33:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:33:13:33:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:37:13:37:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:37:13:37:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:40:13:40:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:40:13:40:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:50:13:50:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:50:13:50:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:51:13:51:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:51:13:51:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:53:13:53:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:53:13:53:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:54:13:54:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:54:13:54:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:59:13:59:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:59:13:59:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:61:13:61:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:61:13:61:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:63:13:63:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:63:13:63:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:64:13:64:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:64:13:64:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:65:13:65:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:65:13:65:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:68:13:68:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:68:13:68:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:88:13:88:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:88:13:88:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:96:17:96:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:96:17:96:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:102:17:102:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:102:17:102:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:103:17:103:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:103:17:103:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:109:17:109:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:109:17:109:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:111:17:111:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:111:17:111:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:146:17:146:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:146:17:146:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:148:17:148:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:148:17:148:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:152:13:152:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:152:13:152:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:155:13:155:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:155:13:155:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:162:17:162:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:162:17:162:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:169:17:169:33 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:169:17:169:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:177:13:177:29 | ...::alloc | main.rs:317:13:317:26 | ...::args | main.rs:177:13:177:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:193:32:193:36 | alloc | main.rs:317:13:317:26 | ...::args | main.rs:193:32:193:36 | alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:194:32:194:43 | alloc_zeroed | main.rs:317:13:317:26 | ...::args | main.rs:194:32:194:43 | alloc_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:194:32:194:43 | alloc_zeroed | main.rs:317:13:317:26 | ...::args | main.rs:194:32:194:43 | alloc_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:195:32:195:39 | allocate | main.rs:317:13:317:26 | ...::args | main.rs:195:32:195:39 | allocate | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:196:32:196:46 | allocate_zeroed | main.rs:317:13:317:26 | ...::args | main.rs:196:32:196:46 | allocate_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:197:32:197:39 | allocate | main.rs:317:13:317:26 | ...::args | main.rs:197:32:197:39 | allocate | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:198:32:198:46 | allocate_zeroed | main.rs:317:13:317:26 | ...::args | main.rs:198:32:198:46 | allocate_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:202:32:202:38 | realloc | main.rs:317:13:317:26 | ...::args | main.rs:202:32:202:38 | realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:202:32:202:38 | realloc | main.rs:317:13:317:26 | ...::args | main.rs:202:32:202:38 | realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:208:40:208:43 | grow | main.rs:317:13:317:26 | ...::args | main.rs:208:40:208:43 | grow | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:210:40:210:50 | grow_zeroed | main.rs:317:13:317:26 | ...::args | main.rs:210:40:210:50 | grow_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:213:36:213:41 | shrink | main.rs:317:13:317:26 | ...::args | main.rs:213:36:213:41 | shrink | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:219:13:219:24 | ...::malloc | main.rs:317:13:317:26 | ...::args | main.rs:219:13:219:24 | ...::malloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:220:13:220:31 | ...::aligned_alloc | main.rs:317:13:317:26 | ...::args | main.rs:220:13:220:31 | ...::aligned_alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:222:13:222:24 | ...::calloc | main.rs:317:13:317:26 | ...::args | main.rs:222:13:222:24 | ...::calloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:223:13:223:24 | ...::calloc | main.rs:317:13:317:26 | ...::args | main.rs:223:13:223:24 | ...::calloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:224:13:224:25 | ...::realloc | main.rs:317:13:317:26 | ...::args | main.rs:224:13:224:25 | ...::realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:230:13:230:44 | ...::try_with_capacity_in | main.rs:317:13:317:26 | ...::args | main.rs:230:13:230:44 | ...::try_with_capacity_in | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:231:13:231:40 | ...::with_capacity_in | main.rs:317:13:317:26 | ...::args | main.rs:231:13:231:40 | ...::with_capacity_in | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:317:13:317:26 | ...::args | user-provided value | -| main.rs:284:22:284:38 | ...::alloc | main.rs:308:25:308:38 | ...::args | main.rs:284:22:284:38 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:308:25:308:38 | ...::args | user-provided value | +| main.rs:18:13:18:31 | ...::realloc | main.rs:320:13:320:26 | ...::args | main.rs:18:13:18:31 | ...::realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:21:13:21:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:21:13:21:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:22:13:22:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:22:13:22:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:23:13:23:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:23:13:23:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:24:13:24:36 | ...::alloc_zeroed | main.rs:320:13:320:26 | ...::args | main.rs:24:13:24:36 | ...::alloc_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:30:13:30:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:30:13:30:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:33:13:33:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:33:13:33:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:37:13:37:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:37:13:37:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:40:13:40:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:40:13:40:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:50:13:50:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:50:13:50:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:51:13:51:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:51:13:51:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:53:13:53:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:53:13:53:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:54:13:54:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:54:13:54:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:59:13:59:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:59:13:59:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:61:13:61:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:61:13:61:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:63:13:63:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:63:13:63:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:64:13:64:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:64:13:64:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:65:13:65:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:65:13:65:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:68:13:68:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:68:13:68:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:88:13:88:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:88:13:88:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:96:17:96:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:96:17:96:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:102:17:102:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:102:17:102:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:103:17:103:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:103:17:103:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:109:17:109:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:109:17:109:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:111:17:111:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:111:17:111:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:146:17:146:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:146:17:146:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:148:17:148:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:148:17:148:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:152:13:152:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:152:13:152:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:155:13:155:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:155:13:155:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:162:17:162:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:162:17:162:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:169:17:169:33 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:169:17:169:33 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:177:13:177:29 | ...::alloc | main.rs:320:13:320:26 | ...::args | main.rs:177:13:177:29 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:193:32:193:36 | alloc | main.rs:320:13:320:26 | ...::args | main.rs:193:32:193:36 | alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:194:32:194:43 | alloc_zeroed | main.rs:320:13:320:26 | ...::args | main.rs:194:32:194:43 | alloc_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:194:32:194:43 | alloc_zeroed | main.rs:320:13:320:26 | ...::args | main.rs:194:32:194:43 | alloc_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:195:32:195:39 | allocate | main.rs:320:13:320:26 | ...::args | main.rs:195:32:195:39 | allocate | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:196:32:196:46 | allocate_zeroed | main.rs:320:13:320:26 | ...::args | main.rs:196:32:196:46 | allocate_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:197:32:197:39 | allocate | main.rs:320:13:320:26 | ...::args | main.rs:197:32:197:39 | allocate | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:198:32:198:46 | allocate_zeroed | main.rs:320:13:320:26 | ...::args | main.rs:198:32:198:46 | allocate_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:202:32:202:38 | realloc | main.rs:320:13:320:26 | ...::args | main.rs:202:32:202:38 | realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:202:32:202:38 | realloc | main.rs:320:13:320:26 | ...::args | main.rs:202:32:202:38 | realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:208:40:208:43 | grow | main.rs:320:13:320:26 | ...::args | main.rs:208:40:208:43 | grow | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:210:40:210:50 | grow_zeroed | main.rs:320:13:320:26 | ...::args | main.rs:210:40:210:50 | grow_zeroed | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:213:36:213:41 | shrink | main.rs:320:13:320:26 | ...::args | main.rs:213:36:213:41 | shrink | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:219:13:219:24 | ...::malloc | main.rs:320:13:320:26 | ...::args | main.rs:219:13:219:24 | ...::malloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:220:13:220:31 | ...::aligned_alloc | main.rs:320:13:320:26 | ...::args | main.rs:220:13:220:31 | ...::aligned_alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:222:13:222:24 | ...::calloc | main.rs:320:13:320:26 | ...::args | main.rs:222:13:222:24 | ...::calloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:223:13:223:24 | ...::calloc | main.rs:320:13:320:26 | ...::args | main.rs:223:13:223:24 | ...::calloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:224:13:224:25 | ...::realloc | main.rs:320:13:320:26 | ...::args | main.rs:224:13:224:25 | ...::realloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:230:13:230:44 | ...::try_with_capacity_in | main.rs:320:13:320:26 | ...::args | main.rs:230:13:230:44 | ...::try_with_capacity_in | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:231:13:231:40 | ...::with_capacity_in | main.rs:320:13:320:26 | ...::args | main.rs:231:13:231:40 | ...::with_capacity_in | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:320:13:320:26 | ...::args | user-provided value | +| main.rs:287:22:287:38 | ...::alloc | main.rs:311:25:311:38 | ...::args | main.rs:287:22:287:38 | ...::alloc | This allocation size is derived from a $@ and could allocate arbitrary amounts of memory. | main.rs:311:25:311:38 | ...::args | user-provided value | edges | main.rs:12:36:12:43 | ...: usize | main.rs:18:41:18:41 | v | provenance | | | main.rs:18:41:18:41 | v | main.rs:18:13:18:31 | ...::realloc | provenance | MaD:17 Sink:MaD:17 | @@ -256,42 +256,42 @@ edges | main.rs:230:46:230:46 | v | main.rs:230:13:230:44 | ...::try_with_capacity_in | provenance | MaD:3 Sink:MaD:3 | | main.rs:230:46:230:46 | v | main.rs:231:42:231:42 | v | provenance | | | main.rs:231:42:231:42 | v | main.rs:231:13:231:40 | ...::with_capacity_in | provenance | MaD:4 Sink:MaD:4 | -| main.rs:279:24:279:41 | ...: String | main.rs:280:21:280:30 | user_input | provenance | | -| main.rs:280:9:280:17 | num_bytes | main.rs:282:54:282:62 | num_bytes | provenance | | -| main.rs:280:21:280:30 | user_input | main.rs:280:21:280:47 | user_input.parse() [Ok] | provenance | MaD:28 | -| main.rs:280:21:280:30 | user_input | main.rs:280:21:280:47 | user_input.parse() [Ok] | provenance | MaD:29 | -| main.rs:280:21:280:47 | user_input.parse() [Ok] | main.rs:280:21:280:48 | TryExpr | provenance | | -| main.rs:280:21:280:48 | TryExpr | main.rs:280:21:280:77 | ... * ... | provenance | MaD:27 | -| main.rs:280:21:280:48 | TryExpr | main.rs:280:21:280:77 | ... * ... | provenance | MaD:46 | -| main.rs:280:21:280:77 | ... * ... | main.rs:280:9:280:17 | num_bytes | provenance | | -| main.rs:282:9:282:14 | layout | main.rs:284:40:284:45 | layout | provenance | | -| main.rs:282:18:282:66 | ...::from_size_align(...) [Ok] | main.rs:282:18:282:75 | ... .unwrap() | provenance | MaD:44 | -| main.rs:282:18:282:75 | ... .unwrap() | main.rs:282:9:282:14 | layout | provenance | | -| main.rs:282:54:282:62 | num_bytes | main.rs:282:18:282:66 | ...::from_size_align(...) [Ok] | provenance | MaD:36 | -| main.rs:284:40:284:45 | layout | main.rs:284:22:284:38 | ...::alloc | provenance | MaD:15 Sink:MaD:15 | -| main.rs:308:25:308:38 | ...::args | main.rs:308:25:308:40 | ...::args(...) [element] | provenance | Src:MaD:22 | -| main.rs:308:25:308:40 | ...::args(...) [element] | main.rs:308:25:308:47 | ... .nth(...) [Some] | provenance | MaD:23 | -| main.rs:308:25:308:47 | ... .nth(...) [Some] | main.rs:308:25:308:74 | ... .unwrap_or(...) | provenance | MaD:42 | -| main.rs:308:25:308:74 | ... .unwrap_or(...) | main.rs:279:24:279:41 | ...: String | provenance | | -| main.rs:317:9:317:9 | v | main.rs:320:34:320:34 | v | provenance | | -| main.rs:317:9:317:9 | v | main.rs:321:42:321:42 | v | provenance | | -| main.rs:317:9:317:9 | v | main.rs:322:36:322:36 | v | provenance | | -| main.rs:317:9:317:9 | v | main.rs:323:27:323:27 | v | provenance | | -| main.rs:317:9:317:9 | v | main.rs:324:25:324:25 | v | provenance | | -| main.rs:317:9:317:9 | v | main.rs:325:22:325:22 | v | provenance | | -| main.rs:317:13:317:26 | ...::args | main.rs:317:13:317:28 | ...::args(...) [element] | provenance | Src:MaD:22 | -| main.rs:317:13:317:28 | ...::args(...) [element] | main.rs:317:13:317:35 | ... .nth(...) [Some] | provenance | MaD:23 | -| main.rs:317:13:317:35 | ... .nth(...) [Some] | main.rs:317:13:317:65 | ... .unwrap_or(...) | provenance | MaD:42 | -| main.rs:317:13:317:65 | ... .unwrap_or(...) | main.rs:317:13:317:82 | ... .parse() [Ok] | provenance | MaD:28 | -| main.rs:317:13:317:65 | ... .unwrap_or(...) | main.rs:317:13:317:82 | ... .parse() [Ok] | provenance | MaD:29 | -| main.rs:317:13:317:82 | ... .parse() [Ok] | main.rs:317:13:317:91 | ... .unwrap() | provenance | MaD:44 | -| main.rs:317:13:317:91 | ... .unwrap() | main.rs:317:9:317:9 | v | provenance | | -| main.rs:320:34:320:34 | v | main.rs:12:36:12:43 | ...: usize | provenance | | -| main.rs:321:42:321:42 | v | main.rs:43:44:43:51 | ...: usize | provenance | | -| main.rs:322:36:322:36 | v | main.rs:91:38:91:45 | ...: usize | provenance | | -| main.rs:323:27:323:27 | v | main.rs:183:29:183:36 | ...: usize | provenance | | -| main.rs:324:25:324:25 | v | main.rs:217:27:217:34 | ...: usize | provenance | | -| main.rs:325:22:325:22 | v | main.rs:227:24:227:31 | ...: usize | provenance | | +| main.rs:282:24:282:41 | ...: String | main.rs:283:21:283:30 | user_input | provenance | | +| main.rs:283:9:283:17 | num_bytes | main.rs:285:54:285:62 | num_bytes | provenance | | +| main.rs:283:21:283:30 | user_input | main.rs:283:21:283:47 | user_input.parse() [Ok] | provenance | MaD:28 | +| main.rs:283:21:283:30 | user_input | main.rs:283:21:283:47 | user_input.parse() [Ok] | provenance | MaD:29 | +| main.rs:283:21:283:47 | user_input.parse() [Ok] | main.rs:283:21:283:48 | TryExpr | provenance | | +| main.rs:283:21:283:48 | TryExpr | main.rs:283:21:283:77 | ... * ... | provenance | MaD:27 | +| main.rs:283:21:283:48 | TryExpr | main.rs:283:21:283:77 | ... * ... | provenance | MaD:46 | +| main.rs:283:21:283:77 | ... * ... | main.rs:283:9:283:17 | num_bytes | provenance | | +| main.rs:285:9:285:14 | layout | main.rs:287:40:287:45 | layout | provenance | | +| main.rs:285:18:285:66 | ...::from_size_align(...) [Ok] | main.rs:285:18:285:75 | ... .unwrap() | provenance | MaD:44 | +| main.rs:285:18:285:75 | ... .unwrap() | main.rs:285:9:285:14 | layout | provenance | | +| main.rs:285:54:285:62 | num_bytes | main.rs:285:18:285:66 | ...::from_size_align(...) [Ok] | provenance | MaD:36 | +| main.rs:287:40:287:45 | layout | main.rs:287:22:287:38 | ...::alloc | provenance | MaD:15 Sink:MaD:15 | +| main.rs:311:25:311:38 | ...::args | main.rs:311:25:311:40 | ...::args(...) [element] | provenance | Src:MaD:22 | +| main.rs:311:25:311:40 | ...::args(...) [element] | main.rs:311:25:311:47 | ... .nth(...) [Some] | provenance | MaD:23 | +| main.rs:311:25:311:47 | ... .nth(...) [Some] | main.rs:311:25:311:74 | ... .unwrap_or(...) | provenance | MaD:42 | +| main.rs:311:25:311:74 | ... .unwrap_or(...) | main.rs:282:24:282:41 | ...: String | provenance | | +| main.rs:320:9:320:9 | v | main.rs:323:34:323:34 | v | provenance | | +| main.rs:320:9:320:9 | v | main.rs:324:42:324:42 | v | provenance | | +| main.rs:320:9:320:9 | v | main.rs:325:36:325:36 | v | provenance | | +| main.rs:320:9:320:9 | v | main.rs:326:27:326:27 | v | provenance | | +| main.rs:320:9:320:9 | v | main.rs:327:25:327:25 | v | provenance | | +| main.rs:320:9:320:9 | v | main.rs:328:22:328:22 | v | provenance | | +| main.rs:320:13:320:26 | ...::args | main.rs:320:13:320:28 | ...::args(...) [element] | provenance | Src:MaD:22 | +| main.rs:320:13:320:28 | ...::args(...) [element] | main.rs:320:13:320:35 | ... .nth(...) [Some] | provenance | MaD:23 | +| main.rs:320:13:320:35 | ... .nth(...) [Some] | main.rs:320:13:320:65 | ... .unwrap_or(...) | provenance | MaD:42 | +| main.rs:320:13:320:65 | ... .unwrap_or(...) | main.rs:320:13:320:82 | ... .parse() [Ok] | provenance | MaD:28 | +| main.rs:320:13:320:65 | ... .unwrap_or(...) | main.rs:320:13:320:82 | ... .parse() [Ok] | provenance | MaD:29 | +| main.rs:320:13:320:82 | ... .parse() [Ok] | main.rs:320:13:320:91 | ... .unwrap() | provenance | MaD:44 | +| main.rs:320:13:320:91 | ... .unwrap() | main.rs:320:9:320:9 | v | provenance | | +| main.rs:323:34:323:34 | v | main.rs:12:36:12:43 | ...: usize | provenance | | +| main.rs:324:42:324:42 | v | main.rs:43:44:43:51 | ...: usize | provenance | | +| main.rs:325:36:325:36 | v | main.rs:91:38:91:45 | ...: usize | provenance | | +| main.rs:326:27:326:27 | v | main.rs:183:29:183:36 | ...: usize | provenance | | +| main.rs:327:25:327:25 | v | main.rs:217:27:217:34 | ...: usize | provenance | | +| main.rs:328:22:328:22 | v | main.rs:227:24:227:31 | ...: usize | provenance | | models | 1 | Sink: ::allocate; Argument[0]; alloc-layout | | 2 | Sink: ::allocate_zeroed; Argument[0]; alloc-layout | @@ -546,33 +546,33 @@ nodes | main.rs:230:46:230:46 | v | semmle.label | v | | main.rs:231:13:231:40 | ...::with_capacity_in | semmle.label | ...::with_capacity_in | | main.rs:231:42:231:42 | v | semmle.label | v | -| main.rs:279:24:279:41 | ...: String | semmle.label | ...: String | -| main.rs:280:9:280:17 | num_bytes | semmle.label | num_bytes | -| main.rs:280:21:280:30 | user_input | semmle.label | user_input | -| main.rs:280:21:280:47 | user_input.parse() [Ok] | semmle.label | user_input.parse() [Ok] | -| main.rs:280:21:280:48 | TryExpr | semmle.label | TryExpr | -| main.rs:280:21:280:77 | ... * ... | semmle.label | ... * ... | -| main.rs:282:9:282:14 | layout | semmle.label | layout | -| main.rs:282:18:282:66 | ...::from_size_align(...) [Ok] | semmle.label | ...::from_size_align(...) [Ok] | -| main.rs:282:18:282:75 | ... .unwrap() | semmle.label | ... .unwrap() | -| main.rs:282:54:282:62 | num_bytes | semmle.label | num_bytes | -| main.rs:284:22:284:38 | ...::alloc | semmle.label | ...::alloc | -| main.rs:284:40:284:45 | layout | semmle.label | layout | -| main.rs:308:25:308:38 | ...::args | semmle.label | ...::args | -| main.rs:308:25:308:40 | ...::args(...) [element] | semmle.label | ...::args(...) [element] | -| main.rs:308:25:308:47 | ... .nth(...) [Some] | semmle.label | ... .nth(...) [Some] | -| main.rs:308:25:308:74 | ... .unwrap_or(...) | semmle.label | ... .unwrap_or(...) | -| main.rs:317:9:317:9 | v | semmle.label | v | -| main.rs:317:13:317:26 | ...::args | semmle.label | ...::args | -| main.rs:317:13:317:28 | ...::args(...) [element] | semmle.label | ...::args(...) [element] | -| main.rs:317:13:317:35 | ... .nth(...) [Some] | semmle.label | ... .nth(...) [Some] | -| main.rs:317:13:317:65 | ... .unwrap_or(...) | semmle.label | ... .unwrap_or(...) | -| main.rs:317:13:317:82 | ... .parse() [Ok] | semmle.label | ... .parse() [Ok] | -| main.rs:317:13:317:91 | ... .unwrap() | semmle.label | ... .unwrap() | -| main.rs:320:34:320:34 | v | semmle.label | v | -| main.rs:321:42:321:42 | v | semmle.label | v | -| main.rs:322:36:322:36 | v | semmle.label | v | -| main.rs:323:27:323:27 | v | semmle.label | v | -| main.rs:324:25:324:25 | v | semmle.label | v | -| main.rs:325:22:325:22 | v | semmle.label | v | +| main.rs:282:24:282:41 | ...: String | semmle.label | ...: String | +| main.rs:283:9:283:17 | num_bytes | semmle.label | num_bytes | +| main.rs:283:21:283:30 | user_input | semmle.label | user_input | +| main.rs:283:21:283:47 | user_input.parse() [Ok] | semmle.label | user_input.parse() [Ok] | +| main.rs:283:21:283:48 | TryExpr | semmle.label | TryExpr | +| main.rs:283:21:283:77 | ... * ... | semmle.label | ... * ... | +| main.rs:285:9:285:14 | layout | semmle.label | layout | +| main.rs:285:18:285:66 | ...::from_size_align(...) [Ok] | semmle.label | ...::from_size_align(...) [Ok] | +| main.rs:285:18:285:75 | ... .unwrap() | semmle.label | ... .unwrap() | +| main.rs:285:54:285:62 | num_bytes | semmle.label | num_bytes | +| main.rs:287:22:287:38 | ...::alloc | semmle.label | ...::alloc | +| main.rs:287:40:287:45 | layout | semmle.label | layout | +| main.rs:311:25:311:38 | ...::args | semmle.label | ...::args | +| main.rs:311:25:311:40 | ...::args(...) [element] | semmle.label | ...::args(...) [element] | +| main.rs:311:25:311:47 | ... .nth(...) [Some] | semmle.label | ... .nth(...) [Some] | +| main.rs:311:25:311:74 | ... .unwrap_or(...) | semmle.label | ... .unwrap_or(...) | +| main.rs:320:9:320:9 | v | semmle.label | v | +| main.rs:320:13:320:26 | ...::args | semmle.label | ...::args | +| main.rs:320:13:320:28 | ...::args(...) [element] | semmle.label | ...::args(...) [element] | +| main.rs:320:13:320:35 | ... .nth(...) [Some] | semmle.label | ... .nth(...) [Some] | +| main.rs:320:13:320:65 | ... .unwrap_or(...) | semmle.label | ... .unwrap_or(...) | +| main.rs:320:13:320:82 | ... .parse() [Ok] | semmle.label | ... .parse() [Ok] | +| main.rs:320:13:320:91 | ... .unwrap() | semmle.label | ... .unwrap() | +| main.rs:323:34:323:34 | v | semmle.label | v | +| main.rs:324:42:324:42 | v | semmle.label | v | +| main.rs:325:36:325:36 | v | semmle.label | v | +| main.rs:326:27:326:27 | v | semmle.label | v | +| main.rs:327:25:327:25 | v | semmle.label | v | +| main.rs:328:22:328:22 | v | semmle.label | v | subpaths diff --git a/rust/ql/test/query-tests/security/CWE-770/main.rs b/rust/ql/test/query-tests/security/CWE-770/main.rs index 1f549cb2675..1b3a5fc4e93 100644 --- a/rust/ql/test/query-tests/security/CWE-770/main.rs +++ b/rust/ql/test/query-tests/security/CWE-770/main.rs @@ -238,6 +238,9 @@ unsafe fn test_vectors(v: usize) { v1.resize(v, 1); // $ MISSING: Alert[rust/uncontrolled-allocation-size] v1.set_len(v); // $ MISSING: Alert[rust/uncontrolled-allocation-size] + let mut v2 = vec![1, 2, 3, 4, 5, 6]; + let _ = v2.split_off(v); // GOOD (any allocation is bounded by the initial size of the vector) + let l2 = std::alloc::Layout::new::<[u64; 200]>(); let m2 = std::ptr::NonNull::::new(std::alloc::alloc(l2).cast::()).unwrap(); let _ = Vec::::from_parts(m2, v, 200); // $ MISSING: Alert[rust/uncontrolled-allocation-size] diff --git a/shared/concepts/CHANGELOG.md b/shared/concepts/CHANGELOG.md index e2c7978d2b6..48b330cf5a1 100644 --- a/shared/concepts/CHANGELOG.md +++ b/shared/concepts/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.13 + +No user-facing changes. + ## 0.0.12 No user-facing changes. diff --git a/shared/concepts/change-notes/released/0.0.13.md b/shared/concepts/change-notes/released/0.0.13.md new file mode 100644 index 00000000000..f679eaf0313 --- /dev/null +++ b/shared/concepts/change-notes/released/0.0.13.md @@ -0,0 +1,3 @@ +## 0.0.13 + +No user-facing changes. diff --git a/shared/concepts/codeql-pack.release.yml b/shared/concepts/codeql-pack.release.yml index 997fb8da83c..044e54e4f7e 100644 --- a/shared/concepts/codeql-pack.release.yml +++ b/shared/concepts/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.12 +lastReleaseVersion: 0.0.13 diff --git a/shared/concepts/qlpack.yml b/shared/concepts/qlpack.yml index 8c44a51ff93..767770ce24a 100644 --- a/shared/concepts/qlpack.yml +++ b/shared/concepts/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/concepts -version: 0.0.13-dev +version: 0.0.14-dev groups: shared library: true dependencies: diff --git a/shared/controlflow/CHANGELOG.md b/shared/controlflow/CHANGELOG.md index 523f7667b24..f5521a1d403 100644 --- a/shared/controlflow/CHANGELOG.md +++ b/shared/controlflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.23 + +No user-facing changes. + ## 2.0.22 No user-facing changes. diff --git a/shared/controlflow/change-notes/released/2.0.23.md b/shared/controlflow/change-notes/released/2.0.23.md new file mode 100644 index 00000000000..ab6f6f171ed --- /dev/null +++ b/shared/controlflow/change-notes/released/2.0.23.md @@ -0,0 +1,3 @@ +## 2.0.23 + +No user-facing changes. diff --git a/shared/controlflow/codeql-pack.release.yml b/shared/controlflow/codeql-pack.release.yml index 980bdfe195b..1bd7e296a34 100644 --- a/shared/controlflow/codeql-pack.release.yml +++ b/shared/controlflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.22 +lastReleaseVersion: 2.0.23 diff --git a/shared/controlflow/qlpack.yml b/shared/controlflow/qlpack.yml index 37ae8d21aaf..4829cf18940 100644 --- a/shared/controlflow/qlpack.yml +++ b/shared/controlflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/controlflow -version: 2.0.23-dev +version: 2.0.24-dev groups: shared library: true dependencies: diff --git a/shared/dataflow/CHANGELOG.md b/shared/dataflow/CHANGELOG.md index 8ade6c20ef4..b8f8111a341 100644 --- a/shared/dataflow/CHANGELOG.md +++ b/shared/dataflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.23 + +No user-facing changes. + ## 2.0.22 No user-facing changes. diff --git a/shared/dataflow/change-notes/released/2.0.23.md b/shared/dataflow/change-notes/released/2.0.23.md new file mode 100644 index 00000000000..ab6f6f171ed --- /dev/null +++ b/shared/dataflow/change-notes/released/2.0.23.md @@ -0,0 +1,3 @@ +## 2.0.23 + +No user-facing changes. diff --git a/shared/dataflow/codeql-pack.release.yml b/shared/dataflow/codeql-pack.release.yml index 980bdfe195b..1bd7e296a34 100644 --- a/shared/dataflow/codeql-pack.release.yml +++ b/shared/dataflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.22 +lastReleaseVersion: 2.0.23 diff --git a/shared/dataflow/qlpack.yml b/shared/dataflow/qlpack.yml index 33335ec904f..88e3717ad91 100644 --- a/shared/dataflow/qlpack.yml +++ b/shared/dataflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/dataflow -version: 2.0.23-dev +version: 2.0.24-dev groups: shared library: true dependencies: diff --git a/shared/mad/CHANGELOG.md b/shared/mad/CHANGELOG.md index 27e5fb03dfa..799b76d1aad 100644 --- a/shared/mad/CHANGELOG.md +++ b/shared/mad/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/mad/change-notes/released/1.0.39.md b/shared/mad/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/mad/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/mad/codeql-pack.release.yml b/shared/mad/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/mad/codeql-pack.release.yml +++ b/shared/mad/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/mad/qlpack.yml b/shared/mad/qlpack.yml index 271e93b5c0b..3726498ddf2 100644 --- a/shared/mad/qlpack.yml +++ b/shared/mad/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/mad -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true dependencies: diff --git a/shared/quantum/CHANGELOG.md b/shared/quantum/CHANGELOG.md index 28235d47f61..96dafca5768 100644 --- a/shared/quantum/CHANGELOG.md +++ b/shared/quantum/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.17 + +No user-facing changes. + ## 0.0.16 No user-facing changes. diff --git a/shared/quantum/change-notes/released/0.0.17.md b/shared/quantum/change-notes/released/0.0.17.md new file mode 100644 index 00000000000..62cc89030a6 --- /dev/null +++ b/shared/quantum/change-notes/released/0.0.17.md @@ -0,0 +1,3 @@ +## 0.0.17 + +No user-facing changes. diff --git a/shared/quantum/codeql-pack.release.yml b/shared/quantum/codeql-pack.release.yml index a49f7be4cff..cbc3d3cd493 100644 --- a/shared/quantum/codeql-pack.release.yml +++ b/shared/quantum/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.16 +lastReleaseVersion: 0.0.17 diff --git a/shared/quantum/qlpack.yml b/shared/quantum/qlpack.yml index 1f08c524321..d9c5869107f 100644 --- a/shared/quantum/qlpack.yml +++ b/shared/quantum/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/quantum -version: 0.0.17-dev +version: 0.0.18-dev groups: shared library: true dependencies: diff --git a/shared/rangeanalysis/CHANGELOG.md b/shared/rangeanalysis/CHANGELOG.md index c1a36a57de3..c9073a6a0d3 100644 --- a/shared/rangeanalysis/CHANGELOG.md +++ b/shared/rangeanalysis/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/rangeanalysis/change-notes/released/1.0.39.md b/shared/rangeanalysis/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/rangeanalysis/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/rangeanalysis/codeql-pack.release.yml b/shared/rangeanalysis/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/rangeanalysis/codeql-pack.release.yml +++ b/shared/rangeanalysis/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/rangeanalysis/qlpack.yml b/shared/rangeanalysis/qlpack.yml index f69da48d3fe..1f3aa054b0f 100644 --- a/shared/rangeanalysis/qlpack.yml +++ b/shared/rangeanalysis/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rangeanalysis -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true dependencies: diff --git a/shared/regex/CHANGELOG.md b/shared/regex/CHANGELOG.md index 0002bcde38e..bd4172a6f24 100644 --- a/shared/regex/CHANGELOG.md +++ b/shared/regex/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/regex/change-notes/released/1.0.39.md b/shared/regex/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/regex/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/regex/codeql-pack.release.yml b/shared/regex/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/regex/codeql-pack.release.yml +++ b/shared/regex/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/regex/qlpack.yml b/shared/regex/qlpack.yml index 522248c9f30..708ae7ee1b2 100644 --- a/shared/regex/qlpack.yml +++ b/shared/regex/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/regex -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true dependencies: diff --git a/shared/ssa/CHANGELOG.md b/shared/ssa/CHANGELOG.md index 1dfec3daacc..e37d98b1dc1 100644 --- a/shared/ssa/CHANGELOG.md +++ b/shared/ssa/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.15 + +No user-facing changes. + ## 2.0.14 No user-facing changes. diff --git a/shared/ssa/change-notes/released/2.0.15.md b/shared/ssa/change-notes/released/2.0.15.md new file mode 100644 index 00000000000..3b59db4224a --- /dev/null +++ b/shared/ssa/change-notes/released/2.0.15.md @@ -0,0 +1,3 @@ +## 2.0.15 + +No user-facing changes. diff --git a/shared/ssa/codeql-pack.release.yml b/shared/ssa/codeql-pack.release.yml index 23aa0864b29..0377ae283a3 100644 --- a/shared/ssa/codeql-pack.release.yml +++ b/shared/ssa/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.14 +lastReleaseVersion: 2.0.15 diff --git a/shared/ssa/codeql/ssa/Ssa.qll b/shared/ssa/codeql/ssa/Ssa.qll index 26f3d9f9771..cb2d527c964 100644 --- a/shared/ssa/codeql/ssa/Ssa.qll +++ b/shared/ssa/codeql/ssa/Ssa.qll @@ -2081,6 +2081,41 @@ module Make< ) } + pragma[nomagic] + private predicate phiInputHasRead(SsaPhiExt phi, BasicBlock input) { + exists(DfInput::getARead(getAPhiInputDef(phi, input))) + } + + /** Holds if `bb` is the target end of a branch edge of a guard and the guard controls `bb`. */ + pragma[nomagic] + private predicate guardControlledBranchTarget(BasicBlock bb) { + exists(BasicBlock guard | + any(DfInput::Guard g).hasValueBranchEdge(guard, bb, _) and + dominatingEdge(guard, bb) + ) + } + + private BasicBlock getGuardEquivalentImmediateDominator(BasicBlock bb) { + result = bb.getImmediateDominator() and + not guardControlledBranchTarget(bb) + } + + /** + * Holds if the immediately preceding reference to the input to `phi` from + * the block `input` is guard-equivalent with `input` in the sense that the + * set of guards controlling the preceding reference is the same as the set + * of guards controlling `input`. + * + * This is restricted to phi inputs that are actually read. + */ + private predicate phiInputIsGuardEquivalentWithPreviousRef(SsaPhiExt phi, BasicBlock input) { + exists(BasicBlock prev | + phiInputHasRead(phi, input) and + AdjacentSsaRefs::adjacentRefPhi(prev, _, input, phi.getBasicBlock(), phi.getSourceVariable()) and + prev = getGuardEquivalentImmediateDominator*(input) + ) + } + /** * Holds if the input to `phi` from the block `input` might be relevant for * barrier guards as a separately synthesized `TSsaInputNode`. @@ -2095,7 +2130,7 @@ module Make< or DfInput::supportBarrierGuardsOnPhiEdges() and // If the input isn't explicitly read then a guard cannot check it. - exists(DfInput::getARead(getAPhiInputDef(phi, input))) and + phiInputHasRead(phi, input) and ( // The input node is relevant either if it sits directly on a branch // edge for a guard, @@ -2114,15 +2149,19 @@ module Make< // } // // phi-read node for `x` // ``` - exists(BasicBlock prev | - AdjacentSsaRefs::adjacentRefPhi(prev, _, input, phi.getBasicBlock(), - phi.getSourceVariable()) and - prev != input and - exists(DfInput::Guard g, DfInput::GuardValue val | - DfInput::guardDirectlyControlsBlock(g, input, val) and - not DfInput::guardDirectlyControlsBlock(g, prev, val) - ) - ) + not phiInputIsGuardEquivalentWithPreviousRef(phi, input) + // An equivalent, but less performant, way to express this is as follows: + // ``` + // exists(BasicBlock prev | + // AdjacentSsaRefs::adjacentRefPhi(prev, _, input, phi.getBasicBlock(), + // phi.getSourceVariable()) and + // prev != input and + // exists(DfInput::Guard g, DfInput::GuardValue val | + // DfInput::guardDirectlyControlsBlock(g, input, val) and + // not DfInput::guardDirectlyControlsBlock(g, prev, val) + // ) + // ) + // ``` ) } diff --git a/shared/ssa/qlpack.yml b/shared/ssa/qlpack.yml index 30854239413..f755bda3379 100644 --- a/shared/ssa/qlpack.yml +++ b/shared/ssa/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ssa -version: 2.0.15-dev +version: 2.0.16-dev groups: shared library: true dependencies: diff --git a/shared/threat-models/CHANGELOG.md b/shared/threat-models/CHANGELOG.md index 00273047253..dd213e111b4 100644 --- a/shared/threat-models/CHANGELOG.md +++ b/shared/threat-models/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/threat-models/change-notes/released/1.0.39.md b/shared/threat-models/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/threat-models/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/threat-models/codeql-pack.release.yml b/shared/threat-models/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/threat-models/codeql-pack.release.yml +++ b/shared/threat-models/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/threat-models/qlpack.yml b/shared/threat-models/qlpack.yml index 6b972def924..45e4e04f51c 100644 --- a/shared/threat-models/qlpack.yml +++ b/shared/threat-models/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/threat-models -version: 1.0.39-dev +version: 1.0.40-dev library: true groups: shared dataExtensions: diff --git a/shared/tutorial/CHANGELOG.md b/shared/tutorial/CHANGELOG.md index ad2c71497db..1e813c59b63 100644 --- a/shared/tutorial/CHANGELOG.md +++ b/shared/tutorial/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/tutorial/change-notes/released/1.0.39.md b/shared/tutorial/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/tutorial/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/tutorial/codeql-pack.release.yml b/shared/tutorial/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/tutorial/codeql-pack.release.yml +++ b/shared/tutorial/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/tutorial/qlpack.yml b/shared/tutorial/qlpack.yml index a1ea6bd35cf..651844a76ad 100644 --- a/shared/tutorial/qlpack.yml +++ b/shared/tutorial/qlpack.yml @@ -1,7 +1,7 @@ name: codeql/tutorial description: Library for the CodeQL detective tutorials, helping new users learn to write CodeQL queries. -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true warnOnImplicitThis: true diff --git a/shared/typeflow/CHANGELOG.md b/shared/typeflow/CHANGELOG.md index 38e81a0275d..e937ff6cb9e 100644 --- a/shared/typeflow/CHANGELOG.md +++ b/shared/typeflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/typeflow/change-notes/released/1.0.39.md b/shared/typeflow/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/typeflow/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/typeflow/codeql-pack.release.yml b/shared/typeflow/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/typeflow/codeql-pack.release.yml +++ b/shared/typeflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/typeflow/qlpack.yml b/shared/typeflow/qlpack.yml index e2e41e87b79..eb199d36dee 100644 --- a/shared/typeflow/qlpack.yml +++ b/shared/typeflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeflow -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true dependencies: diff --git a/shared/typeinference/CHANGELOG.md b/shared/typeinference/CHANGELOG.md index d5252bfc0c4..7ac497bdb32 100644 --- a/shared/typeinference/CHANGELOG.md +++ b/shared/typeinference/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.20 + +No user-facing changes. + ## 0.0.19 No user-facing changes. diff --git a/shared/typeinference/change-notes/released/0.0.20.md b/shared/typeinference/change-notes/released/0.0.20.md new file mode 100644 index 00000000000..98daf20a59a --- /dev/null +++ b/shared/typeinference/change-notes/released/0.0.20.md @@ -0,0 +1,3 @@ +## 0.0.20 + +No user-facing changes. diff --git a/shared/typeinference/codeql-pack.release.yml b/shared/typeinference/codeql-pack.release.yml index f406319f372..d2e86745bca 100644 --- a/shared/typeinference/codeql-pack.release.yml +++ b/shared/typeinference/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.19 +lastReleaseVersion: 0.0.20 diff --git a/shared/typeinference/qlpack.yml b/shared/typeinference/qlpack.yml index 0a5b99e7f11..1c533ad3863 100644 --- a/shared/typeinference/qlpack.yml +++ b/shared/typeinference/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeinference -version: 0.0.20-dev +version: 0.0.21-dev groups: shared library: true dependencies: diff --git a/shared/typetracking/CHANGELOG.md b/shared/typetracking/CHANGELOG.md index 81415ed396f..7f86f9e8166 100644 --- a/shared/typetracking/CHANGELOG.md +++ b/shared/typetracking/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.23 + +No user-facing changes. + ## 2.0.22 No user-facing changes. diff --git a/shared/typetracking/change-notes/released/2.0.23.md b/shared/typetracking/change-notes/released/2.0.23.md new file mode 100644 index 00000000000..ab6f6f171ed --- /dev/null +++ b/shared/typetracking/change-notes/released/2.0.23.md @@ -0,0 +1,3 @@ +## 2.0.23 + +No user-facing changes. diff --git a/shared/typetracking/codeql-pack.release.yml b/shared/typetracking/codeql-pack.release.yml index 980bdfe195b..1bd7e296a34 100644 --- a/shared/typetracking/codeql-pack.release.yml +++ b/shared/typetracking/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.22 +lastReleaseVersion: 2.0.23 diff --git a/shared/typetracking/qlpack.yml b/shared/typetracking/qlpack.yml index e657f74f636..2a1ef48e92a 100644 --- a/shared/typetracking/qlpack.yml +++ b/shared/typetracking/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typetracking -version: 2.0.23-dev +version: 2.0.24-dev groups: shared library: true dependencies: diff --git a/shared/typos/CHANGELOG.md b/shared/typos/CHANGELOG.md index 6c9dced04a3..c553f4c1f63 100644 --- a/shared/typos/CHANGELOG.md +++ b/shared/typos/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/typos/change-notes/released/1.0.39.md b/shared/typos/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/typos/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/typos/codeql-pack.release.yml b/shared/typos/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/typos/codeql-pack.release.yml +++ b/shared/typos/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/typos/qlpack.yml b/shared/typos/qlpack.yml index 31dfb14955f..6baa76ffa5c 100644 --- a/shared/typos/qlpack.yml +++ b/shared/typos/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typos -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true warnOnImplicitThis: true diff --git a/shared/util/CHANGELOG.md b/shared/util/CHANGELOG.md index 30fd964656d..3578e000170 100644 --- a/shared/util/CHANGELOG.md +++ b/shared/util/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.26 + +No user-facing changes. + ## 2.0.25 No user-facing changes. diff --git a/shared/util/change-notes/released/2.0.26.md b/shared/util/change-notes/released/2.0.26.md new file mode 100644 index 00000000000..9b1fe95f577 --- /dev/null +++ b/shared/util/change-notes/released/2.0.26.md @@ -0,0 +1,3 @@ +## 2.0.26 + +No user-facing changes. diff --git a/shared/util/codeql-pack.release.yml b/shared/util/codeql-pack.release.yml index f54d8620118..63d57bef481 100644 --- a/shared/util/codeql-pack.release.yml +++ b/shared/util/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.25 +lastReleaseVersion: 2.0.26 diff --git a/shared/util/qlpack.yml b/shared/util/qlpack.yml index fed06829e33..db3d6fb7f2d 100644 --- a/shared/util/qlpack.yml +++ b/shared/util/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/util -version: 2.0.26-dev +version: 2.0.27-dev groups: shared library: true dependencies: null diff --git a/shared/xml/CHANGELOG.md b/shared/xml/CHANGELOG.md index 5c7447a15dd..5bb981adb8c 100644 --- a/shared/xml/CHANGELOG.md +++ b/shared/xml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/xml/change-notes/released/1.0.39.md b/shared/xml/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/xml/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/xml/codeql-pack.release.yml b/shared/xml/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/xml/codeql-pack.release.yml +++ b/shared/xml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/xml/qlpack.yml b/shared/xml/qlpack.yml index 079ebe8518c..d31c816dafc 100644 --- a/shared/xml/qlpack.yml +++ b/shared/xml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/xml -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true dependencies: diff --git a/shared/yaml/CHANGELOG.md b/shared/yaml/CHANGELOG.md index 073ffd8edae..dd850460279 100644 --- a/shared/yaml/CHANGELOG.md +++ b/shared/yaml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.39 + +No user-facing changes. + ## 1.0.38 No user-facing changes. diff --git a/shared/yaml/change-notes/released/1.0.39.md b/shared/yaml/change-notes/released/1.0.39.md new file mode 100644 index 00000000000..cf832bc49f9 --- /dev/null +++ b/shared/yaml/change-notes/released/1.0.39.md @@ -0,0 +1,3 @@ +## 1.0.39 + +No user-facing changes. diff --git a/shared/yaml/codeql-pack.release.yml b/shared/yaml/codeql-pack.release.yml index b14e9763a8d..c310c9f1e78 100644 --- a/shared/yaml/codeql-pack.release.yml +++ b/shared/yaml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.38 +lastReleaseVersion: 1.0.39 diff --git a/shared/yaml/qlpack.yml b/shared/yaml/qlpack.yml index 1e60008ca44..d154970377b 100644 --- a/shared/yaml/qlpack.yml +++ b/shared/yaml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/yaml -version: 1.0.39-dev +version: 1.0.40-dev groups: shared library: true warnOnImplicitThis: true diff --git a/swift/ql/lib/CHANGELOG.md b/swift/ql/lib/CHANGELOG.md index da1d658ad02..d1fa9e09fdd 100644 --- a/swift/ql/lib/CHANGELOG.md +++ b/swift/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 6.1.4 + +No user-facing changes. + ## 6.1.3 No user-facing changes. diff --git a/swift/ql/lib/change-notes/released/6.1.4.md b/swift/ql/lib/change-notes/released/6.1.4.md new file mode 100644 index 00000000000..7c4728fafa4 --- /dev/null +++ b/swift/ql/lib/change-notes/released/6.1.4.md @@ -0,0 +1,3 @@ +## 6.1.4 + +No user-facing changes. diff --git a/swift/ql/lib/codeql-pack.release.yml b/swift/ql/lib/codeql-pack.release.yml index e641a874973..7dbbf7fb553 100644 --- a/swift/ql/lib/codeql-pack.release.yml +++ b/swift/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 6.1.3 +lastReleaseVersion: 6.1.4 diff --git a/swift/ql/lib/qlpack.yml b/swift/ql/lib/qlpack.yml index 3e1437148de..77172d624e7 100644 --- a/swift/ql/lib/qlpack.yml +++ b/swift/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-all -version: 6.1.4-dev +version: 6.1.5-dev groups: swift extractor: swift dbscheme: swift.dbscheme diff --git a/swift/ql/src/CHANGELOG.md b/swift/ql/src/CHANGELOG.md index d3fc5577d26..093bfc1c99a 100644 --- a/swift/ql/src/CHANGELOG.md +++ b/swift/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.13 + +No user-facing changes. + ## 1.2.12 No user-facing changes. diff --git a/swift/ql/src/change-notes/released/1.2.13.md b/swift/ql/src/change-notes/released/1.2.13.md new file mode 100644 index 00000000000..09ae7c67ca6 --- /dev/null +++ b/swift/ql/src/change-notes/released/1.2.13.md @@ -0,0 +1,3 @@ +## 1.2.13 + +No user-facing changes. diff --git a/swift/ql/src/codeql-pack.release.yml b/swift/ql/src/codeql-pack.release.yml index 3f5f457c354..f95a122f916 100644 --- a/swift/ql/src/codeql-pack.release.yml +++ b/swift/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.2.12 +lastReleaseVersion: 1.2.13 diff --git a/swift/ql/src/qlpack.yml b/swift/ql/src/qlpack.yml index 82f916cc3cc..15a1f6308dc 100644 --- a/swift/ql/src/qlpack.yml +++ b/swift/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-queries -version: 1.2.13-dev +version: 1.2.14-dev groups: - swift - queries