class SyntaxTree::Location

def initialize(

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (start_line: Integer, start_char: Integer, start_column: Integer, end_line: Integer, end_char: Integer, end_column: Integer) -> void

This signature was generated using 613 samples from 1 application.

def initialize(
  start_line:,
  start_char:,
  start_column:,
  end_line:,
  end_char:,
  end_column:
)
  @start_line = start_line
  @start_char = start_char
  @start_column = start_column
  @end_line = end_line
  @end_char = end_char
  @end_column = end_column
end