summaryrefslogtreecommitdiff
path: root/src/resolve
AgeCommit message (Collapse)AuthorFilesLines
2017-11-26Resolve Absolute - Fix edge case where there's no scopes during var lookupJohn Hodge1-1/+1
2017-11-01All - Clean up a few minor errors (pointed out in #31)John Hodge1-45/+1
2017-11-01HIR - Refactor enums to only embed a single field (and give variants types)John Hodge3-43/+54
2017-10-28Expand - Recurse when expanding in patternsJohn Hodge1-1/+1
2017-10-01Resolve - Handle path binding for unit structs in patternsJohn Hodge1-0/+10
2017-10-01Resolve - Search for unit-like structs in pattern lookupJohn Hodge1-0/+12
2017-09-29Expand - Load crates that were conditionally includedJohn Hodge1-1/+1
2017-09-24All - Handle crates with tagged namesJohn Hodge2-0/+5
2017-09-24LoadCrates - Support loading crates that might collide (and handle name ↵John Hodge1-3/+1
collisions)
2017-09-10Parse - Store attributes for trait itemsJohn Hodge1-0/+3
2017-09-09Resolve - Handle glob improt of rootJohn Hodge1-1/+6
2017-09-02Resolve - Fix a minor lookup bug around self:: pathsJohn Hodge1-1/+19
2017-08-27Resolve Abs - Fix pattern value lookupJohn Hodge1-4/+16
2017-08-27Resolve Use - Do parent search on Relative pathsJohn Hodge1-1/+16
2017-08-23Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge1-1/+4
2017-08-22Resolve Use - (minor) Diagnostics fix when module cannot be foundJohn Hodge1-1/+4
2017-08-20Resolve - Lookup glob of external enumJohn Hodge1-1/+9
2017-07-16All - Upgrade to rustc 1.19.0 beta (2017-07-08)John Hodge2-1/+2
2017-07-09Resolve - Better debugging and assertJohn Hodge1-1/+9
2017-07-06All - Some little tweaks for windows portJohn Hodge1-401/+404
2017-06-11Parse - Support chaining of spans (for macro expansions)John Hodge1-6/+6
2017-06-04Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge (bugs)2-11/+7
2017-05-28AST - Refactor to make unit-like structs their own variantJohn Hodge2-11/+7
2017-03-04Many many changes to allow compiling in visual studio (Community 2015)John Hodge (bugs)1-1/+1
2017-01-08Resolve Index - Refactor wildcard use handlingJohn Hodge1-128/+124
2016-12-24No more tears!ubsan3-168/+168
No more DOS line endings or trailing whitespace either
2016-11-23Resolve - Place struct enum variants in the type namespace, fix ↵John Hodge2-1/+17
serialisation bug
2016-11-23Resolve Index - Handle paths pointing to crate rootsJohn Hodge1-0/+4
2016-11-22Resolve Absolute - Search value scope for tuple struct patternsJohn Hodge1-1/+1
2016-11-22Resolve Absolute - Replace a TODO with the return it should have beenJohn Hodge1-1/+1
2016-11-19Resolve Absolute - Add missing union handlingJohn Hodge1-0/+4
2016-11-17Resolve - Fix scoping of `if let` bindingsJohn Hodge1-2/+3
2016-11-17HIR - Fix bad handling of split slice patternsJohn Hodge1-1/+1
2016-11-08Resolve Absolute - (minor) Remove defunct commentsJohn Hodge1-4/+0
2016-11-08Resolve Absolute - Handle crate-root paths, fix an edge-case bugJohn Hodge1-2/+16
2016-11-08Resolve Use - Handle imports of a crate rootJohn Hodge1-0/+2
2016-11-02Hygiene fixes (disabled still)John Hodge1-1/+1
2016-11-02Parse - Rework hygiene (with spelling fix) for take 2John Hodge1-6/+6
2016-11-02All - Hack in start of macro hygine - requires rework so is disabledJohn Hodge1-30/+24
2016-10-31AST+HIR - Union support through to HIRJohn Hodge1-1/+12
2016-10-31All - Rough support for `union` (data structure present in all stages)John Hodge3-0/+33
2016-10-30Resolve use - Handle variant importsJohn Hodge1-1/+13
2016-10-30AST - Remove copy construction of TypeRefJohn Hodge1-7/+7
2016-10-30Resolve Abs - MaybeBind->Bind in irrefutable contextJohn Hodge1-1/+4
2016-10-30HIR+Resolve - Refactor handling of enum variant importsJohn Hodge3-40/+32
2016-10-30Resolve Absolute - Fix segfault due to OOB indexingJohn Hodge1-1/+1
2016-10-29Parse - Convert `<Foo>::BAR` into `<Foo as _>::BAR`John Hodge1-1/+1
2016-10-26Resolve Use - Fix alternate binding codeJohn Hodge2-5/+7
2016-10-26Resolve Index - Glob cratesJohn Hodge1-1/+3
2016-10-26Resolve Use - Support imports from external enumsJohn Hodge1-4/+39