]> git.lizzy.rs Git - rust.git/commitdiff
Debug impls for a few things in syntax::codemap
authorNick Cameron <ncameron@mozilla.com>
Thu, 9 Apr 2015 06:25:48 +0000 (18:25 +1200)
committerNick Cameron <ncameron@mozilla.com>
Thu, 9 Apr 2015 06:25:48 +0000 (18:25 +1200)
src/libsyntax/codemap.rs

index b563a5e7d6e841f017c94eb0cc9e134985fd77d4..56af43474a6155d69240411bcd01d1fbf209c704 100644 (file)
@@ -26,6 +26,8 @@
 use std::ops::{Add, Sub};
 use std::rc::Rc;
 
+use std::fmt;
+
 use libc::c_uint;
 use serialize::{Encodable, Decodable, Encoder, Decoder};
 
@@ -199,6 +201,7 @@ pub fn original_sp(cm: &CodeMap, sp: Span, enclosing_sp: Span) -> Span {
 //
 
 /// A source code location used for error reporting
+#[derive(Debug)]
 pub struct Loc {
     /// Information about the original source
     pub file: Rc<FileMap>,
@@ -211,6 +214,7 @@ pub struct Loc {
 /// A source code location used as the result of lookup_char_pos_adj
 // Actually, *none* of the clients use the filename *or* file field;
 // perhaps they should just be removed.
+#[derive(Debug)]
 pub struct LocWithOpt {
     pub filename: FileName,
     pub line: usize,
@@ -219,7 +223,9 @@ pub struct LocWithOpt {
 }
 
 // used to be structural records. Better names, anyone?
+#[derive(Debug)]
 pub struct FileMapAndLine { pub fm: Rc<FileMap>, pub line: usize }
+#[derive(Debug)]
 pub struct FileMapAndBytePos { pub fm: Rc<FileMap>, pub pos: BytePos }
 
 
@@ -449,6 +455,12 @@ fn decode<D: Decoder>(d: &mut D) -> Result<FileMap, D::Error> {
     }
 }
 
+impl fmt::Debug for FileMap {
+    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
+        write!(fmt, "FileMap({})", self.name)
+    }
+}
+
 impl FileMap {
     /// EFFECT: register a start-of-line offset in the
     /// table of line-beginnings.