예제 #1
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            RestrictStatement o = other as RestrictStatement;

            return(o != null && this.Expression.DoMatch(o.Expression, match) && this.EmbeddedStatement.DoMatch(o.EmbeddedStatement, match));
        }
예제 #2
0
 public override T VisitRestrictStatement(RestrictStatement node)
 {
     throw new NotImplementedException();
 }