Class: Thread::Backtrace::PseudoLocation
Constant Summary collapse
- Pattern =
/\A(?'f'[^:]+)(?::(?'l'\d+))?(?::in `(?'m'.+)'|(?'m'.+))?\z/m
Instance Attribute Summary collapse
-
#absolute_path ⇒ Object
Returns the value of attribute absolute_path.
-
#base_label ⇒ Object
Returns the value of attribute base_label.
-
#label ⇒ Object
Returns the value of attribute label.
-
#lineno ⇒ Object
Returns the value of attribute lineno.
-
#path ⇒ Object
Returns the value of attribute path.
-
#to_s ⇒ Object
Returns the value of attribute to_s.
Instance Method Summary collapse
-
#initialize(to_s) ⇒ PseudoLocation
constructor
A new instance of PseudoLocation.
Constructor Details
#initialize(to_s) ⇒ PseudoLocation
Returns a new instance of PseudoLocation.
88 89 90 91 92 93 94 |
# File 'lib/pretty_debug.rb', line 88 def initialize to_s @to_s = to_s @absolute_path, @lineno, @label = @to_s.match(Pattern).chain{|m| [m[:f], m[:l].chain{|l| l.to_i if l}, m[:m].to_s]} @path = File.basename(@absolute_path) @base_label = @label end |
Instance Attribute Details
#absolute_path ⇒ Object
Returns the value of attribute absolute_path.
87 88 89 |
# File 'lib/pretty_debug.rb', line 87 def absolute_path @absolute_path end |
#base_label ⇒ Object
Returns the value of attribute base_label.
87 88 89 |
# File 'lib/pretty_debug.rb', line 87 def base_label @base_label end |
#label ⇒ Object
Returns the value of attribute label.
87 88 89 |
# File 'lib/pretty_debug.rb', line 87 def label @label end |
#lineno ⇒ Object
Returns the value of attribute lineno.
87 88 89 |
# File 'lib/pretty_debug.rb', line 87 def lineno @lineno end |
#path ⇒ Object
Returns the value of attribute path.
87 88 89 |
# File 'lib/pretty_debug.rb', line 87 def path @path end |
#to_s ⇒ Object
Returns the value of attribute to_s.
87 88 89 |
# File 'lib/pretty_debug.rb', line 87 def to_s @to_s end |