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

array: make left/right/slice private

This commit is contained in:
Alexander Medvednikov
2019-11-30 12:37:34 +03:00
parent b38283dcf1
commit 7e4799334f
5 changed files with 12 additions and 12 deletions

View File

@ -547,7 +547,7 @@ fn (p mut Parser) parse(pass Pass) {
}
p.genln('')
end := p.cgen.lines.len
lines := p.cgen.lines.slice(start, end)
lines := p.cgen.lines[start..end]
//mut line := p.cgen.fn_main + lines.join('\n')
//line = line.trim_space()
p.cgen.fn_main = p.cgen.fn_main + lines.join('\n')