class Mustache::Context

def push(new)

Returns the Context.

Adds a new object to the context's internal stack.
def push(new)
  @stack.unshift(new)
  self
end