all: change fixed array init from `[1,2,3]!!` to `[1,2,3]!` (#8068)

pull/8077/head
yuyi 2021-01-13 10:28:53 +08:00 committed by GitHub
parent 71d3d4c879
commit 03a0534483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 15 deletions

View File

@ -1,6 +1,6 @@
vlib/v/checker/tests/cannot_assign_array.vv:9:11: error: cannot assign to `ctx.vb`: expected `string`, not `[8]f64`
7 | mut ctx := Context{}
8 | x := 2.32
9 | ctx.vb = [1.1, x, 3.3, 4.4, 5.0, 6.0, 7.0, 8.9]!!
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 | ctx.vb = [1.1, x, 3.3, 4.4, 5.0, 6.0, 7.0, 8.9]!
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 | }

View File

@ -6,5 +6,5 @@ struct Context {
fn main() {
mut ctx := Context{}
x := 2.32
ctx.vb = [1.1, x, 3.3, 4.4, 5.0, 6.0, 7.0, 8.9]!!
ctx.vb = [1.1, x, 3.3, 4.4, 5.0, 6.0, 7.0, 8.9]!
}

View File

@ -3,17 +3,17 @@ vlib/v/checker/tests/fn_args.vv:6:5: error: cannot use `&int` as `byte` in argum
5 | v := 4
6 | ptr(&v)
| ~~
7 | arr([5]!!)
7 | arr([5]!)
8 | fun(fn(i &int){})
vlib/v/checker/tests/fn_args.vv:7:5: error: cannot use `[1]int` as `[]int` in argument 1 to `arr`
5 | v := 4
6 | ptr(&v)
7 | arr([5]!!)
| ~~~~~
7 | arr([5]!)
| ~~~~
8 | fun(fn(i &int){})
vlib/v/checker/tests/fn_args.vv:8:5: error: cannot use `fn (&int)` as `fn (int)` in argument 1 to `fun`
6 | ptr(&v)
7 | arr([5]!!)
7 | arr([5]!)
8 | fun(fn(i &int){})
| ~~~~~~~~~~~~
details: ``'s expected fn argument: `` is NOT a pointer, but the passed fn argument: `i` is a pointer
details: ``'s expected fn argument: `` is NOT a pointer, but the passed fn argument: `i` is a pointer

View File

@ -4,5 +4,5 @@ fn fun(a fn(int)) {}
v := 4
ptr(&v)
arr([5]!!)
arr([5]!)
fun(fn(i &int){})

View File

@ -78,15 +78,16 @@ fn (mut p Parser) array_init() ast.ArrayInit {
last_pos)
}
} else {
if p.tok.kind == .not {
if p.tok.kind == .not && p.tok.line_nr == p.prev_tok.line_nr {
last_pos = p.tok.position()
p.next()
}
if p.tok.kind == .not {
last_pos = p.tok.position()
p.next()
is_fixed = true
has_val = true
p.next()
}
if p.tok.kind == .not && p.tok.line_nr == p.prev_tok.line_nr {
last_pos = p.tok.position()
p.warn_with_pos('use e.g. `[1, 2, 3]!` instead of `[1, 2, 3]!!`', last_pos)
p.next()
}
}
}