Ejemplo n.º 1
0
    public override void ResolveAttribute(SyntaxTreeNode_Leaf leaf)
    {
        leaf.ResolvedSymbol = null;
        if (definition != null)
        {
            definition.ResolveAttributeMember(leaf, this);
        }

        if (leaf.ResolvedSymbol == null)
        {
            base.ResolveAttribute(leaf);
        }
    }