summaryrefslogtreecommitdiff
path: root/lib/rdoc/code_object.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/code_object.rb')
-rw-r--r--lib/rdoc/code_object.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/rdoc/code_object.rb b/lib/rdoc/code_object.rb
index 2fcc92e8b5..5574194d00 100644
--- a/lib/rdoc/code_object.rb
+++ b/lib/rdoc/code_object.rb
@@ -54,25 +54,6 @@ class RDoc::CodeObject
attr_accessor :viewer
##
- # There's a wee trick we pull. Comment blocks can have directives that
- # override the stuff we extract during the parse. So, we have a special
- # class method, attr_overridable, that lets code objects list those
- # directives. When a comment is assigned, we then extract out any matching
- # directives and update our object
-
- def self.attr_overridable(name, *aliases)
- @overridables ||= {}
-
- attr_accessor name
-
- aliases.unshift name
-
- aliases.each do |directive_name|
- @overridables[directive_name.to_s] = name
- end
- end
-
- ##
# Creates a new CodeObject that will document itself and its children
def initialize