Exemplo n.º 1
0
        public override TType Compute(Variables runtime)
        {
            Variables local = Call.InitiateVariables(runtime);

            Call.Func.Run(local);

            ValueTyped <TType> value = local.GetVariable(ProgramBuilder.VariableReturn) as ValueTyped <TType>;

            return(value.Value);
        }
Exemplo n.º 2
0
        public override TType Compute(Variables runtime)
        {
            ValueTyped <TType> value = runtime.GetVariable(Name) as ValueTyped <TType>;

            return(value.Value);
        }