about summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer.rs
AgeCommit message (Expand)AuthorLines
2013-08-15Better error message for unknown start of tokenKevin Ballard-1/+3
2013-08-11libsyntax: Update from `@Object` to `@mut Object` as requiredNiko Matsakis-10/+11
2013-08-08Allow attributes to appear as macro argumentsNiko Matsakis-1/+5
2013-08-03remove obsolete `foreach` keywordDaniel Micay-1/+1
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-1/+1
2013-07-17librustc: Change repeated vector expressions to use implicit copyability.Patrick Walton-2/+5
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-7/+9
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-9/+9
2013-06-28librustc: Remove the broken overloaded assign-ops from the language.Patrick Walton-4/+4
2013-06-25great renaming propagation: syntaxCorey Richardson-6/+3
2013-06-23vec: remove BaseIter implementationDaniel Micay-1/+1
2013-06-14add IteratorUtil to the preludeDaniel Micay-1/+0
2013-06-13Use @str instead of @~str in libsyntax and librustc. Fixes #5048.Huon Wilson-14/+14
2013-06-11lexer: show correct span on unrecognized token startPhilipp Brüschweiler-1/+5
2013-06-10clean-up unused import warningsHuon Wilson-2/+1
2013-06-10std: convert str::char_at* to methods.Huon Wilson-2/+2
2013-06-10std: convert str::reserve* to methods, and methodise str::push_*.Huon Wilson-16/+13
2013-06-10std: replace str::{any,all}_between with the iterator equivalent.Huon Wilson-1/+1
2013-06-10std: remove str::{len, slice, is_empty} in favour of methods.Huon Wilson-3/+3
2013-06-10std: replace str::all/any fns and methods with iteratorsHuon Wilson-1/+2
2013-06-08Lexer: Avoid unnecessary allocationsBjörn Steinbrink-38/+52
2013-06-08Avoid unnecessary (re-)allocations in the lexerBjörn Steinbrink-7/+8
2013-06-08Lexer: Fix offset handling in get_str_from()Björn Steinbrink-9/+7
2013-06-05removed unused imports (and one unused argument)John Clements-2/+2
2013-06-05remove interner field from string_readerJohn Clements-22/+14
2013-06-05interner just uses uints, not idents with syntax contextJohn Clements-15/+15
2013-06-05removed some interner fieldsJohn Clements-3/+0
2013-06-05just use TLS internerJohn Clements-14/+16
2013-06-04librustc: Disallow multiple patterns from appearing in a "let" declaration.Patrick Walton-2/+6
2013-05-30Remove a bunch of unnecessary allocations and copiesBjörn Steinbrink-1/+2
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+5
2013-05-28Remove unnecessary allocations flagged by lintSeo Sanghyeon-1/+1
2013-05-24auto merge of #6680 : ben0x539/rust/slashslashslash, r=graydonbors-2/+9
2013-05-22librustc: Change `std` to `extra` throughout libsyntax and librustcPatrick Walton-2/+0
2013-05-22libextra: Rename the actual metadata names of libcore to libstd and libstd to...Patrick Walton-0/+2
2013-05-22declare that "///" is still a doc comment, just not "////+" (fixes #5838)Benjamin Herr-2/+9
2013-05-20getting rid of interner_key! macroJohn Clements-1/+1
2013-05-09Use a specialized string interner to reduce the need for owned stringsBjörn Steinbrink-22/+22
2013-05-05Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freezeNiko Matsakis-10/+0
2013-05-02Remove 'Local Variable' commentsBrendan Zabarauskas-10/+0
2013-05-01syntax: fix up dynamic borrow errors in libsyntaxNiko Matsakis-2/+2
2013-04-28parser commentsJohn Clements-0/+2
2013-04-28remove unused functions, fix tiny lexing bugJohn Clements-10/+1
2013-04-27only use #[no_core] in libcoreDaniel Micay-7/+0
2013-04-18core: replace unicode match exprs with bsearch in const arrays, minor perf win.Graydon Hoare-2/+2
2013-04-16libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ...Huon Wilson-1/+1
2013-04-08auto merge of #5787 : alexcrichton/rust/less-mut-fields, r=catamorphismbors-6/+4
2013-04-08Removing no longer needed unsafe blocksAlex Crichton-6/+4
2013-04-08libsyntax: fail lexing with an error message on an int literal larger than 2^64.Huon Wilson-2/+9
2013-04-03auto merge of #5559 : jbclements/rust/change-to-tt-based-parsing, r=jbclementsbors-1/+6