(p unistring.String, receiver Value)
| 180 | } |
| 181 | |
| 182 | func (f *funcObject) getStr(p unistring.String, receiver Value) Value { |
| 183 | return f.getStrWithOwnProp(f.getOwnPropStr(p), p, receiver) |
| 184 | } |
| 185 | |
| 186 | func (f *funcObject) getOwnPropStr(name unistring.String) Value { |
| 187 | if v := f._addProto(name); v != nil { |
nothing calls this directly
no test coverage detected