mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
array: make left/right/slice private
This commit is contained in:
parent
b38283dcf1
commit
7e4799334f
5 changed files with 12 additions and 12 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue