Files
rust/src/libsyntax/parse
Steven Fackler 52ccab1405 Fix spans for attributes
They used to be one token too long, so you'd see things like
```
rust/rust/test.rs:1:1: 2:2 warning: unused attribute,
rust/rust/test.rs:1 #![foo]
rust/rust/test.rs:2 #![bar]
```
instead of
```
test.rs:1:1: 1:8 warning: unused attribute, #[warn(unused_attribute)] on
by default
test.rs:1 #![foo]
          ^~~~~~~
```
2014-07-11 15:26:26 -07:00
..
2014-07-11 15:26:26 -07:00
2014-07-09 00:06:27 -07:00
2014-07-09 00:49:54 -07:00
2014-07-09 00:49:54 -07:00