Exemplo n.º 1
0
 internal override Found Get(FixtureVariable key)
 {
     if (key == fixture)
     {
         return(new Found(value));
     }
     return(_enclosing.Get(key));
 }
Exemplo n.º 2
0
            internal override Found Get(FixtureVariable fixture)
            {
                var found = _enclosing.Get(fixture);

                if (null != found)
                {
                    return(found);
                }
                return(parent.Get(fixture));
            }