Skip to content
Snippets Groups Projects

Feature/reduced verbosity

1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -74,6 +74,8 @@ parser(const std::string& filename)
ASTNodeEmptyBlockCleaner{*root_node};
ASTNodeExpressionBuilder{*root_node};
std::cout << "-------------------------------------------------------\n";
std::cout << rang::style::bold << "Executing AST..." << rang::style::reset << '\n';
ExecutionPolicy exec_all;
root_node->execute(exec_all);
@@ -102,5 +104,4 @@ parser(const std::string& filename)
read_input input(filename);
parse_and_execute(input);
}
std::cout << "Executed successfuly: " << filename << '\n';
}
Loading