summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer/comments.rs
AgeCommit message (Expand)AuthorLines
2019-05-11Eliminate `comments::Literal`Vadim Petrochenkov-26/+3
2019-02-10rustc: doc commentsAlexander Regueiro-3/+3
2019-02-07libsyntax => 2018Taiki Endo-12/+17
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-05Fix pretty testShotaro Yamada-1/+1
2018-12-04Use iterator and pattern APIs instead of `char_at`Shotaro Yamada-21/+7
2018-08-23use String::new() instead of String::from(""), "".to_string(), "".to_owned() ...Matthias Krüger-1/+1
2018-08-19mv codemap() source_map()Donato Sciarra-1/+1
2018-08-19mv (mod) codemap source_mapDonato Sciarra-1/+1
2018-08-19mv filemap source_fileDonato Sciarra-4/+4
2018-08-19mv CodeMap SourceMapDonato Sciarra-2/+2
2018-08-13A few cleanups and minor improvements for the lexerljedrz-6/+16
2018-07-10Deny bare trait objects in in src/libsyntaxljedrz-1/+1
2018-06-28Fix FileMap::line_begin_pos().Michael Woerister-2/+4
2018-06-09Crate-ify and delete unused code in syntax::parseMark Simulacrum-1/+1
2018-05-20lexer: Fix span override for the first token in a stringVadim Petrochenkov-1/+1
2018-05-14Remove `StringReader::col`.Nicholas Nethercote-1/+13
2018-01-26Do not capture stderr in the compiler. Instead just panic silently for fatal ...John Kåre Alsaker-1/+1
2018-01-06wherein careful doc-decoration arithmetic proves quite the ICE-breakerZack M. Davis-1/+1
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-2/+2
2017-08-30Make fields of `Span` privateVadim Petrochenkov-1/+1
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-3/+3
2017-05-12Fix some clippy warnings in libsyntaxAndre Bogus-1/+1
2017-04-26Implement a file-path remapping feature in support of debuginfo and reproduci...Michael Woerister-2/+2
2017-01-17Introduce `string_reader.parse_all_token_trees()`.Jeffrey Seyfried-4/+2
2017-01-17Give the `StringReader` a `sess: &ParseSess`.Jeffrey Seyfried-6/+3
2016-10-18Fix some pretty printing testsVadim Petrochenkov-16/+30
2016-10-05Rename StringReader::curr as ch.Nicholas Nethercote-15/+15
2016-10-05Rename StringReader::last_pos as pos.Nicholas Nethercote-5/+5
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+2
2016-06-16Add an abs_path member to FileMap, use it when writing debug info.Ted Mielczarek-1/+1
2016-01-16libsyntax: accept only whitespace with the PATTERN_WHITE_SPACE propertyKevin Butler-2/+2
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