String
Parameterized error message.
Parse error message into parameters (where applicable).
# File lib/tidy/tidyerr.rb, line 18 def parameterize if to_str[0,4] == 'line' tokens = to_str.split(' ', 7) @severity = tokens[5][0,1] # W or E @line = tokens[1].to_i @column = tokens[3].to_i @message = tokens[6] end end
Generated with the Darkfish Rdoc Generator 2.