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
use super::super::*;
#[test]
fn _0001() {
let scope = scope!();
accept(
&scope,
StartExpression,
"4*2",
r#"
Mul
├─ Numeric
│ └─ `4`
└─ Numeric
└─ `2`
"#,
false,
);
}
#[test]
fn _0002() {
let scope = scope!();
accept(
&scope,
StartExpression,
"5 * 3",
r#"
Mul
├─ Numeric
│ └─ `5`
└─ Numeric
└─ `3`
"#,
false,
);
}
#[test]
fn _0003() {
let scope = scope!();
accept(
&scope,
StartExpression,
"5 * 3 * 2",
r#"
Mul
├─ Mul
│ ├─ Numeric
│ │ └─ `5`
│ └─ Numeric
│ └─ `3`
└─ Numeric
└─ `2`
"#,
false,
);
}