class YARP::InNode
Represents the use of the ‘in` keyword in a case statement.
case a; in b then c end ^^^^^^^^^^^
Attributes
pattern[R]
attr_reader pattern: Node
statements[R]
attr_reader statements: StatementsNode
?
Public Class Methods
new(pattern, statements, in_loc, then_loc, location)
click to toggle source
def initialize: (pattern: Node
, statements: StatementsNode
?, in_loc
: Location
, then_loc
: Location
?, location: Location
) -> void
# File yarp/node.rb, line 5338 def initialize(pattern, statements, in_loc, then_loc, location) @pattern = pattern @statements = statements @in_loc = in_loc @then_loc = then_loc @location = location end
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File yarp/node.rb, line 5347 def accept(visitor) visitor.visit_in_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File yarp/node.rb, line 5352 def child_nodes [pattern, statements] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File yarp/node.rb, line 5357 def comment_targets [pattern, *statements, in_loc, *then_loc] end
copy(**params)
click to toggle source
def copy: (**params) -> InNode
# File yarp/node.rb, line 5362 def copy(**params) InNode.new( params.fetch(:pattern) { pattern }, params.fetch(:statements) { statements }, params.fetch(:in_loc) { in_loc }, params.fetch(:then_loc) { then_loc }, params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
in()
click to toggle source
def in: () -> String
# File yarp/node.rb, line 5381 def in in_loc.slice end
inspect(inspector = NodeInspector.new)
click to toggle source
# File yarp/node.rb, line 5390 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── pattern:\n" inspector << inspector.child_node(pattern, "│ ") if (statements = self.statements).nil? inspector << "├── statements: ∅\n" else inspector << "├── statements:\n" inspector << statements.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── in_loc: #{inspector.location(in_loc)}\n" inspector << "└── then_loc: #{inspector.location(then_loc)}\n" inspector.to_str end
then()
click to toggle source
def then: () -> String?
# File yarp/node.rb, line 5386 def then then_loc&.slice end