| 4540 | } |
| 4541 | |
| 4542 | bool String::is_absolute_path() const { |
| 4543 | if (length() > 1) { |
| 4544 | return (operator[](0) == '/' || operator[](0) == '\\' || find(":/") != -1 || find(":\\") != -1); |
| 4545 | } else if ((length()) == 1) { |
| 4546 | return (operator[](0) == '/' || operator[](0) == '\\'); |
| 4547 | } else { |
| 4548 | return false; |
| 4549 | } |
| 4550 | } |
| 4551 | |
| 4552 | String String::validate_ascii_identifier() const { |
| 4553 | if (is_empty()) { |
no test coverage detected