about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2018-01-13Rollup merge of #47298 - cramertj:path-as-modrs, r=nikomatsakiskennytm-4/+8
2018-01-09Treat #[path] files as mod.rs filesTaylor Cramer-4/+8
2018-01-08Auto merge of #47232 - keatinge:master, r=petrochenkovbors-2/+14
2018-01-06Fix tidy errorkeatinge-2/+5
2018-01-06Use span_suggestion instead of span_err_helpkeatinge-3/+3
2018-01-06fix stylekeatinge-4/+2
2018-01-06Emit non-fatal error insteadkeatinge-8/+10
2018-01-06fix capitalizationkeatinge-2/+2
2018-01-06Add help message for incorrect pattern syntaxkeatinge-1/+10
2018-01-03Support `extern` in pathsVadim Petrochenkov-4/+11
2018-01-01Auto merge of #46895 - ricochet1k:macro-lifetimes, r=jseyfriedbors-8/+10
2017-12-30in which leading zeroes on tuple-struct accesses are abjuredZack M. Davis-3/+12
2017-12-30refactor lifetime out of is_lifetimeMatt Peterson-13/+6
2017-12-28CleanupMatt Peterson-4/+3
2017-12-28Fix testsMatt Peterson-7/+17
2017-12-28replace parse_lifetime with expect_lifetimeMichael Hewson-1/+1
2017-12-22Auto merge of #46732 - estebank:silence-recovered-blocks, r=petrochenkovbors-2/+5
2017-12-21Do not emit type errors on recovered blocksEsteban Küber-2/+5
2017-12-21Auto merge of #45930 - jplatte:generics_refactoring, r=eddybbors-21/+28
2017-12-21Add GenericParam, refactor Generics in ast, hir, rustdocJonas Platte-21/+28
2017-12-21Rollup merge of #46827 - petrochenkov:assocrecov2, r=estebankGuillaume Gomez-11/+51
2017-12-21Auto merge of #46531 - cramertj:no-mo-modrs, r=nikomatsakisbors-42/+90
2017-12-20Fix parsing of paths with fn-like generic argumentsVadim Petrochenkov-9/+11
2017-12-20Move impls for qpath recovery trait from `ast.rs`Vadim Petrochenkov-2/+40
2017-12-19Implement non-mod.rs mod statementsTaylor Cramer-42/+90
2017-12-19Remove a token after closing delimiter from the span of macro in type positiontopecongiro-1/+1
2017-12-17syntax: recovery for incorrect associated item paths like `[T; N]::clone`Vadim Petrochenkov-20/+50
2017-12-17syntax: Rename `P::unwrap` into `P::into_inner`Vadim Petrochenkov-2/+2
2017-12-16in which `..` is suggested for erroneous `...` in struct field patternsZack M. Davis-1/+13
2017-12-14add trait aliases to ASTAlex Burka-14/+25
2017-12-14Use PathBuf instead of String where applicableOliver Schneider-13/+17
2017-12-07Auto merge of #46187 - notriddle:patch-1, r=QuietMisdreavusbors-1/+1
2017-12-02Auto merge of #46381 - estebank:expected-span, r=nikomatsakisbors-5/+22
2017-12-02Auto merge of #45904 - sunjay:gat-parser, r=nikomatsakisbors-4/+43
2017-12-01Testing and fixesSunjay Varma-1/+1
2017-12-01Parsing where clauses correctly and documenting the grammar being parsedSunjay Varma-2/+8
2017-12-01Added run-pass tests for associated generic typesSunjay Varma-2/+2
2017-12-01Parsing generics in both trait items and impl itemsSunjay Varma-3/+36
2017-12-01Auto merge of #45997 - estebank:pub-ident, r=nikomatsakisbors-10/+111
2017-11-30Implement RFC 2128 (use_nested_groups)Pietro Albini-58/+85
2017-11-29Point to next token when it is in the expected lineEsteban Küber-5/+22
2017-11-25Changed from note to span_suggestion_shortcolinmarsh19-1/+2
2017-11-25Fixed Err by passing "err"colinmarsh19-1/+1
2017-11-25Remove semicolon notecolinmarsh19-1/+5
2017-11-24Consume trailing doc comments to avoid parse errorsEsteban Küber-3/+2
2017-11-24Revert to correct recovery behaviorEsteban Küber-0/+1
2017-11-24Emit `DocComment` in bad location error but continue parsing struct fieldsEsteban Küber-2/+10
2017-11-24Suggest macro call when not sure that it is fn definitionEsteban Küber-19/+16
2017-11-24Do not attemt to continue parsing after `pub ident`Esteban Küber-105/+23
2017-11-24Do not rewind parser and ignore following blocksEsteban Küber-52/+179