Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make macro def krate mandatory | Jonas Schievink | 2020-12-15 | 1 | -1/+4 |
| | | | | Refactors builtin derive support to go through proper name resolution | ||||
* | Move to upstream `macro_rules!` model | Jonas Schievink | 2020-12-15 | 3 | -7/+7 |
| | |||||
* | Use METHOD semantic token type | Laurențiu Nicola | 2020-12-04 | 5 | -32/+32 |
| | |||||
* | Add attribute highlight modifier to all tokens inside attributes | Lukas Wirth | 2020-11-21 | 3 | -7/+7 |
| | |||||
* | format string highlighting: handle hex + debug type specifier | Roland Ruckerbauer | 2020-11-15 | 1 | -0/+2 |
| | |||||
* | Merge #6472 | bors[bot] | 2020-11-09 | 3 | -2/+58 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6472: Add `static` modifier for associated functions r=matklad a=p3achyjr Adds static semantic token modifier to associated functions, resolves #6194 ## Info - Associated functions are more-or-less equivalent to static methods in other languages. This PR checks, for each function, whether that function has a self_param, and whether it's enclosed in a trait/impl. ## Changes - Added method ```is_associated``` to code_model::Function. This basically gets the source from the ast, and checks whether the enclosing scope is an impl or trait. - Added `static` to HighlightModifiers - Added unit test ## Tests - Ran ```cargo test``` Co-authored-by: Anatol Liu <[email protected]> | ||||
| * | Add static semantic token modifier for associated functions with no &self | Anatol Liu | 2020-11-05 | 3 | -2/+58 |
| | | |||||
* | | . is an operator | Aleksey Kladov | 2020-11-09 | 4 | -27/+27 |
|/ | | | | closes #6498 | ||||
* | Merge #6379 | bors[bot] | 2020-10-27 | 1 | -0/+6 |
|\ | | | | | | | | | | | | | | | 6379: Highlight never type as BuiltinType r=matklad a=Veykril Fixes #6374 Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | Highlight never type as BuiltinType | Lukas Wirth | 2020-10-26 | 1 | -0/+6 |
| | | |||||
* | | Fix test | GrayJack | 2020-10-26 | 1 | -158/+158 |
| | | |||||
* | | Add test to avoid regression | GrayJack | 2020-10-26 | 1 | -153/+159 |
|/ | |||||
* | Fix unary minus highlighting | Lukas Wirth | 2020-10-25 | 1 | -0/+3 |
| | |||||
* | Add tests for callable modifier | GrayJack | 2020-10-21 | 1 | -0/+19 |
| | |||||
* | Merge #6198 | bors[bot] | 2020-10-12 | 2 | -1/+5 |
|\ | | | | | | | | | | | | | | | | | | | 6198: Skip macro matcher fragment name semantic highlighting r=matklad a=Veykril Implements a small state-machine for macro_rules! highlighting to separate out the matcher part of its rules. This skips semantically highlighting names of metavariables in the matcher and expander. This might even allow for more fun macro highlighting things in the future. Fixes #4380. Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | Skip macro matcher fragment name semantic highlighting | Lukas Wirth | 2020-10-10 | 2 | -1/+5 |
| | | |||||
* | | Fix `mut self` not emitting mutable binding on `self` use | Lukas Wirth | 2020-10-11 | 1 | -1/+1 |
|/ | |||||
* | Cleanup unintended unresolved reference in syntax higlighting test | Paul Daniel Faria | 2020-09-24 | 1 | -3/+3 |
| | |||||
* | Fix handling of consuming self, refactor shared logic into a single function | Paul Daniel Faria | 2020-09-06 | 1 | -1/+1 |
| | |||||
* | Add consuming modifier to lvalues that are passed by value and not Copy | Paul Daniel Faria | 2020-09-06 | 1 | -6/+7 |
| | |||||
* | :arrow_up: expect-test | Aleksey Kladov | 2020-08-28 | 7 | -0/+604 |