| 710 | } |
| 711 | |
| 712 | static bool is_lua_identifier_char(char ch) |
| 713 | { |
| 714 | return isalnum(ch) != 0 |
| 715 | || ch == '_' |
| 716 | || ch == '.' |
| 717 | ; |
| 718 | } |
| 719 | |
| 720 | static void append_suggestion_item(StringStream &ss, bool &first, const char *table_prefix, const char *key, const char *child_key) |
| 721 | { |
no outgoing calls
no test coverage detected