class Psych::Coder

def map tag = @tag, style = @style

Emit a map. The coder will be yielded to the block.
def map tag = @tag, style = @style
  @tag   = tag
  @style = style
  yield self if block_given?
  @map
end