Type:
Class

A parser is simple a class that subclasses RDoc::Parser and implements scan to fill in an RDoc::TopLevel with parsed data.

The initialize method takes an RDoc::TopLevel to fill with parsed content, the name of the file to be parsed, the content of the file, an RDoc::Options object and an RDoc::Stats object to inform the user of parsed items. The scan method is then called to parse the file and must return the RDoc::TopLevel object. By calling super these items will be set for you.

In order to be used by RDoc the parser needs to register the file extensions it can parse. Use ::parse_files_matching to register extensions.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rdoc'
 
class RDoc::Parser::Xyz < RDoc::Parser
  parse_files_matching /\.xyz$/
 
  def initialize top_level, file_name, content, options, stats
    super
 
    # extra initialization if needed
  end
 
  def scan
    # parse file and fill in @top_level
  end
end
look_for_directives_in
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::Ruby

look_for_directives_in(context, comment) Instance Public methods Look for directives

2025-01-10 15:47:30
check_modeline
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser

check_modeline(file_name) Class Public methods Returns the file type from the

2025-01-10 15:47:30
remove_commented_out_lines
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::C

remove_commented_out_lines() Instance Public methods Removes lines that are

2025-01-10 15:47:30
process_directive
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser

process_directive(code_object, directive, value) Class Public methods Processes

2025-01-10 15:47:30
do_missing
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::C

do_missing() Instance Public methods Creates classes and module that were missing

2025-01-10 15:47:30
parse_class
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::Ruby

parse_class(container, single, tk, comment) Instance Public methods Parses a

2025-01-10 15:47:30
parse_symbol_in_arg
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::Ruby

parse_symbol_in_arg() Instance Public methods Returns symbol text from the next

2025-01-10 15:47:30
parse_call_parameters
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::Ruby

parse_call_parameters(tk) Instance Public methods Extracts call parameters from

2025-01-10 15:47:30
get_bool
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::Ruby

get_bool() Instance Public methods Looks for a true or false token. Returns

2025-01-10 15:47:30
handle_ifdefs_in
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Parser/RDoc::Parser::C

handle_ifdefs_in(body) Instance Public methods Removes ifdefs that would otherwise

2025-01-10 15:47:30