| 800 | } |
| 801 | |
| 802 | inline bool is_key_path_char(char c) |
| 803 | { |
| 804 | return (isalnum(c) || c == '.' || c == '_'); |
| 805 | } |
| 806 | |
| 807 | const KeywordDef k_keywords[] = { { token_type_t::TRUE_TOKEN, "true" }, { token_type_t::FALSE_TOKEN, "false" }, { token_type_t::FOR_TOKEN, "for" }, |
| 808 | { token_type_t::IN_TOKEN, "in" }, { token_type_t::IF_TOKEN, "if" }, { token_type_t::ELIF_TOKEN, "elif" }, |
no outgoing calls
no test coverage detected