rubyx/lib/virtual/instructions/is_true_branch.rb

9 lines
208 B
Ruby
Raw Normal View History

2015-05-06 07:55:14 +02:00
module Virtual
# implicit means there is no explcit test involved.
# normal ruby rules are false and nil are false, EVERYTHING else is true (and that includes 0)
class IsTrueBranch < Branch
end
end