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



255
256
257
# File 'lib/syntax_tree/haml/format.rb', line 255

def values
  @values
end

Instance Method Details

#format(q, align) ⇒ Object



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

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

#lengthObject



260
261
262
263
264
# File 'lib/syntax_tree/haml/format.rb', line 260

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