(functionName)
| 474 | } |
| 475 | |
| 476 | _getNativeFunction(functionName) { |
| 477 | for (let i = 0; i < this.nativeFunctions.length; i++) { |
| 478 | if (this.nativeFunctions[i].name === functionName) return this.nativeFunctions[i]; |
| 479 | } |
| 480 | return null; |
| 481 | } |
| 482 | |
| 483 | _isNativeFunction(functionName) { |
| 484 | return Boolean(this._getNativeFunction(functionName)); |
no outgoing calls
no test coverage detected