class ActionView::PartialRenderer
def render(partial, context, block)
Experimental RBS support (using type sampling data from the type_fusion
project).
def render: (String partial, #<Class:0x0000000131b3f510> context, nil block) -> ActionView::AbstractRenderer::RenderedTemplate
This signature was generated using 1 sample from 1 application.
def render(partial, context, block) template = find_template(partial, template_keys(partial)) if !block && (layout = @options[:layout]) layout = find_template(layout.to_s, template_keys(partial)) end render_partial_template(context, @locals, template, layout, block) end