Class: SyntaxTree::HashKeyFormatter::Rockets
- Inherits:
-
Object
- Object
- SyntaxTree::HashKeyFormatter::Rockets
- 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
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 |
# File 'lib/syntax_tree/node.rb', line 1463 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 |