Flowdock
method

on_tags

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: Formatter
on_tags(res, item) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/markup/formatter.rb, line 104
  def on_tags res, item
    attr_mask = item.turn_on
    return if attr_mask.zero?

    @attr_tags.each do |tag|
      if attr_mask & tag.bit != 0 then
        res << annotate(tag.on)
        @in_tt += 1 if tt? tag
      end
    end
  end
Register or log in to add new notes.