| 1029 | } |
| 1030 | |
| 1031 | bool Literal::isHexNumber() const |
| 1032 | { |
| 1033 | if (token() != Token::Number) |
| 1034 | return false; |
| 1035 | return boost::starts_with(value(), "0x"); |
| 1036 | } |
| 1037 | |
| 1038 | bool Literal::looksLikeAddress() const |
| 1039 | { |
no outgoing calls
no test coverage detected