Class: SyntaxTree::TStringContent

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

TStringContent represents plain characters inside of an entity that accepts string content like a string, heredoc, command string, or regular expression.

"string"

In the example above, TStringContent represents the string token contained within the string.

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ TStringContent

Returns a new instance of TStringContent.



8752
8753
8754
8755
8756
# File 'lib/syntax_tree/node.rb', line 8752

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



8750
8751
8752
# File 'lib/syntax_tree/node.rb', line 8750

def comments
  @comments
end

#valueObject (readonly)

String

the content of the string



8747
8748
8749
# File 'lib/syntax_tree/node.rb', line 8747

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



8762
8763
8764
# File 'lib/syntax_tree/node.rb', line 8762

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

#child_nodesObject Also known as: deconstruct



8766
8767
8768
# File 'lib/syntax_tree/node.rb', line 8766

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



8772
8773
8774
# File 'lib/syntax_tree/node.rb', line 8772

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



8776
8777
8778
# File 'lib/syntax_tree/node.rb', line 8776

def format(q)
  q.text(value)
end

#match?(pattern) ⇒ Boolean

Returns:

  • (Boolean)


8758
8759
8760
# File 'lib/syntax_tree/node.rb', line 8758

def match?(pattern)
  value.match?(pattern)
end