summaryrefslogtreecommitdiff
path: root/src/parse
AgeCommit message (Collapse)AuthorFilesLines
2016-02-27Parse/expr - Don't allow blocks after `break`/`continue`John Hodge1-0/+1
2016-02-27Parse/patterns - Allow `ref name..` in slice patternsJohn Hodge1-14/+17
2016-02-27Parse - (hackily) support vardic function definitionsJohn Hodge2-0/+11
2016-02-27Parse/lex - Ignore the BOMJohn Hodge1-0/+13
2016-02-27Parse - Macros in type positionJohn Hodge5-2/+8
2016-02-27Parse - Rough type ascription parsingJohn Hodge1-2/+18
2016-02-27Parse - Fix trailing commas in attributes, _.. pattern support in slicesJohn Hodge2-10/+16
2016-02-27Parse - Support hugely nested parensJohn Hodge1-3/+3
2016-02-27Parse/extern - Support `static mut`John Hodge1-1/+7
2016-02-27Parse/lex - Handle Shebangs (#!/path) at start of fileJohn Hodge3-4/+31
2016-02-27Parse/expr - Support `in PLACE { val }` syntaxJohn Hodge1-0/+10
2016-02-27Parse/lex - Handle nested block commentsJohn Hodge1-5/+28
2016-02-27Parse/mod - Rework handling of #[path] to be closer to correctJohn Hodge3-42/+61
2016-02-27Parse/path - Unify pattern and expr path parsingJohn Hodge3-13/+22
2016-02-27Parse/lex - Handle \r in escape codesJohn Hodge1-0/+1
2016-02-27Parse/extern - Parse (but don't use) #![ for extern blocksJohn Hodge1-0/+9
2016-02-27Parse/expr - Handle inline modulesJohn Hodge1-0/+1
2016-02-27Parse/expr - Handle flow control in the middle of an expressionJohn Hodge1-0/+7
2016-02-27Parse/where - Handle lifetime paramsJohn Hodge1-1/+5
2016-02-27Parse - Handle `where` on `type`John Hodge1-0/+5
2016-02-27Parse/impl - Handle macro invocationsJohn Hodge1-21/+12
2016-02-27Parse/Pattern - Clean up MaybeBind logic to remove duplicationJohn Hodge1-42/+24
2016-02-27Patterns - Clean up handling of ref/mut/ref mutJohn Hodge1-5/+38
2016-02-27Parse - Handling of trailing commasJohn Hodge2-1/+5
2016-02-27Parse/pattern - IDENT ... IDENTJohn Hodge1-3/+12
2016-02-27Parse/lex - Fix handling of escape codesJohn Hodge2-11/+39
2016-02-26Parse/lex - Minor fix to escaped string handlingJohn Hodge2-4/+24
2016-02-26Parse/pattern - Cleaner literal handlingJohn Hodge1-6/+20
2016-02-26Parse/expr - Allow flow control in struct literalsJohn Hodge1-1/+2
2016-02-25Parse/paths - Handle >>= and >= destructuringJohn Hodge1-1/+7
2016-02-25Parse - Parse (but don't use) attributes on enum variant fieldsJohn Hodge1-0/+19
2016-02-25Parse - Rework module parsing to unify root/expr parseJohn Hodge3-395/+292
2016-02-25Lex - Handle octal literalsJohn Hodge1-3/+13
2016-02-25Parse - Inner attributes in impl blocksJohn Hodge3-7/+14
2016-02-25Parse/use - Fix parsing of braces and renamesJohn Hodge1-3/+14
2016-02-25Fix raw string lexJohn Hodge2-7/+21
2016-02-25Parse - Fix slice pattern parseJohn Hodge1-1/+1
2016-02-25Lex - Fix handling of raw stringsJohn Hodge1-13/+27
2016-02-25Handle unsafe fn types with hrlsJohn Hodge1-10/+12
2016-02-25Parse - Handle named arguments in fn() typesJohn Hodge1-0/+5
2016-02-25Lexer - Handle exponents on integers (as floats)John Hodge1-44/+47
2016-02-25Heaps more parse fixes against the rustc testsJohn Hodge5-22/+128
2016-02-23Parse - Expression attributesJohn Hodge1-1/+14
2016-02-23Attributes on match armsJohn Hodge1-0/+9
2016-02-23UTF-8 lexJohn Hodge1-1/+47
2016-02-21Fixing parser deficienciesJohn Hodge9-187/+484
2016-02-18Parser - box Patterns, edge bug fixJohn Hodge3-2/+7
2016-02-18(semibroken) Defer macro expansionJohn Hodge4-58/+52
2016-02-18Random commitJohn Hodge1-12/+0
2016-01-30Better pretty printing, updated resolution logicJohn Hodge2-47/+3