aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/code_object.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-10 06:36:13 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-10 06:36:13 +0000
commit1325437297539bf433904b64db63a3186e62177e (patch)
tree01608a107ec3939b1013152d961b6407a5ba9c25 /lib/rdoc/code_object.rb
parentce2b574017cacc2c3f2b0e92f82a7f250639fc34 (diff)
downloadruby-1325437297539bf433904b64db63a3186e62177e.tar.gz
* lib/rdoc: Import RDoc 2.5.2
* lib/rdoc/parser/ruby.rb (RDoc::Parser::Ruby): Don't parse rdoc files, reverts r24976 in favor of include directive support in C parser. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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