options()
public
The options instance from the
store this CodeObject is attached to, or a default options instance if the CodeObject
is not attached.
This is used by Text#snippet
# File lib/rdoc/code_object.rb, line 297
def options
if @store and @store.rdoc then
@store.rdoc.options
else
RDoc::Options.new
end
end