Boo.Lang.Compiler.TypeSystem.InternalEnum.Resolve C# (CSharp) Method

Resolve() public method

public Resolve ( List targetList, string name, EntityType flags ) : bool
targetList List
name string
flags EntityType
return bool
        public override bool Resolve(List targetList, string name, EntityType flags)
        {
            bool found = base.Resolve(targetList, name, flags);
            if (!found)
            {
                if (BaseType.Resolve(targetList, name, flags))
                {
                    found = true;
                }
            }
            return found;
        }