| 1652 | } |
| 1653 | |
| 1654 | void CSharpInstance::get_method_list(List<MethodInfo> *p_list) const { |
| 1655 | if (!script->is_valid() || !script->valid) { |
| 1656 | return; |
| 1657 | } |
| 1658 | |
| 1659 | script->get_script_method_list(p_list); |
| 1660 | } |
| 1661 | |
| 1662 | bool CSharpInstance::has_method(const StringName &p_method) const { |
| 1663 | if (script.is_null()) { |
nothing calls this directly
no test coverage detected