class YARP::MatchRequiredNode
Represents the use of the ‘=>` operator.
foo => bar ^^^^^^^^^^
Attributes
operator_loc[R]
attr_reader operator_loc
: Location
pattern[R]
attr_reader pattern: Node
value[R]
attr_reader value: Node
Public Class Methods
new(value, pattern, operator_loc, location)
click to toggle source
def initialize: (value: Node
, pattern: Node
, operator_loc
: Location
, location: Location
) -> void
# File yarp/node.rb, line 7349 def initialize(value, pattern, operator_loc, location) @value = value @pattern = pattern @operator_loc = operator_loc @location = location end
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File yarp/node.rb, line 7357 def accept(visitor) visitor.visit_match_required_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File yarp/node.rb, line 7362 def child_nodes [value, pattern] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File yarp/node.rb, line 7367 def comment_targets [value, pattern, operator_loc] end
copy(**params)
click to toggle source
def copy: (**params) -> MatchRequiredNode
# File yarp/node.rb, line 7372 def copy(**params) MatchRequiredNode.new( params.fetch(:value) { value }, params.fetch(:pattern) { pattern }, params.fetch(:operator_loc) { operator_loc }, params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
inspect(inspector = NodeInspector.new)
click to toggle source
# File yarp/node.rb, line 7394 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── value:\n" inspector << inspector.child_node(value, "│ ") inspector << "├── pattern:\n" inspector << inspector.child_node(pattern, "│ ") inspector << "└── operator_loc: #{inspector.location(operator_loc)}\n" inspector.to_str end
operator()
click to toggle source
def operator: () -> String
# File yarp/node.rb, line 7390 def operator operator_loc.slice end