| 371 | // Functions supporting OScript code folding. |
| 372 | |
| 373 | static inline bool IsBlockComment(int style) { |
| 374 | return style == SCE_OSCRIPT_BLOCK_COMMENT; |
| 375 | } |
| 376 | |
| 377 | static bool IsLineComment(int line, Accessor &styler) { |
| 378 | int pos = styler.LineStart(line); |