S IAstVisitor <T, S> .VisitFixedFieldDeclaration(FixedFieldDeclaration fixedFieldDeclaration, T data)
        {
            var handler = FixedFieldDeclarationVisited;

            if (handler != null)
            {
                handler(fixedFieldDeclaration, data);
            }
            return(VisitChildren(fixedFieldDeclaration, data));
        }
Esempio n. 2
0
 public virtual S VisitFixedFieldDeclaration(FixedFieldDeclaration fixedFieldDeclaration, T data)
 {
     return(VisitChildren(fixedFieldDeclaration, data));
 }