class YARP::InterpolatedRegularExpressionNode
Represents a regular expression literal that contains interpolation.
/foo #{bar} baz/ ^^^^^^^^^^^^^^^^
Attributes
attr_reader closing_loc
: Location
attr_reader opening_loc
: Location
attr_reader parts: Array
Public Class Methods
def initialize: (opening_loc
: Location
, parts: Array, closing_loc
: Location
, flags: Integer
, location: Location
) -> void
# File lib/yarp/node.rb, line 6561 def initialize(opening_loc, parts, closing_loc, flags, location) @opening_loc = opening_loc @parts = parts @closing_loc = closing_loc @flags = flags @location = location end
Public Instance Methods
def accept: (visitor: Visitor
) -> void
# File lib/yarp/node.rb, line 6570 def accept(visitor) visitor.visit_interpolated_regular_expression_node(self) end
def ascii_8bit?: () -> bool
# File lib/yarp/node.rb, line 6644 def ascii_8bit? flags.anybits?(RegularExpressionFlags::ASCII_8BIT) end
def child_nodes
: () -> Array[nil | Node]
# File lib/yarp/node.rb, line 6580 def child_nodes [*parts] end
def closing: () -> String
# File lib/yarp/node.rb, line 6619 def closing closing_loc.slice end
def comment_targets
: () -> Array[Node | Location]
# File lib/yarp/node.rb, line 6590 def comment_targets [opening_loc, *parts, closing_loc] end
def compact_child_nodes
: () -> Array
# File lib/yarp/node.rb, line 6585 def compact_child_nodes [*parts] end
def copy: (**params) -> InterpolatedRegularExpressionNode
# File lib/yarp/node.rb, line 6595 def copy(**params) InterpolatedRegularExpressionNode.new( params.fetch(:opening_loc) { opening_loc }, params.fetch(:parts) { parts }, params.fetch(:closing_loc) { closing_loc }, params.fetch(:flags) { flags }, params.fetch(:location) { location }, ) end
def euc_jp?: () -> bool
# File lib/yarp/node.rb, line 6639 def euc_jp? flags.anybits?(RegularExpressionFlags::EUC_JP) end
def extended?: () -> bool
# File lib/yarp/node.rb, line 6629 def extended? flags.anybits?(RegularExpressionFlags::EXTENDED) end
def ignore_case?: () -> bool
# File lib/yarp/node.rb, line 6624 def ignore_case? flags.anybits?(RegularExpressionFlags::IGNORE_CASE) end
# File lib/yarp/node.rb, line 6663 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n" inspector << "├── parts: #{inspector.list("#{inspector.prefix}│ ", parts)}" inspector << "├── closing_loc: #{inspector.location(closing_loc)}\n" flags = [("ignore_case" if ignore_case?), ("extended" if extended?), ("multi_line" if multi_line?), ("euc_jp" if euc_jp?), ("ascii_8bit" if ascii_8bit?), ("windows_31j" if windows_31j?), ("utf_8" if utf_8?), ("once" if once?)].compact inspector << "└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n" inspector.to_str end
def multi_line?: () -> bool
# File lib/yarp/node.rb, line 6634 def multi_line? flags.anybits?(RegularExpressionFlags::MULTI_LINE) end
def once?: () -> bool
# File lib/yarp/node.rb, line 6659 def once? flags.anybits?(RegularExpressionFlags::ONCE) end
def opening: () -> String
# File lib/yarp/node.rb, line 6614 def opening opening_loc.slice end
Returns a numeric value that represents the flags that were used to create the regular expression.
# File lib/yarp.rb, line 594 def options o = flags & 0b111 o |= Regexp::FIXEDENCODING if flags.anybits?(RegularExpressionFlags::EUC_JP | RegularExpressionFlags::WINDOWS_31J | RegularExpressionFlags::UTF_8) o |= Regexp::NOENCODING if flags.anybits?(RegularExpressionFlags::ASCII_8BIT) o end
# File lib/yarp/node.rb, line 6574 def set_newline_flag(newline_marked) first = parts.first first.set_newline_flag(newline_marked) if first end
def utf_8?: () -> bool
# File lib/yarp/node.rb, line 6654 def utf_8? flags.anybits?(RegularExpressionFlags::UTF_8) end
def windows_31j?: () -> bool
# File lib/yarp/node.rb, line 6649 def windows_31j? flags.anybits?(RegularExpressionFlags::WINDOWS_31J) end