| 80 | } |
| 81 | |
| 82 | static inline bool IsEOL( Accessor &styler, unsigned curPos ) { |
| 83 | unsigned ch = styler.SafeGetCharAt( curPos ); |
| 84 | if( ( ch == '\r' && styler.SafeGetCharAt( curPos + 1 ) == '\n' ) || |
| 85 | ( ch == '\n' ) ) { |
| 86 | return true; |
| 87 | } |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | static inline bool checkStatement( |
| 92 | Accessor &styler, |
no test coverage detected