about summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer/comments.rs
AgeCommit message (Expand)AuthorLines
2016-01-04address review commentTshepang Lekhonkhobe-10/+2
2016-01-03run rustfmt on syntax::parse::lexerTshepang Lekhonkhobe-51/+71
2015-12-17move error handling from libsyntax/diagnostics.rs to libsyntax/errors/*Nick Cameron-2/+2
2015-10-27Start pushing panics outward in lexer.Eli Friedman-1/+1
2015-10-01Stop re-exporting AttrStyle's variants and rename them.Ms2ger-2/+2
2015-09-03std: Account for CRLF in {str, BufRead}::linesAlex Crichton-1/+1
2015-07-10Change some instances of .connect() to .join()Wesley Wiser-1/+1
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-21syntax: Copy unstable str::char_at into libsyntaxErick Tryzelaar-3/+4
2015-04-21syntax: Replace String::from_str with the stable String::fromErick Tryzelaar-1/+1
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-2/+2
2015-03-17std: Tweak some unstable features of `str`Alex Crichton-4/+3
2015-03-04std: Deprecate std::old_io::fsAlex Crichton-4/+4
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-2/+2
2015-02-20Addressed PR commentsMarvin Löbel-2/+2
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-3/+3
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-3/+3
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-2/+2
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-2/+2
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-02-02Omit integer suffix when unnecessaryAlfie John-3/+3
2015-01-26Fallout of io => old_ioAlex Crichton-2/+2
2015-01-21rollup merge of #21396: japaric/no-parens-in-rangeAlex Crichton-2/+2
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-2/+2
2015-01-18libsyntax: 0u -> 0us, 0i -> 0isPaul Collier-4/+4
2015-01-18libsyntax: int types -> isizePaul Collier-1/+1
2015-01-18libsyntax: int => i32 in appropriate placesPaul Collier-2/+2
2015-01-17libsyntax: rename functions from uint to usizePaul Collier-1/+1
2015-01-17libsyntax: uint types to usizePaul Collier-4/+4
2015-01-07use slicing sugarJorge Aparicio-8/+8
2015-01-07Replace full slice notation with index callsNick Cameron-8/+8
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-3/+3
2014-12-21Fallout of std::str stabilizationAlex Crichton-8/+8
2014-12-19libsyntax: use `#[deriving(Copy)]`Jorge Aparicio-3/+1
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+2
2014-12-06libsyntax: remove unnecessary `to_string()` callsJorge Aparicio-11/+11
2014-12-06libsyntax: remove unnecessary `as_slice()` callsJorge Aparicio-8/+7
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+2
2014-10-29Rename fail! to panic!Steve Klabnik-2/+2
2014-10-28Move token-to-string functions into print::pprustBrendan Zabarauskas-2/+2
2014-10-28Convert some token functions into methodsBrendan Zabarauskas-1/+1
2014-10-24Add a lint for not using field pattern shorthandsP1start-1/+1
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-8/+8
2014-07-15Deprecate `str::from_utf8_owned`Adolfo Ochagavía-1/+1
2014-07-09lexer: lex WS/COMMENT/SHEBANG rather than skippingCorey Richardson-4/+4
2014-07-09syntax: doc comments all the thingsCorey Richardson-7/+11
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-1/+1
2014-06-26Remove unnecessary to_string callsPiotr Jawniak-1/+1
2014-06-04syntax: methodify the lexerCorey Richardson-0/+424