about summary refs log tree commit diff
path: root/src/comp
AgeCommit message (Expand)AuthorLines
2011-07-12rustc: Simplify tritv::copy; shaves a couple of seconds off typestate.Patrick Walton-17/+4
2011-07-12Add missing filesTim Chevalier-111/+44
2011-07-12Fix potential use-before-init bug in transTim Chevalier-5/+9
2011-07-12Update pretty-printing of '...' in record patterns to be ', _' insteadMarijn Haverbeke-1/+4
2011-07-11Fix pretty-printing of literals again. Issue #672Brian Anderson-1/+6
2011-07-11Make the parser add correct spans to view_itemsTim Chevalier-30/+19
2011-07-11Pass command-line args to the test runner. Issue #428Brian Anderson-5/+28
2011-07-11So... I can't spell 'ellipsis'.Paul Stansifer-8/+8
2011-07-11Change "etc" syntax for record patterns from `{a:b ...}` to `{a:b, _}`.Paul Stansifer-5/+6
2011-07-11Add elipses, reorganize the macro components into their own AST node.Paul Stansifer-103/+206
2011-07-11Move macro expansion to a separate phase, change macro syntax, and add parse_...Paul Stansifer-168/+330
2011-07-11Add nodes for embedding types and blocks in expressions for macros.Paul Stansifer-45/+58
2011-07-11Only print up to six lines on error. Print ^~~~~ to highlight error span.Josh Matthews-1/+50
2011-07-11Hack to print lines when error spans are available.Josh Matthews-2/+55
2011-07-11Visit the type argument in a port expressionTim Chevalier-1/+8
2011-07-11Add parser::parse_crate_from_source_strBrian Anderson-0/+18
2011-07-11In typeck, check for dynamically sized by-value arguments to thunksTim Chevalier-11/+49
2011-07-11Pull lexer creation out of new_parserBrian Anderson-15/+20
2011-07-11Pull file reading out of the lexerBrian Anderson-10/+11
2011-07-11rustc: Implement explicit global scope resolution via leading "::"; add a tes...Patrick Walton-31/+56
2011-07-11Unify the rhs and lhs types in a sendTim Chevalier-0/+1
2011-07-11rustc: Implement pointer dereference; add a test casePatrick Walton-2/+5
2011-07-11Fix comparisons of the nil type to do something sensible.Michael Sullivan-21/+19
2011-07-11The lexer's get_mark_str should slice by byte position, not char. Closes #654Brian Anderson-3/+4
2011-07-11Use some actual or-patterns in resolve.rsMarijn Haverbeke-70/+34
2011-07-11Fix pretty-printing of record patternsMarijn Haverbeke-3/+3
2011-07-11Fix autoderef of function calls when the function is not an lval.Michael Sullivan-18/+4
2011-07-11Fix handling of derived tydescs in bind.Michael Sullivan-4/+10
2011-07-11Fix bind to work with boxed arguments with type parameters.Michael Sullivan-2/+6
2011-07-11Implement record patternsMarijn Haverbeke-2/+164
2011-07-11Move visit to newtype-style nominal typeMarijn Haverbeke-129/+126
2011-07-11Output a meaningful error when too few or too many type parameters givenMarijn Haverbeke-3/+11
2011-07-11Implement or-patterns in case clausesMarijn Haverbeke-40/+129
2011-07-11Spill instead of copy when binding a pattern that's only a var bindingMarijn Haverbeke-17/+11
2011-07-10Add a missing case so nbody.rs can ppJesse Ruderman-0/+1
2011-07-10Export noop_fold_expr so the fuzzer can use itJesse Ruderman-0/+1
2011-07-10Make #fmt work from inside std. Issue #175Brian Anderson-10/+25
2011-07-10Use more encapsulation for metadata::cstoreBrian Anderson-25/+69
2011-07-09rustc: Make rust-intrinsics take an explicit return pointerPatrick Walton-23/+48
2011-07-09Generate code to load a crate's tests into the std test runner. Issue #428Brian Anderson-37/+218
2011-07-09Collect functions that look like unit tests. Issue #428Brian Anderson-3/+31
2011-07-09Track the path as we fold over the AST looking for unit tests. Issue #428Brian Anderson-4/+21
2011-07-08Propagate constraints through copy, move, and swapTim Chevalier-133/+442
2011-07-08Minor refactoringTim Chevalier-3/+11
2011-07-08Alias-ify some prettyprinting functionsTim Chevalier-3/+4
2011-07-08Improve impossible-case handling in ty::get_element_typeTim Chevalier-4/+5
2011-07-08Improve the error message for import glob collisions. Closes #482Brian Anderson-17/+31
2011-07-08rustc: Use interior vectors for the union-find in rustcPatrick Walton-21/+24
2011-07-08rustc: Fix a level-of-indirection problem by using size_of() to compute dynam...Patrick Walton-4/+2
2011-07-08Decode types across multiple crates. Closes #632Brian Anderson-27/+71