summaryrefslogtreecommitdiff
path: root/src/resolve
AgeCommit message (Collapse)AuthorFilesLines
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
2016-10-26Resolve Use - Search wildcard imports of cratesJohn Hodge1-1/+11
2016-10-25Resolve - Fix behavior of `super` in anon modulesJohn Hodge2-3/+9
2016-10-24Resolve Use - Prevent infinite recursion, hackily cache resultJohn Hodge1-6/+18
2016-10-24AST - Remove separate impls list (now in item list)John Hodge2-78/+65
2016-10-23AST+HIR - Add stubbed support for erased types (`impl Trait`)John Hodge1-0/+7
2016-10-23AST - Reduce places where there's no span information providedJohn Hodge1-6/+6
2016-10-22Expand - #[prelude_import] supportJohn Hodge1-3/+4
2016-10-18Resolve/Use - Allow glob import of a crate rootJohn Hodge1-1/+3
2016-10-18AST - Load referenced crates in anon modulesJohn Hodge1-0/+1
2016-10-16Resolve - Handle glob imports from external enumsJohn Hodge2-14/+38
2016-10-14Resolve Abolute - Allow type aliases in pathsJohn Hodge1-0/+4
2016-10-13AST - Handle associated staticsJohn Hodge1-2/+4
2016-10-12Expand - Clear deleted anon modules inside anon modulesJohn Hodge2-10/+8
2016-10-12Resolve Use - Bind to wildcard-imported enum variantsJohn Hodge1-1/+15
2016-10-09Resolve Use - Handle imports when looking up importsJohn Hodge1-1/+30
2016-10-09Resolve Use - Fix an edge-case crash, insert TODOJohn Hodge1-2/+5
2016-10-09AST - Remove free MacroInvocation listsJohn Hodge1-1/+1
2016-10-08HIR+AST - Store/Load/Use extern crate list from loaded cratesJohn Hodge1-0/+1
2016-10-05Resolve+Typecheck - Fix trait default parametersJohn Hodge1-0/+23
2016-10-01Resolve Absolute - Fix closure args not being scoped to the closureJohn Hodge1-0/+5
2016-09-28Resolve Absolute - Fix incorrect lookup mode for MaybeBindJohn Hodge1-2/+2
2016-09-28Resolve+Expand - Don't include the prelude in anon modules (they get it via ↵John Hodge1-8/+18
the parent)
2016-09-28Resolve Absolute - Fix bindings for HIR importsJohn Hodge1-3/+23
2016-09-28Resolve Absolute - Fix selecting type path for valuesJohn Hodge1-23/+31
2016-09-28Resolve Absolute - Support extern imports that refer to enum variantsJohn Hodge1-0/+22