Microsoft.Zing.Partitioner.VisitAttributedStatement C# (CSharp) Method

VisitAttributedStatement() private method

private VisitAttributedStatement ( AttributedStatement attributedStmt ) : AttributedStatement
attributedStmt AttributedStatement
return AttributedStatement
        private AttributedStatement VisitAttributedStatement(AttributedStatement attributedStmt)
        {
            attributedStmt.Attributes = this.VisitAttributeList(attributedStmt.Attributes);
            attributedStmt.Statement = (Statement)this.Visit(attributedStmt.Statement);

            return attributedStmt;
        }