class I18nLinter::Result

Attributes

filename[R]
line[R]
string[R]

Public Class Methods

new(filename, line, string) click to toggle source
# File lib/i18n_linter/result.rb, line 9
def initialize(filename, line, string)
  @filename = filename
  @line = line
  @string = string
end