"tests/pipelines/lumina/__init__.py" did not exist on "6ab2dd18a4d17d90c92409886ac22a02acf25d7d"
Commit 23c55bda authored by Paul's avatar Paul
Browse files

Skip builtins and loads

parent f1d1b612
......@@ -448,7 +448,7 @@ argument program::eval(std::unordered_map<std::string, argument> params) const
this->debug_print(ins);
auto result = check_context(f);
ctx.finish();
if(trace_level > 1)
if(trace_level > 1 and ins->name().front() != '@' and ins->name() != "load")
std::cout << "Ouput: " << result << std::endl;
return result;
});
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment