| 169 | } |
| 170 | |
| 171 | char32_t StringName::operator[](int p_index) const { |
| 172 | if (_data) { |
| 173 | return _data->name[p_index]; |
| 174 | } |
| 175 | |
| 176 | CRASH_BAD_INDEX(p_index, 0); |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | int StringName::length() const { |
| 181 | if (_data) { |
no outgoing calls
no test coverage detected