not sure how I missed this

This commit is contained in:
Michael Becker 2025-01-05 23:43:31 -05:00
parent 1cc913521c
commit c988fc5a48

View File

@ -240,6 +240,10 @@ public class ZqParser
else if (tok.Equals("function")) else if (tok.Equals("function"))
{ {
ZqMethod? p = ParseFunction(text, ref i, ref parms); ZqMethod? p = ParseFunction(text, ref i, ref parms);
if (p != null)
{
return p;
}
} }
else if (tok.Equals("}")) else if (tok.Equals("}"))
{ {