class SyntaxTree::YARV::CheckKeyword

### Summary

‘checkkeyword` checks if a keyword was passed at the callsite that called into the method represented by the instruction sequence. It has two arguments: the index of the local variable that stores the keywords metadata and the index of the keyword within that metadata. It pushes a boolean onto the stack indicating whether or not the keyword was given.

### Usage

~~~ruby def evaluate(value: rand)

value

end

evaluate(value: 3) ~~~