class Text
A structured comment.
Definitions
def initialize(line)
Initialize a new text node.
Signature
-
parameter
lineString 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