Esempio 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));
        }