about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-1/+1
2015-02-20make span on obsolete syntax very preciseNiko Matsakis-1/+2
2015-02-18Round 3 test fixes and conflictsAlex Crichton-23/+23
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-46/+44
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-40/+40
2015-02-18Declare `&foo[]` to be obsolete syntax. Modify the obsolete mechanism toNiko Matsakis-5/+4
2015-02-18Remove usage of .map(|&foo| foo)Kevin Butler-1/+1
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-5/+4
2015-02-15Rollup merge of #22285 - kmcallister:pub-macro, r=nick29581Manish Goregaokar-0/+18
2015-02-13Forbid `pub mymacro!();`Keegan McAllister-0/+18
2015-02-12Made `Self` a keyword.Marvin Löbel-22/+51
2015-02-09Accept quantification of lifetimes outside the self type in where clauses.Nick Cameron-5/+28
2015-02-06Libsyntax has been updatedGuillaumeGomez-4/+3
2015-02-06Replace the get method by the deref one on InternedStringGuillaumeGomez-3/+4
2015-02-06Auto merge of #21947 - bluss:full-range-syntax, r=brsonbors-19/+14
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-2/+2
2015-02-04register snapshotsJorge Aparicio-5/+3
2015-02-04Implement `..` syntax for RangeFull as expressionUlrik Sverdrup-19/+14
2015-02-03Update for new snapshot after rebasing.Niko Matsakis-1/+1
2015-02-03Remove the explicit closure kind syntax from the parser and AST;Niko Matsakis-29/+33
2015-02-02rollup merge of #21845: Potpourri/import-syntaxAlex Crichton-3/+8
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-3/+3
2015-02-02rollup merge of #21825: kmcallister/ttdelim-spanAlex Crichton-1/+1
2015-02-02rollup merge of #21710: alfie/libsyntaxAlex Crichton-8/+8
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-02-02Omit integer suffix when unnecessaryAlfie John-8/+8
2015-02-02Tweak some ‘expected…’ error messagesP1start-56/+61
2015-02-01Reject syntax like `use foo::bar::;` and `use foo:: as bar;` and keywords in ...Potpourri-3/+8
2015-01-31Fix end of TtDelimited spanKeegan McAllister-1/+1
2015-01-30std: Stabilize FromStr and parseAlex Crichton-2/+2
2015-01-30Change from core::ops::RangeFull to std::opsNick Cameron-1/+1
2015-01-30Rename FullRange to RangeFullNick Cameron-3/+3
2015-01-30Use absolute path to FullRange, rather than assuming it is in the preludeNick Cameron-4/+17
2015-01-28Move return type an associated type of the `Fn*` traits. Mostly this involves...Niko Matsakis-1/+6
2015-01-26Fallout of io => old_ioAlex Crichton-1/+1
2015-01-26Adjust most comments and messages to not use "unboxed".Eduard Burtescu-1/+1
2015-01-26Remove "unboxed" attribute in code referring to new closures.Eduard Burtescu-18/+15
2015-01-25Tweak chained comparison errors.Huon Wilson-3/+4
2015-01-25Add the span of the operator itself to ast::BinOp.Huon Wilson-5/+7
2015-01-22Fix some grammar inconsistencies for the '..' range notation.Daniel Grunwald-17/+37
2015-01-21rollup merge of #20179: eddyb/blind-itemsAlex Crichton-315/+119
2015-01-21rollup merge of #21258: aturon/stab-3-indexAlex Crichton-1/+1
2015-01-21rollup merge of #21463: sanxiyn/demutAlex Crichton-16/+16
2015-01-21rollup merge of #21411: P1start/help-tweaksAlex Crichton-1/+1
2015-01-21rollup merge of #21340: pshc/libsyntax-no-more-intsAlex Crichton-28/+28
2015-01-21Fallout from stabilization.Aaron Turon-1/+1
2015-01-21syntax: merge ast::ViewItem into ast::Item.Eduard Burtescu-315/+119
2015-01-21De-mut the parserSeo Sanghyeon-16/+16
2015-01-20Fix up some ‘help’ messagesP1start-1/+1