Sha256: 598b5587d27567e63ca86a7e9704bd3d928cf7a3655ab9d07d2536c585f8f293

Contents?: true

Size: 1.87 KB

Versions: 6

Compression:

Stored size: 1.87 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Ext
    # Extensions to AST::RegexpNode for our cached parsed regexp info
    module RegexpNode
      ANY = Object.new
      def ANY.==(_)
        true
      end
      private_constant :ANY

      # @return [Regexp::Expression::Root, nil]
      # Note: we extend Regexp nodes to provide `loc` and `expression`
      # see `ext/regexp_parser`.
      attr_reader :parsed_tree

      def assign_properties(*)
        super

        str = with_interpolations_blanked
        begin
          @parsed_tree = Regexp::Parser.parse(str, options: options)
        rescue StandardError
          @parsed_tree = nil
        else
          origin = loc.begin.end
          source = @parsed_tree.to_s
          @parsed_tree.each_expression(true) do |e|
            e.origin = origin
            e.source = source
          end
        end
      end

      def each_capture(named: ANY)
        return enum_for(__method__, named: named) unless block_given?

        parsed_tree&.traverse do |event, exp, _index|
          yield(exp) if event == :enter &&
                        named == exp.respond_to?(:name) &&
                        exp.respond_to?(:capturing?) &&
                        exp.capturing?
        end

        self
      end

      private

      def with_interpolations_blanked
        # Ignore the trailing regopt node
        children[0...-1].map do |child|
          source = child.source

          # We don't want to consider the contents of interpolations as part of the pattern source,
          # but need to preserve their width, to allow offsets to correctly line up with the
          # original source: spaces have no effect, and preserve width.
          if child.begin_type?
            ' ' * source.length
          else
            source
          end
        end.join
      end

      AST::RegexpNode.include self
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-1.4.2 lib/rubocop/ext/regexp_node.rb
rubocop-1.4.1 lib/rubocop/ext/regexp_node.rb
rubocop-1.4.0 lib/rubocop/ext/regexp_node.rb
rubocop-1.3.1 lib/rubocop/ext/regexp_node.rb
rubocop-1.3.0 lib/rubocop/ext/regexp_node.rb
rubocop-1.2.0 lib/rubocop/ext/regexp_node.rb