class I18nLinter::Token
Attributes
content[R]
coords[R]
type[R]
Public Class Methods
new(token)
click to toggle source
# File lib/i18n_linter/token.rb, line 9 def initialize(token) @coords = token[0] @type = token[1] @content = token[2] end