Class: SyntaxTree::RegexpBeg
Overview
RegexpBeg represents the start of a regular expression literal.
/.+/
In the example above, RegexpBeg represents the first / token. Regular expression literals can also be declared using the %r syntax, as in:
%r{.+}
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the beginning of the regular expression.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(value:, location:) ⇒ RegexpBeg
constructor
A new instance of RegexpBeg.
Methods inherited from Node
#format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ RegexpBeg
Returns a new instance of RegexpBeg.
6655 6656 6657 6658 |
# File 'lib/syntax_tree/node.rb', line 6655 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the beginning of the regular expression
6653 6654 6655 |
# File 'lib/syntax_tree/node.rb', line 6653 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
6660 6661 6662 |
# File 'lib/syntax_tree/node.rb', line 6660 def accept(visitor) visitor.visit_regexp_beg(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6664 6665 6666 |
# File 'lib/syntax_tree/node.rb', line 6664 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
6670 6671 6672 |
# File 'lib/syntax_tree/node.rb', line 6670 def deconstruct_keys(keys) { value: value, location: location } end |