| 718 | } |
| 719 | |
| 720 | static void append_suggestion_item(StringStream &ss, bool &first, const char *table_prefix, const char *key, const char *child_key) |
| 721 | { |
| 722 | if (!first) |
| 723 | ss << ","; |
| 724 | ss << "\""; |
| 725 | ss << table_prefix; |
| 726 | ss << key; |
| 727 | if (child_key != NULL) { |
| 728 | ss << "."; |
| 729 | ss << child_key; |
| 730 | } |
| 731 | ss << "\""; |
| 732 | first = false; |
| 733 | } |
| 734 | |
| 735 | static bool resolve_lua_table(DynamicString &table_prefix, lua_State *L, const char *table_path) |
| 736 | { |
no outgoing calls
no test coverage detected