# File lib/mspec/runner/actions/tag.rb, line 59
59:   def after(state)
60:     if self === state.description and outcome?
61:       tag = SpecTag.new
62:       tag.tag = @tag
63:       tag.comment = @comment
64:       tag.description = state.description
65: 
66:       case @action
67:       when :add
68:         changed = MSpec.write_tag tag
69:       when :del
70:         changed = MSpec.delete_tag tag
71:       end
72: 
73:       @report << state.description if changed
74:     end
75:   end