Ejemplo n.º 1
0
        protected internal override bool DoMatch(AstNode other, Match match)
        {
            UsingDeclaration o = other as UsingDeclaration;

            return(o != null && this.Import.DoMatch(o.Import, match));
        }
 public virtual S VisitUsingDeclaration(UsingDeclaration usingDeclaration, T data)
 {
     return(VisitChildren(usingDeclaration, data));
 }