class YARP::InterpolatedRegularExpressionNode

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

# sig/yarp/node.rbs

class YARP::InterpolatedRegularExpressionNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> Array[Array, ]
  def child_nodes: () -> untyped
  def initialize: (YARP::Location opening_loc, Array[YARP::StringNode] parts, YARP::Location closing_loc, Integer flags, YARP::Location location) -> void
end

^^^^^^^^^^^^^^^^
/foo #{bar} baz/
Represents a regular expression literal that contains interpolation.

def accept(visitor)

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

def accept: (Analyzer::Visitor visitor) -> (Array | Array | Array | Array |  | Array |  | Array |  | Array | Array | Array | Array |  | Array |  | Array |  | Array | Array | Array | NilClass | Array | Array |  | NilClass)

This signature was generated using 3 samples from 1 application.

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

def ascii_8bit?

def ascii_8bit?: () -> bool
def ascii_8bit?
  flags.anybits?(RegularExpressionFlags::ASCII_8BIT)
end

def child_nodes

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

def child_nodes: () -> untyped

This signature was generated using 1 sample from 1 application.

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

def closing

def closing: () -> String
def closing
  closing_loc.slice
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, parts: parts, closing_loc: closing_loc, flags: flags, location: location }
end

def euc_jp?

def euc_jp?: () -> bool
def euc_jp?
  flags.anybits?(RegularExpressionFlags::EUC_JP)
end

def extended?

def extended?: () -> bool
def extended?
  flags.anybits?(RegularExpressionFlags::EXTENDED)
end

def ignore_case?

def ignore_case?: () -> bool
def ignore_case?
  flags.anybits?(RegularExpressionFlags::IGNORE_CASE)
end

def initialize(opening_loc, parts, closing_loc, flags, location)

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

def initialize: (YARP::Location opening_loc, (YARP::EmbeddedStatementsNode | YARP::StringNode | YARP::EmbeddedStatementsNode | YARP::StringNode | YARP::EmbeddedStatementsNode | YARP::StringNode | YARP::EmbeddedStatementsNode | YARP::StringNode) parts, YARP::Location closing_loc, Integer flags, YARP::Location location) -> void

This signature was generated using 2 samples from 1 application.

def initialize: (opening_loc: Location, parts: Array[Node], closing_loc: Location, flags: Integer, location: Location) -> void
def initialize(opening_loc, parts, closing_loc, flags, location)
  @opening_loc = opening_loc
  @parts = parts
  @closing_loc = closing_loc
  @flags = flags
  @location = location
end

def multi_line?

def multi_line?: () -> bool
def multi_line?
  flags.anybits?(RegularExpressionFlags::MULTI_LINE)
end

def once?

def once?: () -> bool
def once?
  flags.anybits?(RegularExpressionFlags::ONCE)
end

def opening

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

def set_newline_flag(newline_marked)

def set_newline_flag(newline_marked)
  first = parts.first
  first.set_newline_flag(newline_marked) if first
end

def utf_8?

def utf_8?: () -> bool
def utf_8?
  flags.anybits?(RegularExpressionFlags::UTF_8)
end

def windows_31j?

def windows_31j?: () -> bool
def windows_31j?
  flags.anybits?(RegularExpressionFlags::WINDOWS_31J)
end