| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -2/+3 | |
| 2011-11-24 | rustc: Fix position of diagnostic highlight lines | Haitao Li | -1/+1 | |
| Diagnostic highlight lines are incorrect placed when the related line number is 10, 100, etc. The root cause is line number are treated as 0 based (should be 1 based) when calculating offset of line number digits. | ||||
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -1/+0 | |
| 2011-10-29 | stdlib: Make io failures recoverable by returning a result | Brian Anderson | -2/+8 | |
| 2011-10-28 | rustc: Extract error reporting from codemap | Brian Anderson | -13/+42 | |
| 2011-10-27 | Use the std::term color constants in the codemap | Brian Anderson | -3/+3 | |
| Exported constants work now. Woo! | ||||
| 2011-10-21 | Remove last uses of iterators from stdlib | Marijn Haverbeke | -3/+1 | |
| Issue #1056 | ||||
| 2011-09-12 | Factor imports mindlessly. | Graydon Hoare | -8/+2 | |
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -8/+8 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -37/+33 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -5/+5 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -10/+10 | |
| 2011-09-01 | Remove std::str. Issue #855 | Brian Anderson | -1/+0 | |
| 2011-08-31 | Remove a few more usages of std::str from rustc. Issue #855 | Brian Anderson | -5/+5 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -13/+10 | |
| 2011-08-27 | Convert rustc::syntax::codemap to istrs. Issue #855 | Brian Anderson | -31/+31 | |
| 2011-08-27 | Convert parser to istrs. Issue #855 | Brian Anderson | -7/+13 | |
| 2011-08-27 | Convert std::io to istrs. Issue #855 | Brian Anderson | -10/+13 | |
| 2011-08-27 | Don't output bogus spans when reporting a message without one. | Brian Anderson | -3/+3 | |
| Emacs gets confused by <input>:0:0:0:0: | ||||
| 2011-08-27 | Output error spans that don't confuse emacs compilation mode. Closes #845 | Brian Anderson | -2/+2 | |
| 2011-08-20 | Reformat | Brian Anderson | -28/+27 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-16 | Port the compiler to the typaram foo<T> syntax. | Erick Tryzelaar | -7/+7 | |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -8/+8 | |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -3/+3 | |
| 2011-08-15 | Make spans into stacks (to store expansion backtraces). | Paul Stansifer | -4/+26 | |
| 2011-08-12 | Rename std::termivec to std::term | Brian Anderson | -5/+5 | |
| 2011-08-12 | Rename std::ioivec to std::io | Brian Anderson | -11/+11 | |
| 2011-08-09 | Port the compiler to the ivec type [T] syntax. | Erick Tryzelaar | -3/+3 | |
| 2011-08-02 | Use ioivec::read_whole_file_str in a few places | Brian Anderson | -2/+1 | |
| 2011-08-02 | Compiler accepts input from stdin when source file is called "-" | Brian Anderson | -0/+11 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -135/+121 | |
| 2011-07-16 | Make clear the differentiation between char pos and byte pos in filemaps. ↵ | Josh Matthews | -21/+39 | |
| Fix up error printing for files with multi-byte characters. | ||||
| 2011-07-16 | Fix pre-existing problem with filemap line positions always starting at 0. ↵ | Josh Matthews | -4/+12 | |
| Fix error line output to only retrieve up to the nearest newline. | ||||
| 2011-07-16 | Use the actual start position of the file in the codemap rather than the ↵ | Josh Matthews | -4/+2 | |
| position of the first newline. | ||||
| 2011-07-16 | Reenable error line printing. | Josh Matthews | -2/+1 | |
| 2011-07-16 | Fix error line display slicing. | Josh Matthews | -5/+7 | |
| 2011-07-15 | rustc: Remove a bunch of exterior vectors | Patrick Walton | -16/+17 | |
| 2011-07-14 | rustc: Move much of metadata reading over to interior vectors | Patrick Walton | -15/+16 | |
| 2011-07-12 | Fix fast-check target by disabling code snippet printing on warnings (broken ↵ | Graydon Hoare | -1/+4 | |
| on .rc files) and adding an xfail-fast flag for global-scope.rs. | ||||
| 2011-07-11 | Only print up to six lines on error. Print ^~~~~ to highlight error span. | Josh Matthews | -1/+49 | |
| 2011-07-11 | Hack to print lines when error spans are available. | Josh Matthews | -2/+55 | |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -0/+96 | |
| src/comp/syntax is currently just a sub-module of rustc, but it will, in the near future, be its own crate. This includes: - The AST data structure - The parser - The pretty-printer - Visit, walk, and fold - The syntax extension system - Some utility stuff that should be in the stdlib* *) Stdlib extensions currently require a snapshot before they can be used, and the win build is very broken right now. This is temporary and will be cleaned up when one of those problems goes away. A lot of code was moved by this patch, mostly towards a more organized layout. Some package paths did get longer, and I guess the new layout will take some getting used to. Sorry about that! Please try not to re-introduce any dependencies in syntax/ on any of the other src/comp/ subdirs. | ||||
