class SyntaxTree::Location

def self.fixed(line:, char:, column:)

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

def self.fixed: (line: Integer, char: Integer, column: Integer) -> untyped

This signature was generated using 74 samples from 1 application.

def self.fixed(line:, char:, column:)
  new(
    start_line: line,
    start_char: char,
    start_column: column,
    end_line: line,
    end_char: char,
    end_column: column
  )
end