Method: CutePrint::Location#initialize

Defined in:
lib/cute_print/location.rb

#initialize(path, line_number) ⇒ Location

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Location.



18
19
20
21
# File 'lib/cute_print/location.rb', line 18

def initialize(path, line_number)
  @path = path
  @line_number = line_number
end