instance method _run

Ruby on Rails 8.1.2

Since v6.0.6

Available in: v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

_run(method, template, locals, buffer, add_to_stack: true, has_strict_locals: false, &block)

No documentation comment.

Parameters

method req
template req
locals req
buffer req
add_to_stack key = true
has_strict_locals key = false
block block
Source
# File actionview/lib/action_view/base.rb, line 264
    def _run(method, template, locals, buffer, add_to_stack: true, has_strict_locals: false, &block)
      _old_output_buffer, _old_virtual_path, _old_template = @output_buffer, @virtual_path, @current_template
      @current_template = template if add_to_stack
      @output_buffer = buffer

      if has_strict_locals
        begin
          public_send(method, locals, buffer, **locals, &block)
        rescue ArgumentError => argument_error
          public_send_line = __LINE__ - 2
          frame = argument_error.backtrace_locations[1]
          if frame.path == __FILE__ && frame.lineno == public_send_line
            raise StrictLocalsError.new(argument_error, @current_template)
          end
          raise
        end
      else
        public_send(method, locals, buffer, &block)
      end
    ensure
      @output_buffer, @virtual_path, @current_template = _old_output_buffer, _old_virtual_path, _old_template
    end

Defined in actionview/lib/action_view/base.rb line 264 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionView::Base

Type at least 2 characters to search.

↑↓ navigate · open · esc close