class SyntaxTree::YARV::Jump

### Summary

‘jump` unconditionally jumps to the label given as its only argument.

### Usage

~~~ruby x = 0 if x == 0

puts "0"

else

puts "2"

end ~~~