()
| 237 | } |
| 238 | |
| 239 | func (f *funcObject) iterateStringKeys() iterNextFunc { |
| 240 | if _, exists := f.values["prototype"]; !exists { |
| 241 | f.addPrototype() |
| 242 | } |
| 243 | return f.baseFuncObject.iterateStringKeys() |
| 244 | } |
| 245 | |
| 246 | func (f *baseFuncObject) createInstance(newTarget *Object) *Object { |
| 247 | r := f.val.runtime |
nothing calls this directly
no test coverage detected