class SyntaxTree::YARV::BranchUnless

### Summary

‘branchunless` has one argument: the jump index. It pops one value off the stack: the jump condition.

If the value popped off the stack is false or nil, ‘branchunless` jumps to the jump index and continues executing there.

### Usage

~~~ruby if 2 + 3

puts "foo"

end ~~~