[isoltest] Add support for builtin functions.

This commit is contained in:
Alexander Arlt
2021-03-04 08:49:59 -05:00
parent be5647735e
commit 94895822d2
6 changed files with 75 additions and 18 deletions
@@ -45,7 +45,7 @@ namespace
vector<FunctionCall> parse(string const& _source)
{
istringstream stream{_source, ios_base::out};
TestFileParser parser{stream};
TestFileParser parser{stream, {}};
return parser.parseFunctionCalls(0);
}