Method: ReVIEW::Location#string

Defined in:
lib/review/location.rb

#stringObject Also known as: to_s



22
23
24
25
26
27
28
# File 'lib/review/location.rb', line 22

def string
  begin
    "#{@filename}:#{@f.lineno}"
  rescue StandardError
    "#{@filename}:nil"
  end
end