class Unparser::Emitter::FlipFlop

Emitter for flip flops

Constants

MAP
SYMBOLS

Public Instance Methods

symbol_name() click to toggle source
# File lib/unparser/emitter/flipflop.rb, line 17
def symbol_name
  true
end

Private Instance Methods

dispatch() click to toggle source
# File lib/unparser/emitter/flipflop.rb, line 27
def dispatch
  visit(left)
  write(MAP.fetch(node.type))
  visit(right)
end