Method: Sentry::Backtrace::Line#initialize

Defined in:
lib/sentry/backtrace.rb

#initialize(file, number, method, module_name, in_app_pattern) ⇒ Line

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Line.



49
50
51
52
53
54
55
# File 'lib/sentry/backtrace.rb', line 49

def initialize(file, number, method, module_name, in_app_pattern)
  @file = file
  @module_name = module_name
  @number = number.to_i
  @method = method
  @in_app_pattern = in_app_pattern
end