Class: SyntaxTree::Haml::Format::HashAttributesPart

Inherits:
Struct
  • Object
show all
Defined in:
lib/syntax_tree/haml/format.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#valuesObject

Returns the value of attribute values

Returns:

  • (Object)

    the current value of values



209
210
211
# File 'lib/syntax_tree/haml/format.rb', line 209

def values
  @values
end

Instance Method Details

#format(q, align) ⇒ Object



210
211
212
# File 'lib/syntax_tree/haml/format.rb', line 210

def format(q, align)
  format_value(q, values)
end

#lengthObject



214
215
216
217
218
# File 'lib/syntax_tree/haml/format.rb', line 214

def length
  values.sum do |key, value|
    key.length + (value.is_a?(String) ? value : value.to_s).length + 3
  end
end