(v *Object)
| 276 | } |
| 277 | |
| 278 | func (r *Runtime) createFunction(v *Object) objectImpl { |
| 279 | return r.newNativeFuncConstructObj(v, r.builtin_Function, "Function", r.getFunctionPrototype(), 1) |
| 280 | } |
| 281 | |
| 282 | func (r *Runtime) createAsyncFunctionProto(val *Object) objectImpl { |
| 283 | o := &baseObject{ |
no test coverage detected