about summary refs log tree commit diff
path: root/src/comp
AgeCommit message (Expand)AuthorLines
2010-12-15Convert obj item type to ctor type rather than obj type.Graydon Hoare-8/+29
2010-12-15rustc: Move next_var_id back to the crate context in typechecking; we'll need...Patrick Walton-22/+39
2010-12-15rustc: Resolve type paramsPatrick Walton-1/+6
2010-12-15Teach typeck to stringify obj types.Graydon Hoare-6/+33
2010-12-15rustc: Fix bug involving extracting any variant element beyond the first. Un-...Patrick Walton-0/+1
2010-12-15rustc: Resolve tag names in the typecheckerPatrick Walton-1/+6
2010-12-15rustc: Lex '_' as an underscore, not as an identifierPatrick Walton-1/+4
2010-12-15rustc: Translate pattern matchingPatrick Walton-1/+155
2010-12-14Teach typeck.ty, typeck.collect_item_types and typeck.check_expr about obj it...Graydon Hoare-1/+31
2010-12-14Add ty_obj to ast and parser.Graydon Hoare-7/+39
2010-12-14Teach resolve about obj items.Graydon Hoare-0/+3
2010-12-14Move call_expr parse rule to the place where it needs to be to understand com...Graydon Hoare-14/+13
2010-12-14Teach fold about objs.Graydon Hoare-0/+57
2010-12-14Add obj items to AST and parser.Graydon Hoare-26/+94
2010-12-13Fix a couple bugs in iter_sequence, un-XFAIL vec-drop.rs.Graydon Hoare-3/+17
2010-12-13rustc: Typecheck pattern bindingsPatrick Walton-0/+1
2010-12-13rustc: Check patterns before arm blocks in alt expressions; this will be need...Patrick Walton-9/+31
2010-12-13rustc: Hack to get rid of passing i1 types for unit around in most cases, sug...Patrick Walton-6/+27
2010-12-13Set the new vec fill-size on the compiler side, as in rustboot. Un-XFAIL firs...Graydon Hoare-0/+5
2010-12-12rustc: Typecheck "alt" expressions and patternsPatrick Walton-0/+175
2010-12-12rustc: Propagate types for vector, tuple, record, assignment, and if expressi...Patrick Walton-12/+71
2010-12-12Revert "rustc: Propagate types for vector, tuple, record, assignment, and if ...Patrick Walton-71/+12
2010-12-12rustc: Fix nonexhaustive match failure on unresolved identifiersPatrick Walton-0/+1
2010-12-12rustc: Resolve variant names in patternsPatrick Walton-1/+26
2010-12-12rustc: "resoling" -> "resolving" typoPatrick Walton-3/+3
2010-12-12rustc: Add a definition ID to tag patternsPatrick Walton-8/+11
2010-12-11rustc: Propagate types for vector, tuple, record, assignment, and if expressi...Patrick Walton-12/+71
2010-12-11rustc: Make return value inference use next_ty_var, now that we have itPatrick Walton-1/+1
2010-12-11rustc: Move next_var_id from typeck.crate_ctxt to typeck.fn_ctxtPatrick Walton-6/+7
2010-12-11rustc: Remove "update_env_for_arm" debugging messagePatrick Walton-1/+0
2010-12-10rustc: Resolve pattern bindingsPatrick Walton-4/+40
2010-12-10rustc: Add update_env_for_arm to fold; we'll need it to resolve pattern bindingsPatrick Walton-4/+15
2010-12-10Fix bad GEP and missing branch in iter_sequence; vec.rs compiles now.Graydon Hoare-1/+3
2010-12-10Implement expr_vec.Graydon Hoare-1/+42
2010-12-10Fix trans_index implementation.Graydon Hoare-4/+4
2010-12-10rustc: Add def ids to pattern bindingsPatrick Walton-8/+9
2010-12-10rustc: Add tag support to ty_of_item in typeckPatrick Walton-0/+4
2010-12-10rustc: Add LLVM typedefs for rust_crate and rust_task for good measurePatrick Walton-0/+7
2010-12-10rustc: Declare LLVM typedefs appropriatelyPatrick Walton-0/+1
2010-12-10rustc: Move refcount incrementing out of line tooPatrick Walton-38/+48
2010-12-10Preliminary translation of expr_index.Graydon Hoare-0/+37
2010-12-10rustc: Move refcount decrement-and-free (drop) logic out-of-linePatrick Walton-55/+124
2010-12-10rustc: Change lazy "and" and "or" to use scope contexts rather than sub-block...Patrick Walton-4/+4
2010-12-10Typecheck vec and index exprs.Graydon Hoare-0/+94
2010-12-09rustc: Decouple new_fn_ctxt() from AST function arguments, so that it can be ...Patrick Walton-11/+17
2010-12-09Fix another bug in expr_index parse rule.Graydon Hoare-1/+1
2010-12-09Fix bug in parse rule for expr_index.Graydon Hoare-0/+5
2010-12-09Add 'unexpected' fn to parser.Graydon Hoare-0/+6
2010-12-09Fix token span tracking in lexer.Graydon Hoare-3/+7
2010-12-09Rewrite second pass of collect_item_types to use fold, therefore process all ...Graydon Hoare-34/+67