Class: SyntaxTree::Haml::Format::PrefixPart

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#prefixObject

Returns the value of attribute prefix

Returns:

  • (Object)

    the current value of prefix



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

def prefix
  @prefix
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



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

def value
  @value
end

Instance Method Details

#format(q, align) ⇒ Object



217
218
219
# File 'lib/syntax_tree/haml/format.rb', line 217

def format(q, align)
  q.text("#{prefix}#{value}")
end

#lengthObject



221
222
223
# File 'lib/syntax_tree/haml/format.rb', line 221

def length
  prefix.length + value.length
end