| 42 | const std::vector<int>& columns() { return columns_; } |
| 43 | int firstLineColumn() { return columns_.front() - initialColumn_; } |
| 44 | int lines() const { return lines_; } |
| 45 | void set_volatile(bool v) { volatile_ = v; } |
| 46 | bool isLastCharWhiteSpace() const { return ' ' == lastChar_; } |
| 47 | }; |
no outgoing calls
no test coverage detected