Class: SyntaxTree::Word
Overview
Word represents an element within a special array literal that accepts interpolation.
%W[a#{b}c xyz]
In the example above, there would be two Word nodes within a parent Words node.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#parts ⇒ Object
readonly
- Array[ StringEmbExpr | StringDVar | TStringContent ]
-
the parts of the word.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(parts:, location:, comments: []) ⇒ Word
constructor
A new instance of Word.
- #match?(pattern) ⇒ Boolean
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(parts:, location:, comments: []) ⇒ Word
Returns a new instance of Word.
9907 9908 9909 9910 9911 |
# File 'lib/syntax_tree/node.rb', line 9907 def initialize(parts:, location:, comments: []) @parts = parts @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
9905 9906 9907 |
# File 'lib/syntax_tree/node.rb', line 9905 def comments @comments end |
#parts ⇒ Object (readonly)
- Array[ StringEmbExpr | StringDVar | TStringContent ]
-
the parts of the
word
9902 9903 9904 |
# File 'lib/syntax_tree/node.rb', line 9902 def parts @parts end |
Instance Method Details
#accept(visitor) ⇒ Object
9917 9918 9919 |
# File 'lib/syntax_tree/node.rb', line 9917 def accept(visitor) visitor.visit_word(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
9921 9922 9923 |
# File 'lib/syntax_tree/node.rb', line 9921 def child_nodes parts end |
#deconstruct_keys(_keys) ⇒ Object
9927 9928 9929 |
# File 'lib/syntax_tree/node.rb', line 9927 def deconstruct_keys(_keys) { parts: parts, location: location, comments: comments } end |
#format(q) ⇒ Object
9931 9932 9933 |
# File 'lib/syntax_tree/node.rb', line 9931 def format(q) q.format_each(parts) end |
#match?(pattern) ⇒ Boolean
9913 9914 9915 |
# File 'lib/syntax_tree/node.rb', line 9913 def match?(pattern) parts.any? { |part| part.is_a?(TStringContent) && part.match?(pattern) } end |