Example #1
0
        protected override object OnCalc(IList <object> operands, object[] args)
        {
            string file       = operands[0] as string;
            string className  = operands[1] as string;
            string methodName = operands[2] as string;
            uint   pos        = CastTo <uint>(operands[3]);
            int    index      = CastTo <int>(operands[4]);

            ScriptProcessor.WriteLoadLocal(file, className, methodName, pos, index);
            return(0);
        }
Example #2
0
        protected override CalculatorValue OnCalc(IList <CalculatorValue> operands)
        {
            string file       = operands[0].AsString;
            string className  = operands[1].AsString;
            string methodName = operands[2].AsString;
            uint   pos        = CastTo <uint>(operands[3]);
            int    index      = CastTo <int>(operands[4]);

            ScriptProcessor.WriteLoadLocal(file, className, methodName, pos, index);
            return(0);
        }