Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Hide MacroCallLoc | Edwin Cheng | 2019-11-26 | 1 | -4/+3 |
| | |||||
* | Fix hir for ast::UnionDef | Aleksey Kladov | 2019-11-25 | 3 | -13/+19 |
| | |||||
* | Simplify | Aleksey Kladov | 2019-11-24 | 1 | -1/+1 |
| | |||||
* | Cleanup nameres | Aleksey Kladov | 2019-11-24 | 1 | -1/+4 |
| | |||||
* | Use Trace in raw_items | Aleksey Kladov | 2019-11-24 | 1 | -10/+10 |
| | |||||
* | Some docs | Aleksey Kladov | 2019-11-24 | 1 | -1/+6 |
| | |||||
* | Cleanup | Aleksey Kladov | 2019-11-24 | 1 | -1/+1 |
| | |||||
* | Nicer API for attrs | Aleksey Kladov | 2019-11-24 | 1 | -5/+9 |
| | |||||
* | Slightly reduce code duplication | Aleksey Kladov | 2019-11-24 | 1 | -5/+2 |
| | |||||
* | Simplify | Aleksey Kladov | 2019-11-24 | 1 | -8/+4 |
| | |||||
* | Switch to StaticLoc for statics | Aleksey Kladov | 2019-11-24 | 1 | -2/+5 |
| | |||||
* | Push poison_macros down | Aleksey Kladov | 2019-11-24 | 1 | -11/+27 |
| | |||||
* | Move ModuleSource back to hir | Aleksey Kladov | 2019-11-23 | 1 | -14/+4 |
| | |||||
* | Privatise nameres | Aleksey Kladov | 2019-11-23 | 3 | -76/+4 |
| | |||||
* | Rename CrateModuleId | Aleksey Kladov | 2019-11-23 | 4 | -26/+26 |
| | |||||
* | Move ImportId | Aleksey Kladov | 2019-11-23 | 2 | -19/+15 |
| | |||||
* | Get rid of DefDatabase2 | Aleksey Kladov | 2019-11-23 | 5 | -16/+16 |
| | |||||
* | Encapsulate Attrs | Aleksey Kladov | 2019-11-22 | 2 | -23/+15 |
| | |||||
* | Move constants to new ID | Aleksey Kladov | 2019-11-20 | 1 | -2/+10 |
| | | | | This allows us to get rid of trait item index | ||||
* | Don't duplicate ContainerId type | Aleksey Kladov | 2019-11-20 | 1 | -4/+4 |
| | |||||
* | Switch type aliases to new sources | Aleksey Kladov | 2019-11-20 | 1 | -4/+10 |
| | |||||
* | Next gen IDs for functions | Aleksey Kladov | 2019-11-20 | 1 | -4/+9 |
| | | | | | | | | | | | | | | | | | The current system with AstIds has two primaraly drawbacks: * It is possible to manufacture IDs out of thin air. For example, it's possible to create IDs for items which are not considered in CrateDefMap due to cfg. Or it is possible to mixup structs and unions, because they share ID space. * Getting the ID of a parent requires a secondary index. Instead, the plan is to pursue the more traditional approach, where each items stores the id of the parent declaration. This makes `FromSource` more awkward, but also more correct: now, to get from an AST to HIR, we first do this recursively for the parent item, and the just search the children of the parent for the matching def | ||||
* | Rename Source::ast -> Source::value | Aleksey Kladov | 2019-11-20 | 1 | -1/+1 |
| | |||||
* | Disable doctests | Aleksey Kladov | 2019-11-17 | 1 | -1/+1 |
| | |||||
* | Store impls in CrateDefMap | Aleksey Kladov | 2019-11-15 | 2 | -3/+37 |
| | |||||
* | Move scope tests to hir_def | Aleksey Kladov | 2019-11-15 | 1 | -1/+2 |
| | |||||
* | Add convenience method for testing | Aleksey Kladov | 2019-11-15 | 3 | -5/+5 |
| | |||||
* | Merge #2205 | bors[bot] | 2019-11-11 | 2 | -3/+29 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | 2205: Implement bulitin line! macro r=matklad a=edwin0cheng This PR implements bulitin macro `line!` and add basic infra-structure for other bulitin macros: 1. Extend `MacroDefId` to support builtin macros 2. Add a `quote!` macro for simple quasi quoting. Note that for support others builtin macros, eager macro expansion have to be supported first, this PR not try to handle it. :) Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | Add MacroDefKind | Edwin Cheng | 2019-11-11 | 1 | -8/+7 |
| | | |||||
| * | Add basic bultin macro infrastructure | Edwin Cheng | 2019-11-11 | 2 | -4/+31 |
| | | |||||
* | | Overwrite the prelude with one defined in a later dependency | Matthias Einwag | 2019-11-10 | 1 | -9/+6 |
| | | | | | | | | | | | | | | This removes the special casing for the "core" prelude. Whenever a later dependency also exports a prelude, it will replace the formerly imported prelude. The utilized prelude then depends purely on import order. | ||||
* | | Add tests for resolving types in core and std preludes | Matthias Einwag | 2019-11-10 | 1 | -0/+31 |
| | | |||||
* | | Resolve core types | Matthias Einwag | 2019-11-09 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for completion and goto definition of types defined within the "core" crate. The core crate is added as a dependency to each crate in the project. The core crate exported it's own prelude. This caused now all crates to inherit the core crates prelude instead of the std crates. In order to avoid the problem the prelude resolution has been changed to overwrite an already resolved prelude if this was set to a crate named core - in order to pick a better prelude like std. Fixes #2199 | ||||
* | | Unfork struct and union ids | Aleksey Kladov | 2019-11-09 | 1 | -4/+7 |
|/ | |||||
* | Reduce visibility | Aleksey Kladov | 2019-11-08 | 1 | -9/+9 |
| | |||||
* | Extract path resolution submodule | Aleksey Kladov | 2019-11-08 | 2 | -2/+263 |
| | |||||
* | Simplify | Aleksey Kladov | 2019-11-08 | 1 | -1/+5 |
| | | | | | There's only one call-site for the function, so it seems fine to inline | ||||
* | Reduce visibility | Aleksey Kladov | 2019-11-08 | 1 | -23/+23 |
| | |||||
* | Move Namespace enum closer to usage | Aleksey Kladov | 2019-11-04 | 1 | -8/+0 |
| | |||||
* | Reduce visibility | Aleksey Kladov | 2019-11-04 | 1 | -4/+8 |
| | |||||
* | Reexport relative_path from ra_db | Aleksey Kladov | 2019-11-03 | 1 | -2/+1 |
| | |||||
* | Restore crate_def_map marks | Aleksey Kladov | 2019-11-03 | 6 | -22/+21 |
| | |||||
* | move crate_def_map tests to hir_def | Aleksey Kladov | 2019-11-03 | 6 | -0/+2177 |
| | |||||
* | Introduce ra_db::fixture fixture module | Aleksey Kladov | 2019-11-03 | 1 | -10/+10 |
| | | | | The goal here is to share more testing infrastructure between crates. | ||||
* | Move CrateDefMap to hir_def | Aleksey Kladov | 2019-11-03 | 2 | -0/+927 |
| | |||||
* | move mod_resolution to hir_def | Aleksey Kladov | 2019-10-31 | 1 | -0/+77 |
| | |||||
* | move hygiene to hir_expand | Aleksey Kladov | 2019-10-30 | 1 | -4/+2 |
| | |||||
* | push name down to hir_expand | Aleksey Kladov | 2019-10-30 | 1 | -7/+8 |
| | |||||
* | push either to hir_expand | Aleksey Kladov | 2019-10-30 | 1 | -7/+4 |
| | |||||
* | refactor $crate handling | Aleksey Kladov | 2019-10-30 | 1 | -17/+14 |
| | | | | | Introduce proper hygiene module, which should grow quite a bit eventually. |