* @deprecated
(method, ...args)
| 429 | */ |
| 430 | |
| 431 | call(method, ...args) { |
| 432 | if ('function' === typeof method) { |
| 433 | return method.apply(args); |
| 434 | |
| 435 | } else { |
| 436 | throw new VMError('Unrecognized method type.'); |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * Freezes the object inside VM making it read-only. Not available for primitive values. |
no outgoing calls
no test coverage detected