Exemplo n.º 1
0
        public override bool IsIVarDefined(uint iid)
        {
            object val = null;

            if (iv_tbl != null && iv_tbl.lookup(iid, out val))
            {
                return(true);
            }
            return(false);
        }
Exemplo n.º 2
0
        internal object LocalARef(uint key)
        {
            if (locals == null)
            {
                return(null);
            }
            object o;

            if (locals.lookup(key, out o))
            {
                return(o);
            }
            return(null);
        }