summaryrefslogtreecommitdiff
path: root/src/ir/traversal.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/traversal.rs')
-rw-r--r--src/ir/traversal.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ir/traversal.rs b/src/ir/traversal.rs
index 95d2a456..0072e6b2 100644
--- a/src/ir/traversal.rs
+++ b/src/ir/traversal.rs
@@ -25,16 +25,6 @@ impl Edge {
kind: kind,
}
}
-
- /// Get the item that this edge is pointing to.
- pub fn to(&self) -> ItemId {
- self.to
- }
-
- /// Get the kind of edge that this is.
- pub fn kind(&self) -> EdgeKind {
- self.kind
- }
}
impl Into<ItemId> for Edge {