Exemplo n.º 1
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            FixedStatement o = other as FixedStatement;

            return(o != null && this.Type.DoMatch(o.Type, match) && this.Variables.DoMatch(o.Variables, match) && this.EmbeddedStatement.DoMatch(o.EmbeddedStatement, match));
        }
Exemplo n.º 2
0
 public virtual S VisitFixedStatement(FixedStatement fixedStatement, T data)
 {
     return(VisitChildren(fixedStatement, data));
 }
 void IAstVisitor.VisitFixedStatement(FixedStatement fixedStatement)
 {
     Visit(EnterFixedStatement, LeaveFixedStatement, fixedStatement);
 }
 public virtual S VisitFixedStatement(FixedStatement fixedStatement, T data)
 {
     throw new NotImplementedException();
 }