summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/whitequark/var_op_asgn.txt
blob: f423a62dee9c8b42b2da6deddb86dec520943acc (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
@ ProgramNode (location: (1,0)-(7,23))
├── locals: [:a]
└── statements:
    @ StatementsNode (location: (1,0)-(7,23))
    └── body: (length: 4)
        ├── @ ClassVariableOperatorWriteNode (location: (1,0)-(1,11))
        │   ├── name: :@@var
        │   ├── name_loc: (1,0)-(1,5) = "@@var"
        │   ├── operator_loc: (1,6)-(1,8) = "|="
        │   ├── value:
        │   │   @ IntegerNode (location: (1,9)-(1,11))
        │   │   ├── flags: decimal
        │   │   └── value: 10
        │   └── operator: :|
        ├── @ InstanceVariableOperatorWriteNode (location: (3,0)-(3,7))
        │   ├── name: :@a
        │   ├── name_loc: (3,0)-(3,2) = "@a"
        │   ├── operator_loc: (3,3)-(3,5) = "|="
        │   ├── value:
        │   │   @ IntegerNode (location: (3,6)-(3,7))
        │   │   ├── flags: decimal
        │   │   └── value: 1
        │   └── operator: :|
        ├── @ LocalVariableOperatorWriteNode (location: (5,0)-(5,6))
        │   ├── name_loc: (5,0)-(5,1) = "a"
        │   ├── operator_loc: (5,2)-(5,4) = "+="
        │   ├── value:
        │   │   @ IntegerNode (location: (5,5)-(5,6))
        │   │   ├── flags: decimal
        │   │   └── value: 1
        │   ├── name: :a
        │   ├── operator: :+
        │   └── depth: 0
        └── @ DefNode (location: (7,0)-(7,23))
            ├── name: :a
            ├── name_loc: (7,4)-(7,5) = "a"
            ├── receiver: ∅
            ├── parameters: ∅
            ├── body:
            │   @ StatementsNode (location: (7,7)-(7,18))
            │   └── body: (length: 1)
            │       └── @ ClassVariableOperatorWriteNode (location: (7,7)-(7,18))
            │           ├── name: :@@var
            │           ├── name_loc: (7,7)-(7,12) = "@@var"
            │           ├── operator_loc: (7,13)-(7,15) = "|="
            │           ├── value:
            │           │   @ IntegerNode (location: (7,16)-(7,18))
            │           │   ├── flags: decimal
            │           │   └── value: 10
            │           └── operator: :|
            ├── locals: []
            ├── def_keyword_loc: (7,0)-(7,3) = "def"
            ├── operator_loc: ∅
            ├── lparen_loc: ∅
            ├── rparen_loc: ∅
            ├── equal_loc: ∅
            └── end_keyword_loc: (7,20)-(7,23) = "end"