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

string: make substr private

This commit is contained in:
Alexander Medvednikov
2019-11-30 12:50:27 +03:00
parent 1a0b78ae2f
commit cc2bd0bb68
2 changed files with 2 additions and 3 deletions

View File

@@ -115,7 +115,7 @@ pub fn (p mut Params) put_custom(name string, typ string, data voidptr) {
//HELPERS
fn parse_len(typ, s_tok, e_tok string) int {
len := typ.substr(typ.index(s_tok) + 1, typ.index(e_tok)).int()
len := typ[typ.index(s_tok) + 1 .. typ.index(e_tok)].int()
//t := typ.substr(typ.index(e_tok) + 1, typ.len)
return len
}