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
rule test_1
└─ condition
└─ eq
├─ field access
│ ├─ <expr>[<index>]
│ │ ├─ <expr>
│ │ │ └─ field access
│ │ │ ├─ foo
│ │ │ └─ bar
│ │ └─ <index>
│ │ └─ 0
│ └─ baz
└─ baz()
└─ <object>
└─ field access
├─ foo
└─ bar
rule test_2
└─ condition
└─ field access
├─ bar(<arg0>, <arg1>)
│ ├─ <object>
│ │ └─ foo
│ ├─ <arg0>
│ │ └─ 1
│ └─ <arg1>
│ └─ 2
└─ baz
rule test_3
└─ condition
└─ foo(<arg0>, <arg1>, <arg2>, <arg3>)
├─ <arg0>
│ └─ "a"
├─ <arg1>
│ └─ "b"
├─ <arg2>
│ └─ 2.0
└─ <arg3>
└─ true