Sha256: 9ec307c60a2e082c869ae73a740e6a99adc266bd92cd1fef68d31e2585987ab2
Contents?: true
Size: 570 Bytes
Versions: 27
Compression:
Stored size: 570 Bytes
Contents
# typed: strict # frozen_string_literal: true module RubyIndexer class Location extend T::Sig sig { returns(Integer) } attr_reader :start_line, :end_line, :start_column, :end_column sig do params( start_line: Integer, end_line: Integer, start_column: Integer, end_column: Integer, ).void end def initialize(start_line, end_line, start_column, end_column) @start_line = start_line @end_line = end_line @start_column = start_column @end_column = end_column end end end
Version data entries
27 entries across 27 versions & 1 rubygems