Represents the splat portion of the index in an expression:
obj[arg, arg, *head] = body
Evaluates head to create an array.
Evaluates body and pushes the result
onto the end of the array, which will then be used to form the arguments of
the method call.