| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Switch to binary search in codemap.lookup_pos | Marijn Haverbeke | 2011-04-22 | 1 | -19/+15 |
| | | | | | | Patrick observed excessive slowness when looking up positions in rustc. This might help. | ||||
| * | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | 2011-04-19 | 1 | -1/+1 |
| | | |||||
| * | Fix codemap.lookup_pos | Marijn Haverbeke | 2011-04-09 | 1 | -15/+12 |
| | | | | | | Previously, it would place every single location in the first file of the crate that was parsed. | ||||
| * | Move to single-uint file-position representation. | Marijn Haverbeke | 2011-04-09 | 1 | -0/+65 |
| This makes passing them around cheaper. There is now a table (see front/codemap.rs) that is needed to transform such an uint into an actual filename/line/col location. Also cleans up the span building in the parser a bit. | |||||