class Prism::Location

def initialize(source, start_offset, length)

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

def initialize: (Prism::Source source, Integer start_offset, Integer length) -> void

This signature was generated using 360 samples from 1 application.

byte length.
Create a new location object with the given source, start byte offset, and
def initialize(source, start_offset, length)
  @source = source
  @start_offset = start_offset
  @length = length
  @comments = []
end