summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2016-09-26Parse - Fix bugs with :stmt capture and useJohn Hodge2-16/+47
2016-09-26Parse - HACK! Accept `extern {}` and return a null itemJohn Hodge1-1/+7
2016-09-26Parse - Handle attributes directly on items (for :item capture)John Hodge2-0/+18
2016-09-26macro_rules - Extend logic to determine if a loop should be entered to ↵John Hodge2-17/+112
handle $()* at the start
2016-09-26macro_rules - Don't loop if a variable is missing dataJohn Hodge1-1/+7
2016-09-26common - Add print for std::setJohn Hodge1-0/+16
2016-09-26Parse - Accept TOK_INTERPOLATED_ITEMJohn Hodge5-0/+20
2016-09-26Expand - Pass ownership of the input TT to macro_rules! expandJohn Hodge10-29/+39
2016-09-26macro_rules - Avoid cloning fragments when they're not going to be used againJohn Hodge1-124/+174
2016-09-26macro_rules! - Clean up expansion to allow counting replacement usesJohn Hodge2-69/+126
2016-09-26macro_rules - Hackily work around a quirkJohn Hodge1-4/+26
2016-09-25AST - Convert use statements to normal itemsJohn Hodge9-290/+126
2016-09-25Parse - Move `pub` parsing to Parse_Mod_Item_SJohn Hodge4-27/+33
2016-09-25Parse - Allow loading modules from macro invocationsJohn Hodge7-42/+64
2016-09-25Parse+AST - Support capturing :item (requires cloning AST items)John Hodge21-75/+289
2016-09-25Parse - Split module item parse into a form that is callable from macro_rulesJohn Hodge3-185/+165
2016-09-25macro_rules! - Rough (stubbed) support for :itemJohn Hodge5-2/+50
2016-09-25Start on liblibc - Add cfg_attr support to LoadCratesJohn Hodge2-0/+15
2016-09-25MIR Gen - Fix bad monomorph callJohn Hodge1-2/+23
2016-09-25MIR Gen Match - Support floating point matchesJohn Hodge1-68/+257
2016-09-25HIR Typecheck Expr - Fix incorrect monomorphisation of function pointersJohn Hodge2-9/+40
2016-09-25HIR - Hacky consteval fixesJohn Hodge2-9/+49
2016-09-25HIR - Support float patternsJohn Hodge5-6/+46
2016-09-25Resolve Use - Visit code blocks in trait defaultsJohn Hodge1-2/+24
2016-09-25Parse+Expand - Support `let` in expression macrosJohn Hodge3-3/+10
2016-09-25MIR - (minor) commentingJohn Hodge1-0/+2
2016-09-25Parse - Support method/field/qmark after blocks in statementsJohn Hodge5-43/+109
2016-09-24MIR Gen - Support zero-arm matches - Since they can never be reached, emit a ↵John Hodge3-1/+24
Diverge
2016-09-24MIR Gen Match - Refactor decision tree code to support sorted rulesetsJohn Hodge1-204/+376
2016-09-24MIR Gen Match - Any over tuple structsJohn Hodge1-7/+29
2016-09-24MIR Gen Match - Fix edge case where DTN simplify didn't workJohn Hodge1-0/+8
2016-09-24HIR Typecheck Expr - Hackily search for methods on a borrow of the search typeJohn Hodge3-22/+78
2016-09-24HIR Typecheck Expr - Fix impl selection bug with an evil hackJohn Hodge3-7/+24
2016-09-24HIR Typecheck Expr - Prevent ivar defaulting of closure arguments when ↵John Hodge1-0/+5
closure is possibly unknown
2016-09-24Resolve - Work around edge case with non-canonical index pathsJohn Hodge3-41/+59
2016-09-24Expand - Fix double-insertion of preludeJohn Hodge1-1/+1
2016-09-24Resolve Absolute - Emit UfcsUnknown instead of UfcsInherent when splitting ↵John Hodge1-1/+1
multi-node UFCS
2016-09-24HIR Typecheck Expr - Monomorphise trait params when doing associated type boundsJohn Hodge1-12/+38
2016-09-24HIR Typecheck Expr - Add TODO when an associated type bound method requires ↵John Hodge2-2/+10
monomorphisation
2016-09-24HIR Typecheck Expr - Fix incorrect trait parameter comparisonJohn Hodge1-5/+11
2016-09-24HIR Typecheck Expr - Provide a list of usable ivars to find_methodJohn Hodge4-21/+60
2016-09-24HIR Typecheck Expressions - Add ivars to method paramsJohn Hodge1-0/+3
2016-09-23HIR Typecheck Expr - Implement TODO with inserting associated type boundsJohn Hodge1-1/+4
2016-09-23Resolve Absolute - Preserve type arguments when an import is directly ↵John Hodge1-0/+2
replaced (e.g. mem::transmute->intrinsics::transmute)
2016-09-23HIR Typecheck Expressions - Clear the flag that disables ivar posibilities ↵John Hodge1-0/+2
if the list is empty
2016-09-23HIR Typecheck Expr - _PathValue UfcsInherent with ivarsJohn Hodge1-10/+12
2016-09-23HIR Bind - Perform bind+fixup for _PathValueJohn Hodge1-0/+5
2016-09-22HIR Typecheck Expr - Inner coerce in tuple literalsJohn Hodge1-6/+40
2016-09-22HIR Typecheck Expressions - Use type bounds in _StructLiteralJohn Hodge1-41/+52
2016-09-22main - Add a hacky MRUSTC_DEBUG environment variable to enable debug for passesJohn Hodge1-0/+20