module Parxer::ParserFormatter

Public Instance Methods

format_attribute_value() click to toggle source
# File lib/parxer/parsers/concerns/formatter.rb, line 6
def format_attribute_value
  formatter = attribute.formatter
  return unless formatter
  formatter.context = self
  row.send("#{attribute.id}=", formatter.apply)
end