class YARP::RegularExpressionNode

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

# sig/yarp/node.rbs

class YARP::RegularExpressionNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> untyped
  def child_nodes: () -> untyped
  def initialize: (YARP::Location opening_loc, YARP::Location content_loc, YARP::Location closing_loc, String unescaped, Integer flags, YARP::Location location) -> void
end

^^^^^^
/foo/i
Represents a regular expression literal with no interpolation.

def accept(visitor)

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

def accept: (Analyzer::Visitor visitor) -> untyped

This signature was generated using 2 samples from 1 application.

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_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 2 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 content

def content: () -> String
def content
  content_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, content_loc: content_loc, closing_loc: closing_loc, unescaped: unescaped, 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, content_loc, closing_loc, unescaped, flags, location)

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

def initialize: (YARP::Location opening_loc, YARP::Location content_loc, YARP::Location closing_loc, String unescaped, Integer flags, YARP::Location location) -> void

This signature was generated using 7 samples from 1 application.

def initialize: (opening_loc: Location, content_loc: Location, closing_loc: Location, unescaped: String, flags: Integer, location: Location) -> void
def initialize(opening_loc, content_loc, closing_loc, unescaped, flags, location)
  @opening_loc = opening_loc
  @content_loc = content_loc
  @closing_loc = closing_loc
  @unescaped = unescaped
  @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 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