about summary refs log tree commit diff
path: root/src/librustc_errors
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2018-01-29 11:14:55 +0530
committerManish Goregaokar <manishsmail@gmail.com>2018-02-02 09:18:49 +0530
commitc7850139517d209ec9f2879e12cd7bb69cc78a9c (patch)
tree7b35643de4656970809b53d71c3c9b88128457ef /src/librustc_errors
parent56733bc9f8302409a2b6110f422512923c878154 (diff)
downloadrust-c7850139517d209ec9f2879e12cd7bb69cc78a9c.tar.gz
rust-c7850139517d209ec9f2879e12cd7bb69cc78a9c.zip
Remove dead code
Diffstat (limited to 'src/librustc_errors')
-rw-r--r--src/librustc_errors/snippet.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/librustc_errors/snippet.rs b/src/librustc_errors/snippet.rs
index 6035f33c822..7d416f13ffc 100644
--- a/src/librustc_errors/snippet.rs
+++ b/src/librustc_errors/snippet.rs
@@ -10,32 +10,8 @@
 
 // Code for annotating snippets.
 
-use syntax_pos::{Span, FileMap};
-use CodeMapper;
-use std::rc::Rc;
 use Level;
 
-#[derive(Clone)]
-pub struct SnippetData {
-    codemap: Rc<CodeMapper>,
-    files: Vec<FileInfo>,
-}
-
-#[derive(Clone)]
-pub struct FileInfo {
-    file: Rc<FileMap>,
-
-    /// The "primary file", if any, gets a `-->` marker instead of
-    /// `>>>`, and has a line-number/column printed and not just a
-    /// filename (other files are not guaranteed to have line numbers
-    /// or columns). It appears first in the listing. It is known to
-    /// contain at least one primary span, though primary spans (which
-    /// are designated with `^^^`) may also occur in other files.
-    primary_span: Option<Span>,
-
-    lines: Vec<Line>,
-}
-
 #[derive(Clone, Debug, PartialOrd, Ord, PartialEq, Eq)]
 pub struct Line {
     pub line_index: usize,