Sha256: d7df215eb59bebd3803548e95c4402763b52917126748c7cc4b00122d7671ced

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

module Steep
  class Project
    attr_reader :targets
    attr_reader :base_dir

    def initialize(base_dir:)
      @targets = []
      @base_dir = base_dir

      unless base_dir.absolute?
        raise "Project#initialize(base_dir:): base_dir should be absolute path"
      end
    end

    def relative_path(path)
      path.relative_path_from(base_dir)
    end

    def absolute_path(path)
      (base_dir + path).cleanpath
    end

    def type_of_node(path:, line:, column:)
      source_file = targets.map {|target| target.source_files[path] }.compact[0]

      if source_file
        case (status = source_file.status)
        when SourceFile::TypeCheckStatus
          node = status.source.find_node(line: line, column: column)

          type = begin
            status.typing.type_of(node: node)
          rescue RuntimeError
            AST::Builtin.any_type
          end

          if block_given?
            yield type, node
          else
            type
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
steep-0.12.0 lib/steep/project.rb