| 365 | } |
| 366 | |
| 367 | bool GDScript::has_method(const StringName &p_method) const { |
| 368 | return member_functions.has(p_method); |
| 369 | } |
| 370 | |
| 371 | bool GDScript::has_static_method(const StringName &p_method) const { |
| 372 | return member_functions.has(p_method) && member_functions[p_method]->is_static(); |
no test coverage detected