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

parser/checker: pub: struct fields

This commit is contained in:
Alexander Medvednikov
2020-05-09 15:16:48 +02:00
parent 809676a856
commit c64f8b0d1f
17 changed files with 87 additions and 59 deletions

View File

@ -4,10 +4,10 @@
module strings
pub struct Builder {
mut:
// TODO
pub mut:
buf []byte
str_calls int
pub mut:
len int
initial_size int = 1
}