Beispiel #1
0
 internal ScriptFunction(Processor processor, Invocation invocation, CalculatorParser.FuncDeclarationContext ctx)
 {
     m_ctx           = ctx;
     m_name          = FindName(processor);
     m_paramNameList = ctx.varList() is null ? new List <string>() : ctx.varList().Accept(processor) as List <string>;
     m_invocation    = invocation;
 }