Class: SyntaxTree::HashKeyFormatter::Rockets

Inherits:
Object
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Formats the keys of a hash literal using hash rockets.

Instance Method Summary collapse

Instance Method Details

#format_key(q, key) ⇒ Object



1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
# File 'lib/syntax_tree/node.rb', line 1742

def format_key(q, key)
  case key
  when Label
    q.text(":#{key.value.chomp(":")}")
  when DynaSymbol
    q.text(":")
    q.format(key)
  else
    q.format(key)
  end

  q.text(" =>")
end