Get the source location where an entity was defined.
(&self, entity: AnyEntity)
| 127 | |
| 128 | /// Get the source location where an entity was defined. |
| 129 | pub fn location(&self, entity: AnyEntity) -> Option<Location> { |
| 130 | self.locations.get(&entity).cloned() |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | impl SourceMap { |
no test coverage detected