Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Simplify solution_from_chalk | Florian Diebold | 2019-05-04 | 1 | -12/+11 | |
| | | ||||||
* | | Chalk integration | Florian Diebold | 2019-05-04 | 13 | -147/+677 | |
| | | | | | | | | | | - add proper canonicalization logic - add conversions from/to Chalk IR | |||||
* | | Add Ty::Bound variant for use in Chalk integration | Florian Diebold | 2019-05-04 | 1 | -2/+7 | |
| | | ||||||
* | | make macro expansion into a proper query | Aleksey Kladov | 2019-05-04 | 3 | -35/+28 | |
| | | ||||||
* | | minor, move | Aleksey Kladov | 2019-05-04 | 1 | -19/+19 | |
| | | ||||||
* | | introduce macro_arg intermediate query | Aleksey Kladov | 2019-05-04 | 3 | -25/+27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Currently, when expanding macros, we look at the source code directly (we invoke ast_id_to_node query via to_node method). This is less then ideal, because it make us re-expand macros after every source change. This commit establishes a salsa-firewall: a query to get macro call's token tree. Unlike the syntax tree, token tree changes only if we actually modify the macro itself. | |||||
* | | Revert "eagarly clean astd maps" | Aleksey Kladov | 2019-05-04 | 2 | -2/+2 | |
| | | | | | | | | | | | | This reverts commit 6c63a59425e256ce46d058807b64149297231982. This causes massive slowdowns: looks like we accidentally have some source-depndent | |||||
* | | eagarly clean astd maps | Aleksey Kladov | 2019-05-04 | 2 | -2/+2 | |
|/ | ||||||
* | Use correct FileId when expanding macros in expressions | Aleksey Kladov | 2019-05-01 | 2 | -33/+44 | |
| | ||||||
* | Sidestep two-phase borrow violation signaled by ↵ | Felix S. Klock II | 2019-04-29 | 1 | -2/+3 | |
| | | | | | | mutable_borrow_reservation_conflict. See rust-lang/rust#59159 for further information/discussion. | |||||
* | Add more information on macro rules fail to parse | Edwin Cheng | 2019-04-25 | 1 | -2/+8 | |
| | ||||||
* | drop empty file | Aleksey Kladov | 2019-04-25 | 1 | -0/+0 | |
| | ||||||
* | Introduced resolve_macro_call on resolver | Lenard Pratt | 2019-04-23 | 5 | -55/+112 | |
| | | | | | | changed to manual expansion fix for nested macros | |||||
* | Added macro resolution and expansion | Lenard Pratt | 2019-04-22 | 6 | -93/+135 | |
| | ||||||
* | Addeded resolver and db | Lenard Pratt | 2019-04-22 | 1 | -60/+79 | |
| | ||||||
* | Merge #1194 | bors[bot] | 2019-04-22 | 2 | -1/+14 | |
|\ | | | | | | | | | | | | | | | | | 1194: Pr 1190 r=matklad a=matklad Co-authored-by: Andrea Pretto <[email protected]> Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | unused import | Aleksey Kladov | 2019-04-22 | 1 | -2/+0 | |
| | | ||||||
| * | move auto-imoprter into IDE | Aleksey Kladov | 2019-04-22 | 4 | -76/+13 | |
| | | | | | | | | | | auto-import is purely an IDE concern, so it should be done outside of HIR | |||||
| * | complete_import: prevent panic when the anchor is the completion source range | Andrea Pretto | 2019-04-21 | 2 | -9/+1 | |
| | | | | | | | | | | | | (fix rebase mess) Please enter the commit message for your changes. Lines starting | |||||
| * | complete_import: add new import resolver infrastructure with some hardcoded ↵ | Andrea Pretto | 2019-04-21 | 3 | -2/+84 | |
| | | | | | | | | | | | | importable name. Changes complete_scope to support that. | |||||
| * | auto_import: make auto import working with target as a list of SmolStr ↵ | Andrea Pretto | 2019-04-21 | 1 | -0/+4 | |
| | | | | | | | | instead of ast::Path | |||||
* | | Change macro stack monitor test to func ptr based | Edwin Cheng | 2019-04-22 | 1 | -40/+25 | |
| | | ||||||
* | | Add mbe expand limit and poision macro set | Edwin Cheng | 2019-04-22 | 3 | -15/+194 | |
|/ | ||||||
* | Add more information on parse_macro fail | Edwin Cheng | 2019-04-21 | 1 | -10/+27 | |
| | ||||||
* | Add HIR for where clauses & ignore impls with where clauses in trait resolution | Florian Diebold | 2019-04-21 | 3 | -5/+63 | |
| | | | | | This prevents any `impl<T> Trait for T where ...` from being treated as a blanket impl while we don't handle where clauses yet. | |||||
* | Merge #1175 | bors[bot] | 2019-04-21 | 2 | -6/+39 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 1175: Fix bugs and add error log about macro expansion r=matklad a=edwin0cheng This PR fixed / add following things: * Add a fused count which stop recursion of macro expansion in name resolution. * Add some logs when macro expansion fails * Add `$crate` meta variable support in mbe, which create a `$crate` ident token in token tree. * Fixed matching a `$REPEAT` pattern inside a subtree, e.g. `(fn $name:ident {$($i:ident)*} ) => {...}` * Remove composite-able punct token in syntax node to token conversion. Co-authored-by: Edwin Cheng <[email protected]> | |||||
| * | Fix bugs | Edwin Cheng | 2019-04-20 | 2 | -6/+39 | |
| | | ||||||
* | | Add a simple test for str method completion | Florian Diebold | 2019-04-20 | 1 | -0/+22 | |
| | | ||||||
* | | lang_item_lookup is now a salsa query. | Marco Groppo | 2019-04-19 | 3 | -32/+34 | |
| | | ||||||
* | | New krate() method in Resolver. | Marco Groppo | 2019-04-19 | 4 | -54/+44 | |
| | | | | | | | | Renamed Impl to ImplBlock. | |||||
* | | Initial support for lang items. | Marco Groppo | 2019-04-19 | 7 | -30/+175 | |
|/ | ||||||
* | Refactoring | Edwin Cheng | 2019-04-17 | 1 | -51/+46 | |
| | ||||||
* | Simpliy code | Edwin Cheng | 2019-04-17 | 1 | -60/+32 | |
| | ||||||
* | Bug fix and add more comments | Edwin Cheng | 2019-04-17 | 1 | -22/+60 | |
| | ||||||
* | Fix 1099 | Edwin Cheng | 2019-04-17 | 2 | -5/+109 | |
| | ||||||
* | Refactor method candidate generation a bit | Florian Diebold | 2019-04-14 | 3 | -54/+149 | |
| | | | | | | This fixes the order in which candidates are chosen a bit (not completely though, as the ignored test demonstrates), and makes autoderef work with trait methods. As a side effect, this also makes completion of trait methods work :) | |||||
* | Extract generic_params method to a HasGenericParams trait | Florian Diebold | 2019-04-14 | 7 | -37/+33 | |
| | ||||||
* | Add Container enum to handle both kinds of container (impl/trait) | Florian Diebold | 2019-04-14 | 4 | -17/+58 | |
| | ||||||
* | Make callable signature handling a bit nicer | Florian Diebold | 2019-04-14 | 2 | -47/+36 | |
| | ||||||
* | Some cleanup | Florian Diebold | 2019-04-14 | 3 | -98/+111 | |
| | ||||||
* | More trait infrastructure | Florian Diebold | 2019-04-14 | 11 | -51/+333 | |
| | | | | | | | | | | - make it possible to get parent trait from method - add 'obligation' machinery for checking that a type implements a trait (and inferring facts about type variables from that) - handle type parameters of traits (to a certain degree) - improve the hacky implements check to cover enough cases to exercise the handling of traits with type parameters - basic canonicalization (will probably also be done by Chalk) | |||||
* | Get substs for trait refs in impl blocks | Florian Diebold | 2019-04-14 | 5 | -43/+84 | |
| | ||||||
* | replace usages of `algo::generate` with `iter::successors` from std | Robin Freyler | 2019-04-13 | 1 | -2/+2 | |
| | ||||||
* | cleanups | Aleksey Kladov | 2019-04-13 | 2 | -13/+12 | |
| | ||||||
* | slight encapsulation | Aleksey Kladov | 2019-04-13 | 2 | -9/+13 | |
| | ||||||
* | move ScopeEntryWithSyntax | Aleksey Kladov | 2019-04-13 | 4 | -37/+34 | |
| | ||||||
* | drop obsolete fixme | Aleksey Kladov | 2019-04-13 | 2 | -5/+4 | |
| | ||||||
* | make expr scope stuff private | Aleksey Kladov | 2019-04-13 | 1 | -11/+9 | |
| | ||||||
* | make resolver private | Aleksey Kladov | 2019-04-13 | 6 | -26/+23 | |
| | ||||||
* | hide resolver | Aleksey Kladov | 2019-04-13 | 1 | -6/+14 | |
| |