public Constant getSuppliedFunction(NumericSuppliedFunction fn) { string functionName = functionNames[fn]; FunctionType type = functionTypes[fn]; return(Parser.module.GetOrInsertFunction(functionName, type)); }
public NumericFunctionRef(NumericSuppliedFunction _suppliedFunction, NumericExpression arg) { numericSuppliedFunctionName = _suppliedFunction; argument = arg; refType = FunctionRefType.NUMERICSUPPLIEDFUNCTION; }
public NumericFunctionRef(NumericSuppliedFunction _suppliedFunction) { numericSuppliedFunctionName = _suppliedFunction; refType = FunctionRefType.NUMERICSUPPLIEDFUNCTION; }