コード例 #1
0
ファイル: FixedStatement.cs プロジェクト: tris2481/ILSpy
        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));
        }
コード例 #2
0
 public virtual S VisitFixedStatement(FixedStatement fixedStatement, T data)
 {
     return(VisitChildren(fixedStatement, data));
 }
 void IAstVisitor.VisitFixedStatement(FixedStatement fixedStatement)
 {
     Visit(EnterFixedStatement, LeaveFixedStatement, fixedStatement);
 }
コード例 #4
0
 public virtual S VisitFixedStatement(FixedStatement fixedStatement, T data)
 {
     throw new NotImplementedException();
 }