Correct Not_op

This commit is contained in:
Roguelearg 2017-09-12 11:21:07 +02:00
parent 252f8531b9
commit 9a7a2f0955

View file

@ -31,7 +31,8 @@ module Mm2ep
end
def not_op
return true unless expr == true
# binding.pry
return true unless expr.value.to_s.eql? 'true'
return false
end
end