Method: ActionDispatch::ExceptionWrapper#annotated_source_code

Defined in:
actionpack/lib/action_dispatch/middleware/exception_wrapper.rb

#annotated_source_codeObject



113
114
115
116
117
118
119
# File 'actionpack/lib/action_dispatch/middleware/exception_wrapper.rb', line 113

def annotated_source_code
  if exception.respond_to?(:annotated_source_code)
    exception.annotated_source_code
  else
    []
  end
end