| Path: | lib/yard/handlers/ruby/class_condition_handler.rb |
| Last Update: | Thu Sep 20 10:43:08 +0200 2012 |
Matches if/unless conditions inside classes and attempts to process only one branch (by evaluating the condition if possible).
@example A simple class conditional
class Foo
if 0
# This method is ignored
def xyz; end
end
end