| 388 | } |
| 389 | |
| 390 | MethodInfo GDScript::get_method_info(const StringName &p_method) const { |
| 391 | HashMap<StringName, GDScriptFunction *>::ConstIterator E = member_functions.find(p_method); |
| 392 | if (!E) { |
| 393 | return MethodInfo(); |
| 394 | } |
| 395 | |
| 396 | return E->value->get_method_info(); |
| 397 | } |
| 398 | |
| 399 | bool GDScript::get_property_default_value(const StringName &p_property, Variant &r_value) const { |
| 400 | #ifdef TOOLS_ENABLED |