| 1550 | } |
| 1551 | |
| 1552 | static void _write_string(Ref<FileAccess> f, int p_tablevel, const String &p_string) { |
| 1553 | if (p_string.is_empty()) { |
| 1554 | return; |
| 1555 | } |
| 1556 | String tab = String("\t").repeat(p_tablevel); |
| 1557 | f->store_string(tab + p_string + "\n"); |
| 1558 | } |
| 1559 | |
| 1560 | static void _write_method_doc(Ref<FileAccess> f, const String &p_name, Vector<DocData::MethodDoc> &p_method_docs) { |
| 1561 | if (!p_method_docs.is_empty()) { |
no test coverage detected