File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change
1
+ /*! A codemap is a thing that maps uints to file/line/column positions
2
+ * in a crate. This to make it possible to represent the positions
3
+ * with single-word things, rather than passing records all over the
4
+ * compiler.
5
+ */
6
+
1
7
use dvec:: DVec ;
2
8
use std:: serialization:: { Serializable ,
3
9
Deserializable ,
@@ -46,12 +52,6 @@ impl file_pos : cmp::Eq {
46
52
pure fn ne ( other : & file_pos ) -> bool { !self . eq ( other) }
47
53
}
48
54
49
- /* A codemap is a thing that maps uints to file/line/column positions
50
- * in a crate. This to make it possible to represent the positions
51
- * with single-word things, rather than passing records all over the
52
- * compiler.
53
- */
54
-
55
55
enum file_substr {
56
56
fss_none,
57
57
fss_internal( span ) ,
You can’t perform that action at this time.
0 commit comments