| 248 | } |
| 249 | |
| 250 | static StringParam::ParamType GetParamType(const CmdStruct *cs) |
| 251 | { |
| 252 | if (cs->value == SCC_RAW_STRING_POINTER) return StringParam::RAW_STRING; |
| 253 | if (cs->value == SCC_STRING || cs != TranslateCmdForCompare(cs)) return StringParam::STRING; |
| 254 | return StringParam::OTHER; |
| 255 | } |
| 256 | |
| 257 | static void ExtractStringParams(const StringData &data, StringParamsList ¶ms) |
| 258 | { |
no test coverage detected