summaryrefslogtreecommitdiff
path: root/lib/rdoc/parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/parser.rb')
-rw-r--r--lib/rdoc/parser.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/rdoc/parser.rb b/lib/rdoc/parser.rb
index b2559fa3a9..ba7b858595 100644
--- a/lib/rdoc/parser.rb
+++ b/lib/rdoc/parser.rb
@@ -106,6 +106,8 @@ class RDoc::Parser
# Applies +directive+'s +value+ to +code_object+, if appropriate
def self.process_directive code_object, directive, value
+ warn "RDoc::Parser::process_directive is deprecated and wil be removed in RDoc 4. Use RDoc::Markup::PreProcess#handle_directive instead" if $-w
+
case directive
when 'nodoc' then
code_object.document_self = nil # notify nodoc
@@ -196,6 +198,9 @@ class RDoc::Parser
@content = content
@options = options
@stats = stats
+
+ @preprocess = RDoc::Markup::PreProcess.new @file_name, @options.rdoc_include
+ @preprocess.options = @options
end
end