public override void ExplicitVisit(GlobalFunctionTableReference node)
        {
            string functionName = node.Name.Value;

            if (RestrictedFunctionsList.Contains(functionName, StringComparer.InvariantCultureIgnoreCase))
            {
                FragmentsFound.Add(new FunctionCallFragmentInfo()
                {
                    Fragment     = node,
                    FunctionName = functionName
                });
            }
        }
Exemplo n.º 2
0
 public QsiTableNode VisitGlobalFunctionTableReference(GlobalFunctionTableReference globalFunctionTableReference)
 {
     throw TreeHelper.NotSupportedFeature("Table function");
 }