about summary refs log tree commit diff
path: root/src/comp/syntax/parse
AgeCommit message (Expand)AuthorLines
2012-01-13distinguish "any closure" and "stack closure" (block)Niko Matsakis-10/+10
2012-01-13make blocks fn& and fn stand for "any closure"Niko Matsakis-14/+17
2012-01-13deprecate fn exprs and the fn() type, preferring fn@ and native fnNiko Matsakis-2/+13
2012-01-13Obj system? What obj system?Marijn Haverbeke-77/+7
2012-01-13Convert the objects used in the lexer and parser to records + implsMarijn Haverbeke-484/+435
2012-01-12make parser disambiguate fn~ at top level correctlyNiko Matsakis-1/+12
2012-01-12Cleanups to previous commits for issue #1393.Kevin Atkinson-2/+2
2012-01-11Major clean-up of std::ioMarijn Haverbeke-0/+1
2012-01-10Fold and re-evaluate expr in tag discriminant.Graydon Hoare-1/+1
2012-01-10Support explicit discriminant numbers on tag variants.Kevin Atkinson-2/+41
2012-01-10rustc: Accept "enum" in addition to "tag"Patrick Walton-2/+3
2012-01-10replace lambda with fn@Niko Matsakis-1/+5
2012-01-10rename sendfn to fn~, lambda to fn@Niko Matsakis-7/+10
2012-01-09Remove support for 'when' in alt-patterns from parserAustin Seipp-5/+1
2012-01-09Change all uses of 'when' in alt-patterns to 'if'Austin Seipp-4/+4
2012-01-09Remove proto_sugar and 'lambda' as keyword, commit to fn@.Graydon Hoare-6/+6
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-28/+16
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-29Add support in lexer for utf8 identifiers. No NFKC logic in char yet.Graydon Hoare-2/+4
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-9/+5
2011-12-22Merge all 3 log syntaxes, tidy up residual misuses.Graydon Hoare-11/+6
2011-12-22Merge branch 'master' of github.com:graydon/rustGraydon Hoare-55/+45
2011-12-22Register snapshots and switch logging over to use of log_full or #error / #de...Graydon Hoare-14/+14
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 1.f parse as a field access on the integer 1Marijn Haverbeke-1/+1