Sha256: 60b2d0daba9324ed73ad06e0c05ddb4310cda3c43f5de14b3aaa55c7b6ee7953

Contents?: true

Size: 1.81 KB

Versions: 2

Compression:

Stored size: 1.81 KB

Contents

require 'rubrowser/parser/definition/base'

module Rubrowser
  module Parser
    module Relation
      class Base
        attr_reader :namespace, :caller_namespace, :file, :line

        def initialize(namespace, caller_namespace, file: nil, line: nil)
          @namespace = namespace
          @caller_namespace = caller_namespace
          @file = file
          @line = line
          @is_circular = false
        end

        def namespace
          Definition::Base.new(@namespace, file: file, line: line)
        end

        def caller_namespace
          Definition::Base.new(@caller_namespace, file: file, line: line)
        end

        def circular?
          @is_circular
        end

        def set_circular
          @is_circular = true
        end

        def resolve(definitions)
          possibilities.find do |possibility|
            !!definitions.bsearch { |definition| definition <=> possibility }
          end || possibilities.last
        end

        def ==(other)
          namespace == other.namespace &&
            caller_namespace == other.caller_namespace &&
            circular? == other.circular?
        end

        private

        def possibilities
          if absolute?
            return [
              Definition::Base.new(@namespace.compact, file: file, line: line)
            ]
          end

          possible_parent_namespaces
            .map { |possible_parent| possible_parent + @namespace }
            .push(@namespace)
            .map { |i| Definition::Base.new(i, file: file, line: line) }
        end

        def possible_parent_namespaces
          (@caller_namespace.size - 1)
            .downto(0)
            .map { |i| @caller_namespace[0..i] }
        end

        def absolute?
          @caller_namespace.empty? || @namespace.first.nil?
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubrowser-2.10 lib/rubrowser/parser/relation/base.rb
rubrowser-2.9.1 lib/rubrowser/parser/relation/base.rb