class ActionView::Template

def locals

is a strict locals template.
The locals this template has been or will be compiled for, or nil if this
def locals
  if strict_locals?
    nil
  else
    @locals
  end
end