(proxy, text, args)
| 526 | var slice = arrayProto.slice; |
| 527 | |
| 528 | function throwYieldError(proxy, text, args) { |
| 529 | var msg = functionName(proxy) + text; |
| 530 | if (args.length) { |
| 531 | msg += " Received [" + join(slice(args), ", ") + "]"; |
| 532 | } |
| 533 | throw new Error(msg); |
| 534 | } |
| 535 | |
| 536 | var callProto = { |
| 537 | calledOn: function calledOn(thisValue) { |