about summary refs log tree commit diff
path: root/src/comp/syntax/parse/parser.rs
AgeCommit message (Expand)AuthorLines
2012-01-09Make the parser accept 'if' as an alternative to 'when' in alt patterns.Austin Seipp-1/+5
2012-01-05require a non-semi expr acting as a stmt to have unit return typeNiko Matsakis-13/+14
2012-01-05make parser handle parenthesized block-sugar exprs properlyNiko Matsakis-49/+80
2012-01-05Switch to new param kind bound syntaxMarijn Haverbeke-10/+8
2012-01-05Fix bad spans for ast::ty parsingMarijn Haverbeke-9/+6
2012-01-03Allow tail expressions even in no_value blocks. Type checkerNiko Matsakis-26/+14
2012-01-03extend parser so that expressions that do not require semi-colonsNiko Matsakis-2/+2
2012-01-03rewrite to put blk as 2nd argNiko Matsakis-1/+1
2012-01-03minimal changes to permit fn blocks in exprNiko Matsakis-68/+64
2012-01-03Make syntax for impls less magicalMarijn Haverbeke-23/+18
2011-12-29split proto from fn_decl, as not all fn_decls know the proto.Niko Matsakis-38/+21
2011-12-28Change representation of type params to handle interface boundsMarijn Haverbeke-5/+14
2011-12-23Check impls methods against the type of their iface.Marijn Haverbeke-8/+8
2011-12-23Parse `iface` items and interface references in `impl` items.Marijn Haverbeke-56/+61
2011-12-23Make ast::ty_method hold a fn_decl, rather than duplicating its fieldsMarijn Haverbeke-8/+1
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-6/+2
2011-12-22Merge all 3 log syntaxes, tidy up residual misuses.Graydon Hoare-9/+4
2011-12-22Unify some data structures in syntax::ast that were doing the same thingMarijn Haverbeke-55/+45
2011-12-22Merge branch 'master' of github.com:graydon/rustGraydon Hoare-1/+1
2011-12-22Remove trivial cast checkerMarijn Haverbeke-1/+1
2011-12-21More flailing on log syntax due to call-expr ambiguity in previous attempt.Graydon Hoare-1/+4
2011-12-21Out-of-order-code typo. Snapshot again.Graydon Hoare-1/+1
2011-12-21Switch log_expr to carrying a full expr:u32 for level. Add log_full variant t...Graydon Hoare-3/+18
2011-12-21Make { || ... } sugar for any type of closure, inferredNiko Matsakis-3/+1
2011-12-20Inject "core macros" into default syntax-expansion environment. Bit of a klud...Graydon Hoare-6/+18
2011-12-19resolve capture clausesNiko Matsakis-13/+10
2011-12-19Add type argument field to expr_pathMarijn Haverbeke-1/+6
2011-12-19Use quotes around tokens in parser error messages to make them more readableMarijn Haverbeke-12/+12
2011-12-16Make polymorphic impl methods workMarijn Haverbeke-5/+6
2011-12-16Change syntax for implMarijn Haverbeke-6/+6
2011-12-16Make uses of self in impls compileMarijn Haverbeke-17/+1
2011-12-16Parse and resolve implementations.Marijn Haverbeke-5/+18
2011-12-15Iterate over an array when creating the parser's reserved word tableMarijn Haverbeke-38/+8
2011-12-14change syntax from lambda[send] to sendfnNiko Matsakis-79/+14
2011-12-14restructure, temporarily working around what looks like an LLVM bugNiko Matsakis-3/+37
2011-12-14remove extra trailing semicolonNiko Matsakis-1/+1
2011-12-14push changes through to get things compiling, if not running.Niko Matsakis-13/+19
2011-12-14first attempt, not happy with itNiko Matsakis-28/+30
2011-12-14define ty and update parser for sendable lambdasNiko Matsakis-6/+85
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-3/+4
2011-12-09Allow type annotations for blocksMarijn Haverbeke-10/+8
2011-12-08Error when parsing the empty record typeMarijn Haverbeke-0/+1
2011-12-08Allow binding of nested patternsMarijn Haverbeke-5/+6
2011-12-07Remove stmt_crate_directive, it's vestigial and confusing.Graydon Hoare-18/+1
2011-12-07Change literal representation to not truncateMarijn Haverbeke-24/+17
2011-12-02parse: typeck: enabling trivial casts of tail-call return valuesStefan Plantikow-1/+1
2011-12-02Stop lexing -1 as a single tokenMarijn Haverbeke-13/+1
2011-12-02Allow literal patterns to contain arbitrary literal expressionsMarijn Haverbeke-9/+11
2011-11-30Box ast::path valuesMarijn Haverbeke-17/+16
2011-11-24rustc: Fix a bug in cdir attribute parsingBrian Anderson-0/+2