about summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer.rs
AgeCommit message (Expand)AuthorLines
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
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-2/+2
2013-03-29commenting parserJohn Clements-1/+6
2013-03-22librustc: Remove `pure` from libsyntax and librustc.Patrick Walton-5/+5
2013-03-22syntax: replace uses of old deriving attribute with new oneAndrew Paseltiner-1/+1
2013-03-21auto merge of #5407 : jbclements/rust/add-assert-eq-macro, r=jbclementsbors-10/+9
2013-03-21back-renamed slice_DBG_BRWD, slice_V_DBG_BRWD -> slice, slice_DBG_UNIQ -> sli...Marvin Löbel-1/+1
2013-03-21renamed str::view -> slice_DBG_BRWDMarvin Löbel-2/+2
2013-03-20change some uses of fail_unless to assert_eqJohn Clements-10/+9
2013-03-18librustc: Make the compiler ignore purity.Patrick Walton-2/+2
2013-03-13librustc: Don't accept `as Trait` anymore; fix all occurrences of it.Patrick Walton-9/+9
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-6/+6
2013-03-04Adding missing imports for tests, and gate off othersAlex Crichton-1/+0
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-03-01Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-2/+6
2013-02-28Fix implicit leaks of imports throughout librariesAlex Crichton-2/+6
2013-02-27Merge remote-tracking branch 'remotes/origin/incoming' into incomingErick Tryzelaar-1/+49