(name unistring.String)
| 217 | } |
| 218 | |
| 219 | func (f *funcObject) hasOwnPropertyStr(name unistring.String) bool { |
| 220 | if f.baseObject.hasOwnPropertyStr(name) { |
| 221 | return true |
| 222 | } |
| 223 | |
| 224 | if name == "prototype" { |
| 225 | return true |
| 226 | } |
| 227 | return false |
| 228 | } |
| 229 | |
| 230 | func (f *funcObject) stringKeys(all bool, accum []Value) []Value { |
| 231 | if all { |
nothing calls this directly
no test coverage detected