about summary refs log tree commit diff
path: root/src/librustsyntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2012-05-07make it illegal to implicitly capture mutable variablesNiko Matsakis-4/+5
2012-05-04new cap clause syntaxNiko Matsakis-99/+139
2012-05-03Revert "allow fn exprs to omit arg types"Niko Matsakis-8/+7
2012-05-03allow fn exprs to omit arg typesNiko Matsakis-7/+8
2012-04-30Stop inferring bot/static when types/regions are unconstrained.Niko Matsakis-10/+1
2012-04-27parser: More refactoring of restricted value name checkingBrian Anderson-7/+6
2012-04-27parser: Remove a restricted keyword checkBrian Anderson-1/+0
2012-04-27test: Add test for two restricted keyword casesBrian Anderson-2/+2
2012-04-27parser: Make parse_value_path use parse_value_identBrian Anderson-7/+10
2012-04-27parser: Rewrite parse_path_without_tps so it knows beforehand which is the la...Brian Anderson-2/+11
2012-04-27parser: Fix lookahead of > 1 tokenBrian Anderson-2/+2
2012-04-27syntax: Refactor ident parsingBrian Anderson-3/+3
2012-04-26Refactor operator precedence codeTim Chevalier-15/+19
2012-04-25lots of work to make iface/impls parameterized by regionsNiko Matsakis-103/+139
2012-04-24syntax: Divide keywords into contextual/restricted. No bad wordsBrian Anderson-5/+5
2012-04-24syntax: Clean up the bad_expr_word functionsBrian Anderson-4/+4
2012-04-24syntax: Rename is_word to is_keyword, etc.Brian Anderson-88/+93
2012-04-23Allow classes to be cast to ifaces that are in the same crateTim Chevalier-8/+10
2012-04-23Simplify representation of ast::pathMarijn Haverbeke-77/+61
2012-04-22syntax: Replace token::DOLLAR_PAREN, DOLLAR_NUM with just DOLLARBrian Anderson-12/+20
2012-04-22syntax: Eliminate token::POUND_LT, POUND_LBRACEBrian Anderson-6/+8
2012-04-21syntax: Eliminate 'mutable' keyword. Closes #2254Brian Anderson-1/+1
2012-04-20Add new syntax for patterns that match the head constructor onlyTim Chevalier-9/+23
2012-04-19syntax: Move fn spanned into ast_utilBrian Anderson-2/+1
2012-04-19syntax: Extract some functions into mod commonBrian Anderson-203/+1
2012-04-19syntax: Extract attribute parsing to its own modBrian Anderson-111/+11
2012-04-19update syntax to include a slashNiko Matsakis-1/+6
2012-04-19make nominal types optionally parameterized by a self region.Niko Matsakis-9/+18
2012-04-19Annotate FIXMEs in parserTim Chevalier-29/+26
2012-04-19syntax: Funnel all words through a single keyword tableBrian Anderson-8/+18
2012-04-18syntax: Put the main parser interface in mod parseBrian Anderson-161/+9
2012-04-18syntax: Begin moving functions from mod parser to mod classifyBrian Anderson-35/+4
2012-04-18syntax: Move some functions from parser to tokenBrian Anderson-46/+15
2012-04-18syntax: Extract prec mod from parser modBrian Anderson-36/+4
2012-04-17syntax: Add explicit exports in parser modsBrian Anderson-0/+27
2012-04-17syntax: Remove extra 'mut' from bad word tableBrian Anderson-1/+1
2012-04-16rewrite region resolution so it takes place in typeckNiko Matsakis-4/+2
2012-04-15syntax: lexer doesn't need a codemapBrian Anderson-2/+2
2012-04-15syntax: Eliminate token's dependency on lexerBrian Anderson-11/+15
2012-04-13Annotate FIXMEs in syntax::ast and syntax::ast_utilTim Chevalier-6/+18
2012-04-11Allow classes to implement ifacesTim Chevalier-3/+10
2012-04-11rustsyntax: i64, not intBrian Anderson-1/+1
2012-04-11Fix name.Graydon Hoare-3/+3
2012-04-11Add vstore/evec/estr to compiler.Graydon Hoare-30/+113
2012-04-06Remove support for old-style forMarijn Haverbeke-32/+13
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-10/+12
2012-04-05add static region and also fix regions to be contravariantNiko Matsakis-0/+2
2012-04-03Monomorphize class constructors, support generic classes and class methodsTim Chevalier-4/+18
2012-03-29rustc: Move attr, parse, print to rustsyntaxBrian Anderson-0/+2836