Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make documenation a query | Aleksey Kladov | 2019-06-08 | 3 | -66/+62 |
| | |||||
* | make Docs handing more ideomatic | Aleksey Kladov | 2019-06-08 | 2 | -6/+5 |
| | |||||
* | Move docs to dedicated module | Aleksey Kladov | 2019-06-08 | 2 | -69/+70 |
| | |||||
* | [#1083] Try block syntax: fix tests | Andrey Tkachenko | 2019-06-06 | 1 | -1/+0 |
| | |||||
* | [#1083] Try block syntax | Andrey Tkachenko | 2019-06-06 | 2 | -1/+15 |
| | |||||
* | fix: clean up warnings | csmoe | 2019-06-06 | 1 | -2/+2 |
| | | | | Change-Id: I91a468f6e846ac28574825b8ee7aa02fbff68f63 | ||||
* | Fix clippy::iter_cloned_collect | Alan Du | 2019-06-04 | 1 | -4/+2 |
| | |||||
* | Fix clippy::option_map_or_none | Alan Du | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Fix clippy::or_fun_call | Alan Du | 2019-06-04 | 4 | -9/+14 |
| | |||||
* | Fix clippy::identity_conversion | Alan Du | 2019-06-04 | 7 | -15/+11 |
| | |||||
* | Fix clippy::single_char_pattern | Alan Du | 2019-06-04 | 1 | -5/+2 |
| | |||||
* | Fix clippy::into_iter_on_ref | Alan Du | 2019-06-04 | 2 | -2/+2 |
| | |||||
* | Fix clippy::len_zero | Alan Du | 2019-06-04 | 1 | -2/+2 |
| | |||||
* | Fix clippy::ptr_arg | Alan Du | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Fix clippy::single_match | Alan Du | 2019-06-04 | 5 | -56/+38 |
| | |||||
* | don't cache parses twice | Aleksey Kladov | 2019-06-02 | 3 | -26/+32 |
| | | | | | | | | | Before this commit, `Parse`s for original file ended up two times in salsa's db: first, when we parse original file, and second, when we parse macro or a file. Given that parse trees are the worst ofenders in terms of memory, it makes sense to make sure we store them only once. | ||||
* | add AstDatabase | Aleksey Kladov | 2019-06-02 | 15 | -95/+177 |
| | |||||
* | collect impl source maps | Aleksey Kladov | 2019-06-01 | 2 | -11/+1 |
| | |||||
* | don't cache ast_id_to_node | Aleksey Kladov | 2019-06-01 | 1 | -0/+1 |
| | |||||
* | Merge #1360 | bors[bot] | 2019-06-01 | 4 | -8/+31 |
|\ | | | | | | | | | | | | | | | | | | | 1360: Improve goto definition for MBE r=matklad a=edwin0cheng This PR improve the macro resolution for goto definition and expression macro invocation by using proper path resolution for external macros. Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | Improve goto definition for MBE | Edwin Cheng | 2019-06-01 | 4 | -8/+31 |
| | | |||||
* | | don't poison mutex around chalk | Aleksey Kladov | 2019-06-01 | 2 | -3/+5 |
|/ | | | | | | | | | We use panics for cancellation, so we could trigger panic while holding the solver. std::sync::Mutex will be poisoned as a result, which and all further attempts to use solver (from other threads) will panic as well. This commit switches to parking_lot::Mutex which just unlocks on panic. | ||||
* | add tests for primitive types | Aleksey Kladov | 2019-05-30 | 5 | -30/+44 |
| | |||||
* | add built-in types to scopes | Aleksey Kladov | 2019-05-30 | 6 | -24/+48 |
| | |||||
* | add list of builtin types | Aleksey Kladov | 2019-05-30 | 2 | -3/+29 |
| | |||||
* | add ModuleDef::BuiltInType | Aleksey Kladov | 2019-05-30 | 5 | -10/+61 |
| | |||||
* | :arrow_up: parking_lot | Aleksey Kladov | 2019-05-30 | 1 | -1/+1 |
| | |||||
* | add cacellation checks to expensive queries | Aleksey Kladov | 2019-05-29 | 3 | -0/+3 |
| | |||||
* | fix syntax errors in tests | Aleksey Kladov | 2019-05-28 | 6 | -118/+134 |
| | |||||
* | check cancellation when expanding macros | Aleksey Kladov | 2019-05-27 | 1 | -0/+1 |
| | |||||
* | Formatting | Edwin Cheng | 2019-05-27 | 1 | -1/+0 |
| | |||||
* | Add Test for new item resolution | Edwin Cheng | 2019-05-26 | 2 | -2/+55 |
| | |||||
* | Use ItemOrMacro in item resolution | Edwin Cheng | 2019-05-26 | 4 | -94/+214 |
| | |||||
* | Add Either dep | Edwin Cheng | 2019-05-26 | 1 | -0/+1 |
| | |||||
* | Put back unexpaned_macros after resolve | Edwin Cheng | 2019-05-26 | 1 | -0/+3 |
| | |||||
* | rename code_model_api -> code_model | Aleksey Kladov | 2019-05-23 | 4 | -4/+4 |
| | |||||
* | kill code_model_impl | Aleksey Kladov | 2019-05-23 | 5 | -89/+64 |
| | |||||
* | remove more references | Aleksey Kladov | 2019-05-23 | 1 | -56/+56 |
| | |||||
* | remove references | Aleksey Kladov | 2019-05-23 | 3 | -157/+105 |
| | |||||
* | kill krate_impl | Aleksey Kladov | 2019-05-23 | 3 | -26/+12 |
| | |||||
* | fix signature | Aleksey Kladov | 2019-05-23 | 1 | -4/+4 |
| | |||||
* | add union to code_model | Aleksey Kladov | 2019-05-23 | 9 | -26/+91 |
| | |||||
* | add profile calls to parsing/expansion routines | Aleksey Kladov | 2019-05-22 | 1 | -0/+2 |
| | |||||
* | Fix crash with int vars in canonicalization | Florian Diebold | 2019-05-21 | 1 | -1/+6 |
| | |||||
* | Use fuel branch for Chalk | Florian Diebold | 2019-05-21 | 2 | -4/+4 |
| | | | | This makes sure we don't take too long in trait solving. | ||||
* | re-enable chalk | Aleksey Kladov | 2019-05-21 | 1 | -17/+16 |
| | |||||
* | publish gen_lsp_server 0.2 | Aleksey Kladov | 2019-05-21 | 1 | -16/+17 |
| | |||||
* | profile type inference | Aleksey Kladov | 2019-05-21 | 3 | -3/+5 |
| | |||||
* | profile implements query | Aleksey Kladov | 2019-05-21 | 1 | -0/+2 |
| | |||||
* | fix odrer-of-iteration bug in tests | Aleksey Kladov | 2019-05-21 | 2 | -7/+15 |
| |