# File lib/mustache/context.rb, line 26
    def partial(name)
      # Look for the first Mustache in the stack.
      mustache = mustache_in_stack

      # Call its `partial` method and render the result.
      mustache.render(mustache.partial(name), self)
    end