(all bool, accum []Value)
| 228 | } |
| 229 | |
| 230 | func (f *funcObject) stringKeys(all bool, accum []Value) []Value { |
| 231 | if all { |
| 232 | if _, exists := f.values["prototype"]; !exists { |
| 233 | accum = append(accum, asciiString("prototype")) |
| 234 | } |
| 235 | } |
| 236 | return f.baseFuncObject.stringKeys(all, accum) |
| 237 | } |
| 238 | |
| 239 | func (f *funcObject) iterateStringKeys() iterNextFunc { |
| 240 | if _, exists := f.values["prototype"]; !exists { |
nothing calls this directly
no test coverage detected