(callFrames)
| 561 | } |
| 562 | |
| 563 | static from(callFrames) { |
| 564 | return FunctionPrototypeCall( |
| 565 | ArrayFrom, |
| 566 | this, |
| 567 | callFrames, |
| 568 | (callFrame) => |
| 569 | (callFrame instanceof CallFrame ? |
| 570 | callFrame : |
| 571 | new CallFrame(callFrame)), |
| 572 | ); |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | function prepareControlCode(input) { |
no outgoing calls
no test coverage detected