remove unused is_internal function from indexing.rs

This commit is contained in:
Mark Thom
2021-02-11 18:51:21 -07:00
parent e7cf5d4f3d
commit bd97083268

View File

@@ -22,17 +22,6 @@ pub enum IndexingCodePtr {
Internal(usize), // the index points into the indexing instruction prelude.
}
impl IndexingCodePtr {
#[inline]
fn is_internal(self) -> bool {
if let IndexingCodePtr::Internal(_) = self {
true
} else {
false
}
}
}
#[derive(Debug, Clone, Copy)]
enum OptArgIndexKeyType {
Structure,