summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/seattlerb/if_elsif.txt
blob: 034850158c29fb6fe83e362142c7ab880b63ed82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@ ProgramNode (location: (1,0)-(1,18))
├── locals: []
└── statements:
    @ StatementsNode (location: (1,0)-(1,18))
    └── body: (length: 1)
        └── @ IfNode (location: (1,0)-(1,18))
            ├── if_keyword_loc: (1,0)-(1,2) = "if"
            ├── predicate:
            │   @ IntegerNode (location: (1,3)-(1,4))
            │   ├── flags: decimal
            │   └── value: 1
            ├── then_keyword_loc: ∅
            ├── statements: ∅
            ├── consequent:
            │   @ IfNode (location: (1,6)-(1,18))
            │   ├── if_keyword_loc: (1,6)-(1,11) = "elsif"
            │   ├── predicate:
            │   │   @ IntegerNode (location: (1,12)-(1,13))
            │   │   ├── flags: decimal
            │   │   └── value: 2
            │   ├── then_keyword_loc: ∅
            │   ├── statements: ∅
            │   ├── consequent: ∅
            │   └── end_keyword_loc: (1,15)-(1,18) = "end"
            └── end_keyword_loc: (1,15)-(1,18) = "end"