| 358 | } |
| 359 | |
| 360 | bool IsCommentStyle (int style) { |
| 361 | switch (style) { |
| 362 | case SCE_SQL_COMMENT : |
| 363 | case SCE_SQL_COMMENTDOC : |
| 364 | case SCE_SQL_COMMENTLINE : |
| 365 | case SCE_SQL_COMMENTLINEDOC : |
| 366 | case SCE_SQL_COMMENTDOCKEYWORD : |
| 367 | case SCE_SQL_COMMENTDOCKEYWORDERROR : |
| 368 | return true; |
| 369 | default : |
| 370 | return false; |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | bool IsCommentLine (Sci_Position line, LexAccessor &styler) { |
| 375 | Sci_Position pos = styler.LineStart(line); |
nothing calls this directly
no outgoing calls
no test coverage detected