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) -> Array[] def child_nodes: () -> Array[] 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) ->
This signature was generated using 18 samples from 1 application.
def accept(visitor) visitor.visit_regular_expression_node(self) end
def ascii_8bit?
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: () ->
This signature was generated using 21 samples from 1 application.
def child_nodes [] end
def closing
def closing closing_loc.slice end
def content
def content content_loc.slice end
def deconstruct_keys(keys)
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? flags.anybits?(RegularExpressionFlags::EUC_JP) end
def extended?
def extended? flags.anybits?(RegularExpressionFlags::EXTENDED) end
def ignore_case?
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 14 samples from 1 application.
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? flags.anybits?(RegularExpressionFlags::MULTI_LINE) end
def once?
def once? flags.anybits?(RegularExpressionFlags::ONCE) end
def opening
def opening opening_loc.slice end
def utf_8?
def utf_8? flags.anybits?(RegularExpressionFlags::UTF_8) end
def windows_31j?
def windows_31j? flags.anybits?(RegularExpressionFlags::WINDOWS_31J) end