| 180 | void set_location(std::string location) { location_ = std::move(location); } |
| 181 | |
| 182 | void set_line_offsets(std::vector<int32_t> line_offsets) { |
| 183 | line_offsets_ = std::move(line_offsets); |
| 184 | } |
| 185 | |
| 186 | void set_positions(absl::flat_hash_map<int64_t, int32_t> positions) { |
| 187 | positions_ = std::move(positions); |