(pageFunction: FuncOn<T, Arg, R>, arg?: Arg)
| 164 | } |
| 165 | |
| 166 | async evaluate<R, Arg>(pageFunction: FuncOn<T, Arg, R>, arg?: Arg): Promise<R> { |
| 167 | return evaluate(this._context, true /* returnByValue */, pageFunction, this, arg); |
| 168 | } |
| 169 | |
| 170 | async evaluateHandle<R, Arg>(pageFunction: FuncOn<T, Arg, R>, arg?: Arg): Promise<SmartHandle<R>> { |
| 171 | return evaluate(this._context, false /* returnByValue */, pageFunction, this, arg); |
nothing calls this directly
no test coverage detected