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



1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
# File 'lib/syntax_tree/node.rb', line 1412

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

  q.text(" =>")
end