Module: Pry::Testable::Evalable
- Defined in:
- lib/pry/testable/evalable.rb
Instance Method Summary collapse
Instance Method Details
#pry_eval(*eval_strs) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/pry/testable/evalable.rb', line 13 def pry_eval(*eval_strs) b = if eval_strs.first.is_a?(String) Pry.toplevel_binding else Pry.binding_for(eval_strs.shift) end pry_tester(b).eval(*eval_strs) end |