Skip to content
Snippets Groups Projects
Commit ca79a51f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix unreachable code coverage

parent 0c4d733c
Branches
Tags
1 merge request!54Feature/language coverage
......@@ -64,7 +64,9 @@ class BuiltinFunctionProcessor : public INodeProcessor
}
if (SignalManager::pauseOnError()) {
// LCOV_EXCL_START
return m_function_expression_processor->execute(context_exec_policy);
// LCOV_EXCL_STOP
} else {
try {
return m_function_expression_processor->execute(context_exec_policy);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment