Beispiel #1
0
 void IAstVisitor.VisitUndocumentedExpression(UndocumentedExpression undocumentedExpression)
 {
     Visit(EnterUndocumentedExpression, LeaveUndocumentedExpression, undocumentedExpression);
 }
 public virtual S VisitUndocumentedExpression(UndocumentedExpression undocumentedExpression, T data)
 {
     return(VisitChildren(undocumentedExpression, data));
 }
Beispiel #3
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            UndocumentedExpression o = other as UndocumentedExpression;

            return(o != null && this.UndocumentedExpressionType == o.UndocumentedExpressionType && this.Arguments.DoMatch(o.Arguments, match));
        }
 public S VisitUndocumentedExpression(UndocumentedExpression undocumentedExpression, T data)
 {
     throw new NotImplementedException();
 }