checker: fix error position in `fn f() int { return 1,2 }`
parent
1fcc248d2e
commit
565561e0bd
|
@ -91,7 +91,9 @@ pub fn (mut c Checker) return_stmt(mut node ast.Return) {
|
||||||
}
|
}
|
||||||
if expected_types.len > 0 && expected_types.len != got_types.len {
|
if expected_types.len > 0 && expected_types.len != got_types.len {
|
||||||
arg := if expected_types.len == 1 { 'argument' } else { 'arguments' }
|
arg := if expected_types.len == 1 { 'argument' } else { 'arguments' }
|
||||||
c.error('expected $expected_types.len $arg, but got $got_types.len', node.pos)
|
midx := imax(0, imin(expected_types.len, expr_idxs.len - 1))
|
||||||
|
mismatch_pos := node.exprs[expr_idxs[midx]].pos()
|
||||||
|
c.error('expected $expected_types.len $arg, but got $got_types.len', mismatch_pos)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
for i, exp_type in expected_types {
|
for i, exp_type in expected_types {
|
||||||
|
@ -330,3 +332,11 @@ fn is_noreturn_callexpr(expr ast.Expr) bool {
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn imin(a int, b int) int {
|
||||||
|
return if a < b { a } else { b }
|
||||||
|
}
|
||||||
|
|
||||||
|
fn imax(a int, b int) int {
|
||||||
|
return if a < b { b } else { a }
|
||||||
|
}
|
||||||
|
|
|
@ -4,31 +4,121 @@ vlib/v/checker/tests/return_count_mismatch.vv:2:9: error: unexpected argument, c
|
||||||
| ^
|
| ^
|
||||||
3 | }
|
3 | }
|
||||||
4 |
|
4 |
|
||||||
vlib/v/checker/tests/return_count_mismatch.vv:7:2: error: expected `int` argument
|
vlib/v/checker/tests/return_count_mismatch.vv:6:2: error: expected `int` argument
|
||||||
5 | fn f() int
|
4 |
|
||||||
6 | {
|
5 | fn f() int {
|
||||||
7 | return
|
6 | return
|
||||||
| ~~~~~~
|
| ~~~~~~
|
||||||
8 | }
|
7 | }
|
||||||
9 |
|
8 |
|
||||||
vlib/v/checker/tests/return_count_mismatch.vv:12:2: error: expected `(int, string)` arguments
|
vlib/v/checker/tests/return_count_mismatch.vv:10:2: error: expected `(int, string)` arguments
|
||||||
10 | fn g() (int, string)
|
8 |
|
||||||
11 | {
|
9 | fn g() (int, string) {
|
||||||
12 | return
|
10 | return
|
||||||
| ~~~~~~
|
| ~~~~~~
|
||||||
13 | }
|
11 | }
|
||||||
14 |
|
12 |
|
||||||
vlib/v/checker/tests/return_count_mismatch.vv:17:2: error: expected 1 argument, but got 2
|
vlib/v/checker/tests/return_count_mismatch.vv:14:12: error: expected 1 argument, but got 2
|
||||||
15 | fn ff() int
|
12 |
|
||||||
16 | {
|
13 | fn ff() int {
|
||||||
17 | return 2, ''
|
14 | return 2, ''
|
||||||
| ~~~~~~~~~~~~
|
| ~~
|
||||||
18 | }
|
15 | }
|
||||||
19 |
|
16 |
|
||||||
vlib/v/checker/tests/return_count_mismatch.vv:22:2: error: expected 2 arguments, but got 1
|
vlib/v/checker/tests/return_count_mismatch.vv:18:9: error: expected 2 arguments, but got 1
|
||||||
20 | fn gg() (int, string)
|
16 |
|
||||||
21 | {
|
17 | fn gg() (int, string) {
|
||||||
22 | return 3
|
18 | return 3
|
||||||
| ~~~~~~~~
|
| ^
|
||||||
|
19 | }
|
||||||
|
20 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:22:9: error: unexpected argument, current function does not return anything
|
||||||
|
20 |
|
||||||
|
21 | fn test0_1() {
|
||||||
|
22 | return 1
|
||||||
|
| ^
|
||||||
23 | }
|
23 | }
|
||||||
24 |
|
24 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:26:9: error: unexpected argument, current function does not return anything
|
||||||
|
24 |
|
||||||
|
25 | fn test0_2() {
|
||||||
|
26 | return 1, 2
|
||||||
|
| ^
|
||||||
|
27 | }
|
||||||
|
28 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:30:9: error: unexpected argument, current function does not return anything
|
||||||
|
28 |
|
||||||
|
29 | fn test0_3() {
|
||||||
|
30 | return 1, 2, 3
|
||||||
|
| ^
|
||||||
|
31 | }
|
||||||
|
32 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:34:9: error: unexpected argument, current function does not return anything
|
||||||
|
32 |
|
||||||
|
33 | fn test0_4() {
|
||||||
|
34 | return 1, 2, 3, 4
|
||||||
|
| ^
|
||||||
|
35 | }
|
||||||
|
36 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:44:12: error: expected 1 argument, but got 2
|
||||||
|
42 |
|
||||||
|
43 | fn test1_2() int {
|
||||||
|
44 | return 1, 2
|
||||||
|
| ^
|
||||||
|
45 | }
|
||||||
|
46 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:48:12: error: expected 1 argument, but got 3
|
||||||
|
46 |
|
||||||
|
47 | fn test1_3() int {
|
||||||
|
48 | return 1, 2, 3
|
||||||
|
| ^
|
||||||
|
49 | }
|
||||||
|
50 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:52:12: error: expected 1 argument, but got 4
|
||||||
|
50 |
|
||||||
|
51 | fn test1_4() int {
|
||||||
|
52 | return 1, 2, 3, 4
|
||||||
|
| ^
|
||||||
|
53 | }
|
||||||
|
54 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:58:9: error: expected 2 arguments, but got 1
|
||||||
|
56 |
|
||||||
|
57 | fn test2_1() (int, int) {
|
||||||
|
58 | return 1
|
||||||
|
| ^
|
||||||
|
59 | }
|
||||||
|
60 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:66:15: error: expected 2 arguments, but got 3
|
||||||
|
64 |
|
||||||
|
65 | fn test2_3() (int, int) {
|
||||||
|
66 | return 1, 2, 3
|
||||||
|
| ^
|
||||||
|
67 | }
|
||||||
|
68 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:70:15: error: expected 2 arguments, but got 4
|
||||||
|
68 |
|
||||||
|
69 | fn test2_4() (int, int) {
|
||||||
|
70 | return 1, 2, 3, 4
|
||||||
|
| ^
|
||||||
|
71 | }
|
||||||
|
72 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:76:9: error: expected 3 arguments, but got 1
|
||||||
|
74 |
|
||||||
|
75 | fn test3_1() (int, int, int) {
|
||||||
|
76 | return 1
|
||||||
|
| ^
|
||||||
|
77 | }
|
||||||
|
78 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:80:12: error: expected 3 arguments, but got 2
|
||||||
|
78 |
|
||||||
|
79 | fn test3_2() (int, int, int) {
|
||||||
|
80 | return 1, 2
|
||||||
|
| ^
|
||||||
|
81 | }
|
||||||
|
82 |
|
||||||
|
vlib/v/checker/tests/return_count_mismatch.vv:88:18: error: expected 3 arguments, but got 4
|
||||||
|
86 |
|
||||||
|
87 | fn test3_4() (int, int, int) {
|
||||||
|
88 | return 1, 2, 3, 4
|
||||||
|
| ^
|
||||||
|
89 | }
|
||||||
|
|
|
@ -2,23 +2,88 @@ fn v() {
|
||||||
return 3
|
return 3
|
||||||
}
|
}
|
||||||
|
|
||||||
fn f() int
|
fn f() int {
|
||||||
{
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
fn g() (int, string)
|
fn g() (int, string) {
|
||||||
{
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ff() int
|
fn ff() int {
|
||||||
{
|
|
||||||
return 2, ''
|
return 2, ''
|
||||||
}
|
}
|
||||||
|
|
||||||
fn gg() (int, string)
|
fn gg() (int, string) {
|
||||||
{
|
|
||||||
return 3
|
return 3
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn test0_1() {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test0_2() {
|
||||||
|
return 1, 2
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test0_3() {
|
||||||
|
return 1, 2, 3
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test0_4() {
|
||||||
|
return 1, 2, 3, 4
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
|
||||||
|
fn test1_1() int {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test1_2() int {
|
||||||
|
return 1, 2
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test1_3() int {
|
||||||
|
return 1, 2, 3
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test1_4() int {
|
||||||
|
return 1, 2, 3, 4
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
|
||||||
|
fn test2_1() (int, int) {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test2_2() (int, int) {
|
||||||
|
return 1, 2
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test2_3() (int, int) {
|
||||||
|
return 1, 2, 3
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test2_4() (int, int) {
|
||||||
|
return 1, 2, 3, 4
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
|
||||||
|
fn test3_1() (int, int, int) {
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test3_2() (int, int, int) {
|
||||||
|
return 1, 2
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test3_3() (int, int, int) {
|
||||||
|
return 1, 2, 3
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test3_4() (int, int, int) {
|
||||||
|
return 1, 2, 3, 4
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue