Constants
| NO_TEXT | = | "??".freeze |
Attributes
| char_no | [R] | |
| line_no | [R] | |
| text | [R] |
Public class methods
new
(line_no, char_no)
[show source]
# File lib/rdoc/parser/f95.rb, line 163 def initialize(line_no, char_no) @line_no = line_no @char_no = char_no @text = NO_TEXT end
Public instance methods
set_text
(text)
Because we’re used in contexts that expect to return a token, we set the text string and then return ourselves
[show source]
# File lib/rdoc/parser/f95.rb, line 170 def set_text(text) @text = text self end