Class: SyntaxTree::RegexpEnd
Overview
RegexpEnd represents the end of a regular expression literal.
/.+/m
In the example above, the RegexpEnd event represents the /m at the end of the regular expression literal. You can also declare regular expression literals using %r, as in:
%r{.+}m
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the end 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:) ⇒ RegexpEnd
constructor
A new instance of RegexpEnd.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ RegexpEnd
7697 7698 7699 7700 |
# File 'lib/syntax_tree/node.rb', line 7697 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the end of the regular expression
7695 7696 7697 |
# File 'lib/syntax_tree/node.rb', line 7695 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7702 7703 7704 |
# File 'lib/syntax_tree/node.rb', line 7702 def accept(visitor) visitor.visit_regexp_end(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7706 7707 7708 |
# File 'lib/syntax_tree/node.rb', line 7706 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7712 7713 7714 |
# File 'lib/syntax_tree/node.rb', line 7712 def deconstruct_keys(_keys) { value: value, location: location } end |