| 174 | } |
| 175 | |
| 176 | String GDScriptTokenizer::Token::get_debug_name() const { |
| 177 | switch (type) { |
| 178 | case IDENTIFIER: |
| 179 | return vformat(R"(identifier "%s")", source); |
| 180 | default: |
| 181 | return vformat(R"("%s")", get_name()); |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | bool GDScriptTokenizer::Token::can_precede_bin_op() const { |
| 186 | switch (type) { |
no test coverage detected