summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/seattlerb/block_return.txt
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2023-11-30 20:47:08 -0500
committerKevin Newton <kddnewton@gmail.com>2023-12-01 12:03:09 -0500
commitcdb74d74afb87a0d7048a53aaf12d32516033a3c (patch)
treeb90ab9a755b94de8e55f5f72a6552f3ea4aed3b5 /test/prism/snapshots/seattlerb/block_return.txt
parent90d9c20a0c0df5565d5f95d5e14c58331fa5922f (diff)
[ruby/prism] Change numbered parameters
Previously numbered parameters were a field on blocks and lambdas that indicated the maximum number of numbered parameters in either the block or lambda, respectively. However they also had a parameters field that would always be nil in these cases. This changes it so that we introduce a NumberedParametersNode that goes in place of parameters, which has a single uint8_t maximum field on it. That field contains the maximum numbered parameter in either the block or lambda. As a part of the PR, I'm introducing a new UInt8Field type that can be used on nodes, which is just to make it a little more explicit what the maximum values can be (the maximum is actually 9, since it only goes up to _9). Plus we can do a couple of nice things in serialization like just read a single byte. https://github.com/ruby/prism/commit/2d87303903
Diffstat (limited to 'test/prism/snapshots/seattlerb/block_return.txt')
-rw-r--r--test/prism/snapshots/seattlerb/block_return.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/prism/snapshots/seattlerb/block_return.txt b/test/prism/snapshots/seattlerb/block_return.txt
index c9f9a42f72..858e1a9de4 100644
--- a/test/prism/snapshots/seattlerb/block_return.txt
+++ b/test/prism/snapshots/seattlerb/block_return.txt
@@ -50,7 +50,6 @@
│ │ │ └── closing_loc: (1,22)-(1,23) = "|"
│ │ ├── body: ∅
│ │ ├── opening_loc: (1,15)-(1,17) = "do"
- │ │ ├── closing_loc: (1,24)-(1,27) = "end"
- │ │ └── numbered_parameters: 0
+ │ │ └── closing_loc: (1,24)-(1,27) = "end"
│ └── flags: ∅
└── flags: ∅