summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/rescue.txt
diff options
context:
space:
mode:
authorJemma Issroff <jemmaissroff@gmail.com>2023-12-04 16:40:59 -0500
committerJemma Issroff <jemmaissroff@gmail.com>2023-12-06 09:55:48 -0500
commit018dbf18d50b34a3ea564bfe0264a423de4b33bb (patch)
tree366e75c39f9061d853830bb602276b1f893db1ce /test/prism/snapshots/rescue.txt
parentda1519b223e1accfcef1c831f9fdc6421724ea7c (diff)
[ruby/prism] Add locals_body_index to DefNode, BlockNode, LambdaNode
The locals_body_index gives the index in the locals array where the locals from the body start. This allows compilers to easily index past the parameters in the locals array. https://github.com/ruby/prism/commit/5d4627b890
Diffstat (limited to 'test/prism/snapshots/rescue.txt')
-rw-r--r--test/prism/snapshots/rescue.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/prism/snapshots/rescue.txt b/test/prism/snapshots/rescue.txt
index 4537d911cf..5a79cd7aa4 100644
--- a/test/prism/snapshots/rescue.txt
+++ b/test/prism/snapshots/rescue.txt
@@ -162,6 +162,7 @@
│ ├── block:
│ │ @ BlockNode (location: (18,4)-(20,3))
│ │ ├── locals: [:x]
+ │ │ ├── locals_body_index: 1
│ │ ├── parameters:
│ │ │ @ BlockParametersNode (location: (18,7)-(18,10))
│ │ │ ├── parameters:
@@ -312,6 +313,7 @@
│ │ └── rescue_expression:
│ │ @ NilNode (location: (26,41)-(26,44))
│ ├── locals: []
+ │ ├── locals_body_index: 0
│ ├── def_keyword_loc: (26,0)-(26,3) = "def"
│ ├── operator_loc: ∅
│ ├── lparen_loc: ∅
@@ -377,6 +379,7 @@
│ ├── ensure_clause: ∅
│ └── end_keyword_loc: (31,0)-(31,3) = "end"
├── locals: []
+ ├── locals_body_index: 0
├── def_keyword_loc: (28,0)-(28,3) = "def"
├── operator_loc: ∅
├── lparen_loc: ∅