class YARP::MatchPredicateNode

Represents the use of the modifier ‘in` operator.

foo in 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 7278
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 7286
def accept(visitor)
  visitor.visit_match_predicate_node(self)
end
child_nodes() click to toggle source

def child_nodes: () -> Array[nil | Node]

# File yarp/node.rb, line 7291
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 7296
def comment_targets
  [value, pattern, operator_loc]
end
copy(**params) click to toggle source

def copy: (**params) -> MatchPredicateNode

# File yarp/node.rb, line 7301
def copy(**params)
  MatchPredicateNode.new(
    params.fetch(:value) { value },
    params.fetch(:pattern) { pattern },
    params.fetch(:operator_loc) { operator_loc },
    params.fetch(:location) { location },
  )
end
deconstruct()

def deconstruct: () -> Array[nil | Node]

Alias for: child_nodes
deconstruct_keys(keys) click to toggle source

def deconstruct_keys: (keys: Array) -> Hash[Symbol, nil | Node | Array | String | Token | Array | Location]

# File yarp/node.rb, line 7314
def deconstruct_keys(keys)
  { value: value, pattern: pattern, operator_loc: operator_loc, location: location }
end
inspect(inspector = NodeInspector.new) click to toggle source
# File yarp/node.rb, line 7323
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 7319
def operator
  operator_loc.slice
end