Ejemplo n.º 1
0
        private ProtoCore.Mirror.RuntimeMirror InternalGetNodeValue(uint nodeId)
        {
            //ProtoCore.DSASM.Constants.kInvalidIndex tells the UpdateUIDForCodeblock to look for the lastindex for given codeblock
            nodeId = graphCompiler.UpdateUIDForCodeblock(nodeId, ProtoCore.DSASM.Constants.kInvalidIndex);
            Validity.Assert(null != vmState);
            string varname = graphCompiler.GetVarName(nodeId);

            if (string.IsNullOrEmpty(varname))
            {
                return(null);
            }
            return(InternalGetNodeValue(varname));
        }