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

test the recent type alias string; print vweb templates in verbose mode

This commit is contained in:
Alexander Medvednikov
2019-12-16 18:58:56 +03:00
parent 8c0e0f8ab7
commit bcde155da7
3 changed files with 35 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ pub mut:
fn_cnt int //atomic
obfuscate bool
varg_access []VargAccess
//enum_vals map[string][]string
//names []Name
}
@@ -230,9 +231,18 @@ fn is_primitive_type(typ string) bool {
return is_number_type(typ) || typ == 'string'
}
/*
fn (t mut Table) register_enum_val(typ, val string) {
if t.enum_vals.len == 0 {
t.enum_vals = [val]
}
}
*/
fn new_table(obfuscate bool) &Table {
mut t := &Table {
obfuscate: obfuscate
//enum_vals: map[string][]string
}
t.register_builtin('int')
t.register_builtin('size_t')