mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
v.builder: support -d trace_type_symbols_after_checker
This commit is contained in:
parent
b653d65676
commit
97145ca3a8
2 changed files with 6 additions and 1 deletions
|
@ -131,6 +131,11 @@ pub fn (mut b Builder) middle_stages() ! {
|
|||
|
||||
b.checker.check_files(b.parsed_files)
|
||||
util.timing_measure('CHECK')
|
||||
$if trace_type_symbols_after_checker ? {
|
||||
for t, s in b.table.type_symbols {
|
||||
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}')
|
||||
}
|
||||
}
|
||||
if b.pref.dump_defines != '' {
|
||||
b.dump_defines()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue