Boo.Lang.Compiler.TypeSystem.GlobalNamespace.Resolve C# (CSharp) Méthode

Resolve() public méthode

public Resolve ( List targetList, string name, EntityType flags ) : bool
targetList List
name string
flags EntityType
Résultat bool
        public override bool Resolve(List targetList, string name, EntityType flags)
        {
            if (!base.Resolve(targetList, name, flags))
            {
                return _empty.Resolve(targetList, name, flags);
            }
            return true;
        }