class Highway::Compiler::Analyze::Tree::Segments::Text

This class represents a text value segment in the semantic tree. It consists of a raw text value.

Attributes

value[R]

The raw text value.

@return [String]

Public Class Methods

new(value) click to toggle source

Initialize an instance.

@param value [String] The raw text value.

# File lib/highway/compiler/analyze/tree/segments/text.rb, line 21
def initialize(value)
  @value = value
end