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) -> untyped 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) -> untyped
This signature was generated using 2 samples from 1 application.
def accept(visitor) visitor.visit_interpolated_regular_expression_node(self) end
def ascii_8bit?
def ascii_8bit? flags.anybits?(RegularExpressionFlags::ASCII_8BIT) end
def child_nodes
def child_nodes [*parts] end
def closing
def closing closing_loc.slice end
def deconstruct_keys(keys)
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? 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, parts, closing_loc, flags, location)
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? flags.anybits?(RegularExpressionFlags::MULTI_LINE) end
def once?
def once? flags.anybits?(RegularExpressionFlags::ONCE) end
def opening
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? flags.anybits?(RegularExpressionFlags::UTF_8) end
def windows_31j?
def windows_31j? flags.anybits?(RegularExpressionFlags::WINDOWS_31J) end