Bike.Interpreter.Builtin.BikeObject.FindScopeFor C# (CSharp) Метод

FindScopeFor() приватный Метод

private FindScopeFor ( string name ) : BikeObject
name string
Результат BikeObject
        internal BikeObject FindScopeFor(string name)
        {
            var scope = this;
            while (scope != null && !scope.Members.ContainsKey(name))
                scope = scope.Prototype;
            return scope;
        }