mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
array: remove temporary repeat2()
This commit is contained in:
@ -132,7 +132,7 @@ fn (p mut Parser) is_sig() bool {
|
||||
fn new_fn(mod string, is_public bool) Fn {
|
||||
return Fn {
|
||||
mod: mod
|
||||
local_vars: [Var{}].repeat2(MaxLocalVars)
|
||||
local_vars: [Var{}].repeat(MaxLocalVars)
|
||||
is_public: is_public
|
||||
}
|
||||
}
|
||||
|
@ -125,7 +125,7 @@ fn build_keys() map[string]int {
|
||||
|
||||
// TODO remove once we have `enum Token { name('name') if('if') ... }`
|
||||
fn build_token_str() []string {
|
||||
mut s := [''].repeat2(NrTokens)
|
||||
mut s := [''].repeat(NrTokens)
|
||||
s[Token.keyword_beg] = ''
|
||||
s[Token.keyword_end] = ''
|
||||
s[Token.eof] = 'eof'
|
||||
|
Reference in New Issue
Block a user