| 1504 | bool var::isObject() const noexcept { return type->isObject(); } |
| 1505 | bool var::isArray() const noexcept { return type->isArray(); } |
| 1506 | bool var::isMethod() const noexcept { return type->isMethod(); } |
| 1507 | |
| 1508 | var::operator int() const noexcept { return type->toInt (value); } |
| 1509 | var::operator int64() const noexcept { return type->toInt64 (value); } |
no outgoing calls
no test coverage detected