File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ fn get_all_commands() []Command {
91
91
rmfile: 'examples/hello_world'
92
92
}
93
93
res << Command{
94
- line: '${vexe} -W -Wimpure-v run examples/hello_world.v'
94
+ line: '${vexe} -W -Wimpure-v examples/hello_world.v'
95
95
okmsg: 'V can compile hello world with the stricter `-W -Wimpure-v` mode .'
96
96
rmfile: 'examples/hello_world'
97
97
}
Original file line number Diff line number Diff line change @@ -131,6 +131,11 @@ pub fn (mut b Builder) middle_stages() ! {
131
131
132
132
b.checker.check_files (b.parsed_files)
133
133
util.timing_measure ('CHECK' )
134
+ $if trace_type_symbols_after_checker ? {
135
+ for t, s in b.table.type_symbols {
136
+ println ('> t: ${t:10} | s.mod: ${s.mod:-40} | s.name: ${'${s.name#[..30]} ' :- 30 } | s.is_builtin: ${s.is_builtin:6 } | s.is_pub: ${s.is_pub}')
137
+ }
138
+ }
134
139
if b.pref.dump_defines != '' {
135
140
b.dump_defines()
136
141
}
You can’t perform that action at this time.
0 commit comments