@@ -273,17 +273,15 @@ a copy of the compiler rather than replacing it with `v self`.
273
273
274
274
| Flag | Usage |
275
275
| -----------------------------------| ---------------------------------------------------------------------------------------------------------------------|
276
- | ` debugscanner ` | Prints debug information during the scanning phase |
277
276
| ` debug_codegen ` | Prints automatically generated V code during the scanning phase |
278
277
| ` debug_interface_table ` | Prints generated interfaces during C generation |
279
278
| ` debug_interface_type_implements ` | Prints debug information when checking that a type implements in interface |
280
279
| ` print_vweb_template_expansions ` | Prints vweb compiled HTML files |
281
280
| ` time_checking ` | Prints the time spent checking files and other related information |
282
281
| ` time_parsing ` | Prints the time spent parsing files and other related information |
283
282
| | |
283
+ | ` trace_scanner ` | Prints details about the recognized tokens. * Very* verbose. Use ` ./vnew -no-builtin -check-syntax file.v ` later. |
284
284
| ` trace_parser ` | Prints details about parsed statements and expressions. Very verbose. Use it for panics in the parser. |
285
- | ` trace_ccoptions ` | Prints options passed down to the C compiler |
286
- | | |
287
285
| ` trace_checker ` | Prints details about the statements being checked. Very verbose. Use it for panics in the checker. |
288
286
| | |
289
287
| ` trace_gen ` | Prints all the strings written to the generated C file. Very verbose. |
@@ -295,7 +293,10 @@ a copy of the compiler rather than replacing it with `v self`.
295
293
| ` trace_autofree ` | Prints details about how/when -autofree puts free() calls |
296
294
| ` trace_autostr ` | Prints details about ` .str() ` method auto-generated by the compiler during C generation |
297
295
| | |
296
+ | ` trace_ccoptions ` | Prints options passed down to the C compiler |
297
+ | | |
298
298
| ` trace_thirdparty_obj_files ` | Prints details about built thirdparty obj files |
299
299
| ` trace_usecache ` | Prints details when -usecache is used |
300
300
| ` trace_embed_file ` | Prints details when $embed_file is used |
301
301
| ` embed_only_metadata ` | Embed only the metadata for the file(s) with ` $embed_file('somefile') ` ; faster; for development, * not* distribution |
302
+ | -----------------------------------| ---------------------------------------------------------------------------------------------------------------------|
0 commit comments