pry--pry/lib/pry/commands/watch_expression/expression.rb

38 lines
858 B
Ruby

class Pry
class Command::WatchExpression
class Expression
attr_reader :target, :source, :value, :previous_value
def initialize(target, source)
@target = target
@source = Code.new(source).strip
end
def eval!
@previous_value = @value
@value = Pry::ColorPrinter.pp(target_eval(target, source), "")
end
def to_s
"#{source} => #{value}"
end
# Has the value of the expression changed?
#
# We use the pretty-printed string represenation to detect differences
# as this avoids problems with dup (causes too many differences) and == (causes too few)
def changed?
(value != previous_value)
end
private
def target_eval(target, source)
target.eval(source)
rescue => e
e
end
end
end
end