(val *Object)
| 369 | } |
| 370 | |
| 371 | func (r *Runtime) createGeneratorFunction(val *Object) objectImpl { |
| 372 | o := r.newNativeFuncConstructObj(val, r.builtin_generatorFunction, "GeneratorFunction", r.getGeneratorFunctionPrototype(), 1) |
| 373 | return o |
| 374 | } |
| 375 | |
| 376 | func (r *Runtime) getGeneratorFunction() *Object { |
| 377 | var o *Object |
no test coverage detected