| 97 | }; |
| 98 | |
| 99 | String GDScriptDecomp_custom::get_function_name(int p_func) const { |
| 100 | if (p_func >= 0 && p_func < functions.size()) { |
| 101 | return functions[p_func]; |
| 102 | } |
| 103 | return ""; |
| 104 | } |
| 105 | |
| 106 | int GDScriptDecomp_custom::get_function_count() const { |
| 107 | return functions.size(); |
no test coverage detected