# File lib/mspec/runner/mspec.rb, line 66
66:   def self.protect(location, &block)
67:     begin
68:       @env.instance_eval(&block)
69:       return true
70:     rescue SystemExit
71:       raise
72:     rescue Exception => exc
73:       register_exit 1
74:       actions :exception, ExceptionState.new(current && current.state, location, exc)
75:       return false
76:     end
77:   end