| 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(); |
| 373 | } |
| 374 | |
| 375 | int GDScript::get_script_method_argument_count(const StringName &p_method, bool *r_is_valid) const { |
| 376 | HashMap<StringName, GDScriptFunction *>::ConstIterator E = member_functions.find(p_method); |