(val *Object)
| 306 | } |
| 307 | |
| 308 | func (r *Runtime) createAsyncFunction(val *Object) objectImpl { |
| 309 | o := r.newNativeFuncConstructObj(val, r.builtin_asyncFunction, "AsyncFunction", r.getAsyncFunctionPrototype(), 1) |
| 310 | |
| 311 | return o |
| 312 | } |
| 313 | |
| 314 | func (r *Runtime) getAsyncFunction() *Object { |
| 315 | var o *Object |
no test coverage detected