Sha256: 829580d2a9f5af31023679fef10c0c2b5107440ff1e6788148a6559400b9adb7

Contents?: true

Size: 1.16 KB

Versions: 10

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

module Synvert::Core
  # WithinScope finds out nodes which match rules, then changes its scope to matching node.
  class Rewriter::WithinScope < Rewriter::Scope
    # Initialize a WithinScope.
    #
    # @param instance [Synvert::Core::Rewriter::Instance]
    # @param rules [Hash]
    # @param options [Hash]
    # @yield run on all matching nodes
    def initialize(instance, rules, options = {}, &block)
      super(instance, &block)

      @options = { including_self: true, stop_at_first_match: false, recursive: true }.merge(options)
      @node_query = NodeQuery.new(rules)
    end

    # Find out the matching nodes.
    # It checks the current node and iterates all child nodes,
    # then run the block code on each matching node.
    def process
      current_node = @instance.current_node
      return unless current_node

      matching_nodes = @node_query.query_nodes(current_node, @options)
      @instance.process_with_node current_node do
        matching_nodes.each do |matching_node|
          @instance.process_with_node matching_node do
            @instance.instance_eval(&@block)
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
synvert-core-1.11.0 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.10.1 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.10.0 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.9.2 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.9.1 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.9.0 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.8.1 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.8.0 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.7.0 lib/synvert/core/rewriter/scope/within_scope.rb
synvert-core-1.6.0 lib/synvert/core/rewriter/scope/within_scope.rb