about summary refs log tree commit diff
path: root/src/libsyntax/parse/mod.rs
AgeCommit message (Expand)AuthorLines
2018-07-23dump lints _after_ parsing macrosmark-3/+3
2018-07-23Extend ParseSess to support buffering lintsmark-2/+21
2018-07-14Remove some tests using AST comparisons, fix other testsVadim Petrochenkov-204/+26
2018-06-30Fortify dummy span checkingVadim Petrochenkov-3/+3
2018-06-23Auto merge of #51580 - cramertj:async-await, r=eddybbors-5/+8
2018-06-22Re-reexport some items that were recently made crate-private.Tim Kuehn-1/+1
2018-06-21Parse async fn header.Without Boats-5/+8
2018-06-09Crate-ify and delete unused code in syntax::parseMark Simulacrum-20/+37
2018-05-20lexer: Fix span override for the first token in a stringVadim Petrochenkov-2/+1
2018-05-18Make `Directory::path` a `Cow`.Nicholas Nethercote-2/+3
2018-05-09Optimize string handling in lit_token().Nicholas Nethercote-6/+17
2018-05-03Remove parse::escape_default().Nicholas Nethercote-6/+2
2018-04-26rustc_target: move in syntax::abi and flip dependency.Irina Popa-1/+1
2018-04-19Avoid allocating when parsing \u{...} literals.Nicholas Nethercote-2/+10
2018-04-10Auto merge of #49390 - Zoxc:sync-syntax, r=michaelwoeristerbors-9/+8
2018-04-06Remove more duplicated spansVadim Petrochenkov-1/+1
2018-04-06Rename `ast::Variant_::name` into `ident` + Fix rebaseVadim Petrochenkov-7/+3
2018-03-28Make ParseSess thread-safeJohn Kåre Alsaker-9/+8
2018-03-27libsyntax: Remove obsolete.rsVadim Petrochenkov-1/+0
2018-03-23Merge branch 'master' of https://github.com/Lymia/rust into rollupAlex Crichton-9/+15
2018-03-22Rollup merge of #49117 - nivkner:fixme_fixup3, r=estebankkennytm-2/+0
2018-03-18Feature gate raw identifiers.Lymia Aluysia-0/+4
2018-03-18Initial implementation of RFC 2151, Raw IdentifiersLymia Aluysia-9/+11
2018-03-17Cleanup import parsingVadim Petrochenkov-1/+1
2018-03-17remove FIXME(#8372) since for-loops wont support borrowing iteratorsNiv Kaminer-2/+0
2018-03-14Remove syntax and syntax_pos thread localsJohn Kåre Alsaker-287/+322
2018-03-08Move REGISTERED_DIAGNOSTICS to a ParseSess fieldJohn Kåre Alsaker-1/+5
2018-03-02Replace Rc with Lrc for shared dataJohn Kåre Alsaker-10/+10
2018-02-18Fix up tests and typosSeiichi Uchida-2/+2
2018-02-18Replace dummy spans with empty spansSeiichi Uchida-1/+1
2018-02-18Change ast::Visibility to Spanned typeSeiichi Uchida-1/+1
2018-01-26Do not capture stderr in the compiler. Instead just panic silently for fatal ...John Kåre Alsaker-2/+2
2018-01-04rustc: use {U,I}size instead of {U,I}s shorthands.Eduard-Mihai Burtescu-2/+2
2017-12-22Auto merge of #46732 - estebank:silence-recovered-blocks, r=petrochenkovbors-0/+1
2017-12-21Do not emit type errors on recovered blocksEsteban Küber-0/+1
2017-12-21Add GenericParam, refactor Generics in ast, hir, rustdocJonas Platte-3/+2
2017-12-19Implement non-mod.rs mod statementsTaylor Cramer-1/+8
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-12/+12
2017-09-12Auto merge of #43716 - MaloJaffre:_-in-literals, r=petrochenkovbors-7/+18
2017-08-30Make fields of `Span` privateVadim Petrochenkov-3/+3
2017-08-17Accept underscores in unicode escapesMalo Jaffré-7/+18
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-1/+1
2017-08-11Fix some typosBastien Orivel-1/+1
2017-07-30default binding modes: add pat_binding_modesTobias Schottdorf-7/+8
2017-07-29Rollup merge of #43501 - topecongiro:span-to-whereclause, r=nrcMark Simulacrum-0/+1
2017-07-28syntax: Capture a `TokenStream` when parsing itemsAlex Crichton-1/+8
2017-07-29Add Span to ast::WhereClausetopecongiro-0/+1
2017-06-26Update and fix a few testsAlex Crichton-1/+1
2017-06-26Simplify `hygiene::Mark` application, andJeffrey Seyfried-5/+8
2017-05-18Add an option to the parser to avoid parsing out of line modulesNick Cameron-2/+23