(v Value)
| 453 | } |
| 454 | |
| 455 | func (o *baseDynamicObject) hasInstance(v Value) bool { |
| 456 | panic(newTypeError("Expecting a function in instanceof check, but got a dynamic object")) |
| 457 | } |
| 458 | |
| 459 | func (*baseDynamicObject) isExtensible() bool { |
| 460 | return true |
nothing calls this directly
no test coverage detected