Class: Ikra::AST::StringLiteralNode

Inherits:
TreeNode show all
Defined in:
lib/ast/nodes.rb,
lib/ast/printer.rb,
lib/ast/visitor.rb

Constant Summary

Constants inherited from TreeNode

TreeNode::TYPE_INFO_VARS

Instance Attribute Summary collapse

Attributes inherited from Node

#parent

Instance Method Summary collapse

Methods inherited from TreeNode

#==, #enclosing_class, #find_behavior_node, #get_type, #is_begin_node?, #merge_union_type, #register_type_change, #replace, #replace_child, #symbol_table

Methods inherited from Node

#==, #eql?, #hash

Constructor Details

#initialize(value:) ⇒ StringLiteralNode

Returns a new instance of StringLiteralNode.



428
429
430
# File 'lib/ast/nodes.rb', line 428

def initialize(value:)
    @value = value
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



426
427
428
# File 'lib/ast/nodes.rb', line 426

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



122
123
124
# File 'lib/ast/visitor.rb', line 122

def accept(visitor)
    visitor.visit_string_node(self)
end

#cloneObject



432
433
434
# File 'lib/ast/nodes.rb', line 432

def clone
    return StringLiteralNode.new(value: @value)
end

#to_sObject



114
115
116
# File 'lib/ast/printer.rb', line 114

def to_s
    return "<#{value.to_s}>"
end