| 960 | bool IsUint64() const { return (data_.f.flags & kUint64Flag) != 0; } |
| 961 | bool IsDouble() const { return (data_.f.flags & kDoubleFlag) != 0; } |
| 962 | bool IsString() const { return (data_.f.flags & kStringFlag) != 0; } |
| 963 | |
| 964 | // Checks whether a number can be losslessly converted to a double. |
| 965 | bool IsLosslessDouble() const { |
no outgoing calls
no test coverage detected