summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/seattlerb/parse_if_not_canonical.txt
blob: 763bd24efdee958d64068aff8e6a579c5f140617 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@ ProgramNode (location: (1,0)-(2,3))
├── locals: []
└── statements:
    @ StatementsNode (location: (1,0)-(2,3))
    └── body: (length: 1)
        └── @ IfNode (location: (1,0)-(2,3))
            ├── if_keyword_loc: (1,0)-(1,2) = "if"
            ├── predicate:
            │   @ CallNode (location: (1,3)-(1,15))
            │   ├── flags: ∅
            │   ├── receiver:
            │   │   @ CallNode (location: (1,7)-(1,15))
            │   │   ├── flags: ∅
            │   │   ├── receiver:
            │   │   │   @ CallNode (location: (1,7)-(1,10))
            │   │   │   ├── flags: variable_call, ignore_visibility
            │   │   │   ├── receiver: ∅
            │   │   │   ├── call_operator_loc: ∅
            │   │   │   ├── name: :var
            │   │   │   ├── message_loc: (1,7)-(1,10) = "var"
            │   │   │   ├── opening_loc: ∅
            │   │   │   ├── arguments: ∅
            │   │   │   ├── closing_loc: ∅
            │   │   │   └── block: ∅
            │   │   ├── call_operator_loc: (1,10)-(1,11) = "."
            │   │   ├── name: :nil?
            │   │   ├── message_loc: (1,11)-(1,15) = "nil?"
            │   │   ├── opening_loc: ∅
            │   │   ├── arguments: ∅
            │   │   ├── closing_loc: ∅
            │   │   └── block: ∅
            │   ├── call_operator_loc: ∅
            │   ├── name: :!
            │   ├── message_loc: (1,3)-(1,6) = "not"
            │   ├── opening_loc: ∅
            │   ├── arguments: ∅
            │   ├── closing_loc: ∅
            │   └── block: ∅
            ├── then_keyword_loc: (1,16)-(1,20) = "then"
            ├── statements:
            │   @ StatementsNode (location: (1,21)-(1,26))
            │   └── body: (length: 1)
            │       └── @ StringNode (location: (1,21)-(1,26))
            │           ├── flags: ∅
            │           ├── opening_loc: (1,21)-(1,22) = "'"
            │           ├── content_loc: (1,22)-(1,25) = "foo"
            │           ├── closing_loc: (1,25)-(1,26) = "'"
            │           └── unescaped: "foo"
            ├── consequent:
            │   @ ElseNode (location: (1,27)-(2,3))
            │   ├── else_keyword_loc: (1,27)-(1,31) = "else"
            │   ├── statements:
            │   │   @ StatementsNode (location: (1,32)-(1,37))
            │   │   └── body: (length: 1)
            │   │       └── @ StringNode (location: (1,32)-(1,37))
            │   │           ├── flags: ∅
            │   │           ├── opening_loc: (1,32)-(1,33) = "'"
            │   │           ├── content_loc: (1,33)-(1,36) = "bar"
            │   │           ├── closing_loc: (1,36)-(1,37) = "'"
            │   │           └── unescaped: "bar"
            │   └── end_keyword_loc: (2,0)-(2,3) = "end"
            └── end_keyword_loc: (2,0)-(2,3) = "end"