class Text
A structured comment.
Definitions
def initialize(line)
Initialize a new text node.
Signature
-
parameter
line
String
The text content.
Implementation
def initialize(line)
@line = line
end
attr :line
Signature
-
attribute
String
The text content.
def traverse
Traverse the text node.
Implementation
def traverse
end