| 315 | } |
| 316 | |
| 317 | static bool isEmptyLine(int pos, |
| 318 | Accessor &styler) { |
| 319 | int spaceFlags = 0; |
| 320 | int lineCurrent = styler.GetLine(pos); |
| 321 | int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, NULL); |
| 322 | return (indentCurrent & SC_FOLDLEVELWHITEFLAG) != 0; |
| 323 | } |
| 324 | |
| 325 | static bool RE_CanFollowKeyword(const char *keyword) { |
| 326 | if (!strcmp(keyword, "and") |
no test coverage detected