class SyntaxTree::YARV::BranchIf

### Summary

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

If the value popped off the stack is true, ‘branchif` jumps to the jump index and continues executing there.

### Usage

~~~ruby x = true x ||= “foo” puts x ~~~