summaryrefslogtreecommitdiff
path: root/src/resolve
AgeCommit message (Collapse)AuthorFilesLines
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
2016-09-28Resolve Absolute - Array patterns can be irrefutableJohn Hodge1-3/+2
2016-09-28Resolve Absolute - Implement some TODOsJohn Hodge1-2/+20
2016-09-28Resolve Absolute - Implement TODO with imported modulesJohn Hodge1-1/+10
2016-09-28AST - Make anon modules `shared_ptr`s to handle case where a block is depetedJohn Hodge3-4/+10
2016-09-27AST - Refactor extern blocks into ItemsJohn Hodge1-0/+2
2016-09-27AST - Stub out extern and impl blocks as Item-sJohn Hodge3-90/+156
2016-09-27Resolve - Fix incorrect canonising of the indexJohn Hodge2-16/+60
2016-09-27Resolve Index - Fix missing import of namespace itemsJohn Hodge1-94/+105
2016-09-25AST - Convert use statements to normal itemsJohn Hodge3-68/+77
2016-09-25Parse+AST - Support capturing :item (requires cloning AST items)John Hodge1-0/+1
2016-09-25Resolve Use - Visit code blocks in trait defaultsJohn Hodge1-2/+24