S IAstVisitor <T, S> .VisitCSharpTokenNode(CppTokenNode token, T data)
        {
            var handler = CSharpTokenNodeVisited;

            if (handler != null)
            {
                handler(token, data);
            }
            return(VisitChildren(token, data));
        }
示例#2
0
 public virtual S VisitCSharpTokenNode(CppTokenNode token, T data)
 {
     return(VisitChildren(token, data));
 }
示例#3
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            CppTokenNode o = other as CppTokenNode;

            return(o != null && !o.IsNull && !(o is CppModifierToken));
        }