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)); }
public override T VisitRestrictStatement(RestrictStatement node) { throw new NotImplementedException(); }