| 621 | } |
| 622 | |
| 623 | bool |
| 624 | Object::toBool() const |
| 625 | { |
| 626 | if (toInteger() > 0) { |
| 627 | return true; |
| 628 | } |
| 629 | return false; |
| 630 | } |
| 631 | |
| 632 | Object::ObjectType |
| 633 | Object::objectType() const |
nothing calls this directly
no outgoing calls
no test coverage detected