Boo.Lang.Compiler.TypeSystem.AliasedNamespace.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 bool Resolve(List targetList, string name, EntityType flags)
        {
            if (name == _alias && NameResolutionService.IsFlagSet(flags, _subject.EntityType))
            {
                targetList.Add(_subject);
                return true;
            }
            return false;
        }