fmt: fix optional formatting

pull/4553/head
Kris Cherven 2020-04-22 14:12:58 -04:00 committed by GitHub
parent fecf4ddf65
commit faed178cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 5 deletions

View File

@ -0,0 +1,5 @@
pub fn test() ?&SomeType {
}
struct SomeType {
}

View File

@ -631,13 +631,13 @@ pub fn (table &Table) type_to_str(t Type) string {
res = '[]' + res
}
}
if type_is(t, .optional) {
res = '?' + res
}
nr_muls := type_nr_muls(t)
if nr_muls > 0 {
res = strings.repeat(`&`, nr_muls) + res
}
if type_is(t, .optional) {
res = '?' + res
}
/*
if res.starts_with(cur_mod +'.') {
res = res[cur_mod.len+1.. ]