rubyx/lib/virtual/instructions/is_true_branch.rb
2015-05-06 08:55:14 +03:00

9 lines
208 B
Ruby

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