class YARP::SymbolNode

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/yarp/node.rbs

class YARP::SymbolNode < YARP::Node
  def child_nodes: () -> Array[]
  def initialize: (YARP::Location opening_loc, YARP::Location value_loc, nil closing_loc, String unescaped, YARP::Location location) -> void
end

^^^
^^^^
:foo
Represents a symbol literal or a symbol contained within a ‘%i` list.

def accept(visitor)

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_symbol_node(self)
end

def child_nodes

Experimental RBS support (using type sampling data from the type_fusion project).

def child_nodes: () ->

This signature was generated using 3 samples from 1 application.

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

def closing

def closing: () -> String?
def closing
  closing_loc&.slice
end

def comment_targets

def comment_targets: () -> Array[Node | Location]
def comment_targets
  [*opening_loc, *value_loc, *closing_loc]
end

def copy(**params)

def copy: (**params) -> SymbolNode
def copy(**params)
  SymbolNode.new(
    params.fetch(:opening_loc) { opening_loc },
    params.fetch(:value_loc) { value_loc },
    params.fetch(:closing_loc) { closing_loc },
    params.fetch(:unescaped) { unescaped },
    params.fetch(:location) { location },
  )
end

def deconstruct_keys(keys)

def deconstruct_keys: (keys: Array[Symbol]) -> Hash[Symbol, nil | Node | Array[Node] | String | Token | Array[Token] | Location]
def deconstruct_keys(keys)
  { opening_loc: opening_loc, value_loc: value_loc, closing_loc: closing_loc, unescaped: unescaped, location: location }
end

def initialize(opening_loc, value_loc, closing_loc, unescaped, location)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (YARP::Location opening_loc, YARP::Location value_loc, nil closing_loc, String unescaped, YARP::Location location) -> void

This signature was generated using 1 sample from 1 application.

def initialize: (opening_loc: Location?, value_loc: Location?, closing_loc: Location?, unescaped: String, location: Location) -> void
def initialize(opening_loc, value_loc, closing_loc, unescaped, location)
  @opening_loc = opening_loc
  @value_loc = value_loc
  @closing_loc = closing_loc
  @unescaped = unescaped
  @location = location
end

def inspect(inspector = NodeInspector.new)

def inspect(inspector = NodeInspector.new)
  inspector << inspector.header(self)
  inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n"
  inspector << "├── value_loc: #{inspector.location(value_loc)}\n"
  inspector << "├── closing_loc: #{inspector.location(closing_loc)}\n"
  inspector << "└── unescaped: #{unescaped.inspect}\n"
  inspector.to_str
end

def opening

def opening: () -> String?
def opening
  opening_loc&.slice
end

def value

def value: () -> String?
def value
  value_loc&.slice
end