| 194 | } |
| 195 | |
| 196 | SourceRange GetSourceRange(int64_t id) const { |
| 197 | if (auto it = positions_.find(id); it != positions_.end()) { |
| 198 | return it->second; |
| 199 | } |
| 200 | return SourceRange{}; |
| 201 | } |
| 202 | |
| 203 | int64_t NextId(const SourceRange& range) { |
| 204 | auto id = expr_id_++; |
no test coverage detected