Boo.Lang.Compiler.TypeSystem.SimpleNamespace.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 virtual bool Resolve(List targetList, string name, EntityType flags)
        {
            IEntity element = (IEntity)_children[name];
            if (null != element && NameResolutionService.IsFlagSet(flags, element.EntityType))
            {
                targetList.Add(element);
                return true;
            }
            return false;
        }