method
parse_comment

v1_9_1_378 -
Show latest stable
-
0 notes -
Class: Ruby
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378 (0)
- 1_9_2_180 (38)
- 1_9_3_125 (0)
- 1_9_3_392 (0)
- 2_1_10 (0)
- 2_2_9 (0)
- 2_4_6
- 2_5_5
- 2_6_3
- What's this?
parse_comment(container, tk, comment)
public
Hide source
# File lib/rdoc/parser/ruby.rb, line 1977 def parse_comment(container, tk, comment) line_no = tk.line_no column = tk.char_no singleton = !!comment.sub!(/(^# +:?)(singleton-)(method:)/, '\1\3') if comment.sub!(/^# +:?method: *(\S*).*?\n/, '') then name = $1 unless $1.empty? else return nil end meth = RDoc::GhostMethod.new get_tkread, name meth.singleton = singleton @stats.add_method meth meth.start_collecting_tokens indent = TkSPACE.new 1, 1 indent.set_text " " * column position_comment = TkCOMMENT.new(line_no, 1, "# File #{@top_level.file_absolute_name}, line #{line_no}") meth.add_tokens [position_comment, NEWLINE_TOKEN, indent] meth.params = '' extract_call_seq comment, meth container.add_method meth if meth.document_self meth.comment = comment end