Open
Description
Hi everyone at rdoc.
If there is anything wrong or this issue was already discussed, I'm so sorry.
Anyway, please look at this.
# This doc isn't generated.
define_method('foo1') do
end
# This doc is generated.
def foo2; end if false
But I expect it should be .. ↓
# This doc should be generated.
define_method('foo1') do
end
# This doc should not be generated.
def foo2; end if false
Is there any reason or difficult to do that?
I would appreciate it if you could tell me when you have a time.
Thank you.