]> git.lizzy.rs Git - rust.git/commit
Fix spans for attributes
authorSteven Fackler <sfackler@gmail.com>
Fri, 11 Jul 2014 22:26:26 +0000 (15:26 -0700)
committerSteven Fackler <sfackler@gmail.com>
Fri, 11 Jul 2014 22:26:26 +0000 (15:26 -0700)
commit52ccab1405478837193893ae47d17e3de64a77e6
tree35817e112d498c677892fea0226bbc8c718d61c4
parent75c1fb535dc4dc8732c2cf9ed3696789081ab3b7
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]
          ^~~~~~~
```
src/libsyntax/parse/attr.rs