Move EntityRef and entity_impl! into a new module.

The EntityRef trait is used by more than just the EntityMap now, so it
should live in its own module.

Also move the entity_impl! macro into the new module so it can be used
for defining new entity references anywhere.
This commit is contained in:
Jakob Stoklund Olesen
2017-06-20 10:07:23 -07:00
parent 0c7316ae28
commit b6cff6a98a
14 changed files with 85 additions and 100 deletions

View File

@@ -89,7 +89,7 @@ impl RegDiversions {
mod tests {
use super::*;
use ir::Value;
use entity_map::EntityRef;
use entity_ref::EntityRef;
#[test]
fn inserts() {