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



251
252
253
# File 'lib/syntax_tree/haml/format.rb', line 251

def values
  @values
end

Instance Method Details

#format(q, align) ⇒ Object



252
253
254
# File 'lib/syntax_tree/haml/format.rb', line 252

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

#lengthObject



256
257
258
259
260
# File 'lib/syntax_tree/haml/format.rb', line 256

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