1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

array: rename default to init

This commit is contained in:
Alexander Medvednikov 2020-05-13 22:00:24 +02:00
parent ab7bc760c6
commit 1bf26a35fa
3 changed files with 5 additions and 5 deletions

View File

@ -979,7 +979,7 @@ fn (mut f Fmt) array_init(it ast.ArrayInit) {
f.expr(it.cap_expr)
}
if it.has_default {
f.write('default: ')
f.write('init: ')
f.expr(it.default_expr)
}
f.write('}')
@ -1003,7 +1003,7 @@ fn (mut f Fmt) array_init(it ast.ArrayInit) {
}
}
if it.has_default {
f.write('default: ')
f.write('init: ')
f.expr(it.default_expr)
}
f.write('}')

View File

@ -9,6 +9,6 @@ fn main() {
make_flag('darwin', '-framework', 'Cocoa'),
make_flag('windows', '-l', 'gdi32')
]
x := []int{len: 10, cap: 100, default: 1}
x := []int{len: 10, cap: 100, init: 1}
_ := expected_flags
}

View File

@ -91,12 +91,12 @@ fn (mut p Parser) array_init() ast.ArrayInit {
has_cap = true
cap_expr = p.expr(0)
}
'default' {
'init' {
has_default = true
default_expr = p.expr(0)
}
else {
p.error('wrong field `$key`, expecting `len`, `cap`, or `default`')
p.error('wrong field `$key`, expecting `len`, `cap`, or `init`')
}
}
if p.tok.kind != .rcbr {