unix/main: Allow to print the parse tree in coverage build.

Passing -v -v -v on the command line of the coverage build will now print
the parse tree (as well as other things at this verbosity level).
This commit is contained in:
Damien George 2016-12-22 10:56:11 +11:00
parent c305ae3243
commit ebb8413178
1 changed files with 8 additions and 5 deletions

View File

@ -113,11 +113,14 @@ STATIC int execute_from_lexer(mp_lexer_t *lex, mp_parse_input_kind_t input_kind,
mp_parse_tree_t parse_tree = mp_parse(lex, input_kind);
/*
printf("----------------\n");
mp_parse_node_print(parse_tree.root, 0);
printf("----------------\n");
*/
#if defined(MICROPY_UNIX_COVERAGE)
// allow to print the parse tree in the coverage build
if (mp_verbose_flag >= 3) {
printf("----------------\n");
mp_parse_node_print(parse_tree.root, 0);
printf("----------------\n");
}
#endif
mp_obj_t module_fun = mp_compile(&parse_tree, source_name, emit_opt, is_repl);