protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            UncheckedStatement o = other as UncheckedStatement;

            return(o != null && this.Body.DoMatch(o.Body, match));
        }