File: execution_point.rb

package info (click to toggle)
libmocha-ruby 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 944 kB
  • ctags: 1,384
  • sloc: ruby: 7,265; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 679 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class ExecutionPoint
  
  attr_reader :backtrace

  def self.current
    new(caller)
  end
  
  def initialize(backtrace)
    @backtrace = backtrace
  end
  
  def file_name
    return "unknown" unless @backtrace && @backtrace.first
    /\A(.*?):\d+/.match(@backtrace.first)[1]
  end
  
  def line_number
    return "unknown" unless @backtrace && @backtrace.first
    Integer(/\A.*?:(\d+)/.match(@backtrace.first)[1])
  end

  def ==(other)
    return false unless other.is_a?(ExecutionPoint)
    (file_name == other.file_name) and (line_number == other.line_number)
  end
  
  def to_s
    "file: #{file_name}; line: #{line_number}"
  end
  
  def inspect
    to_s
  end
  
end