Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename ra_syntax -> syntax | Aleksey Kladov | 2020-08-12 | 3 | -3/+3 |
| | |||||
* | Merge #4743 | bors[bot] | 2020-08-12 | 1 | -3/+30 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 4743: Add tracking of packed repr, use it to highlight unsafe refs r=matklad a=Nashenas88 Taking a reference to a misaligned field on a packed struct is an unsafe operation. Highlight that behavior. Currently, the misaligned part isn't tracked, so this highlight is a bit too aggressive. Fixes #4600 Co-authored-by: Paul Daniel Faria <[email protected]> Co-authored-by: Paul Daniel Faria <[email protected]> Co-authored-by: Paul Daniel Faria <[email protected]> | ||||
| * | Unsafe borrow of packed fields: account for borrow through ref binding, auto ↵ | Paul Daniel Faria | 2020-08-10 | 1 | -15/+16 |
| | | | | | | | | ref function calls | ||||
| * | Cleanup repr check, fix packed repr check and test | Paul Daniel Faria | 2020-08-10 | 1 | -9/+5 |
| | | |||||
| * | Limit scope of unsafe to & instead of all ref exprs, add test showing ↵ | Paul Daniel Faria | 2020-08-10 | 1 | -0/+19 |
| | | | | | | | | missing support for autoref behavior | ||||
| * | Add tracking of packed repr, use it to highlight unsafe refs | Paul Daniel Faria | 2020-08-10 | 1 | -0/+11 |
| | | | | | | | | | | | | Taking a reference to a misaligned field on a packed struct is an unsafe operation. Highlight that behavior. Currently, the misaligned part isn't tracked, so this highlight is a bit too aggressive. | ||||
* | | Replace SepBy with Itertools | Aleksey Kladov | 2020-08-12 | 1 | -3/+2 |
|/ | |||||
* | Merge #5692 | bors[bot] | 2020-08-10 | 1 | -0/+17 |
|\ | | | | | | | | | | | | | | | | | | | 5692: Add support for extern crate r=jonas-schievink a=Nashenas88 This adds syntax highlighting, hover and goto def functionality for extern crate. Fixes #5690 Co-authored-by: Paul Daniel Faria <[email protected]> | ||||
| * | Add support for extern crate | Paul Daniel Faria | 2020-08-08 | 1 | -0/+17 |
| | | | | | | | | | | This adds syntax highlighting, hover and goto def functionality for extern crate | ||||
* | | Merge #5684 | bors[bot] | 2020-08-08 | 1 | -0/+11 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | 5684: Semantic highlighting for unsafe union field access r=jonas-schievink a=Nashenas88 This change adds support for unions in inference and lowering, then extends on that to add the unsafe semantic modifier on field access only. The `is_possibly_unsafe` function in `syntax_highlighting.rs` could be extended to support fns and static muts so that their definitions are not highlighted as unsafe, but only their usage. Also, each commit of this PR updates the tests. By reviewing the files by commit, it's easy to see how the changes in the code affected the tests. Co-authored-by: Paul Daniel Faria <[email protected]> | ||||
| * | Add test for unsafe union field access highlighting | Paul Daniel Faria | 2020-08-07 | 1 | -0/+11 |
| | | |||||
* | | Add test for accessing static mut | Paul Daniel Faria | 2020-08-07 | 1 | -0/+7 |
|/ | |||||
* | Add test showing unresolved module rename | Paul Daniel Faria | 2020-08-04 | 1 | -0/+3 |
| | |||||
* | Replace rand with oorandom | Aleksey Kladov | 2020-07-29 | 1 | -5/+5 |
| | |||||
* | Add new `Punctuation` highlight tag | Leander Tentrup | 2020-07-15 | 1 | -0/+2 |
| | |||||
* | Semantic Highlighting: Emit mutable modifier for 'self' when applicable | Lukas Wirth | 2020-07-13 | 1 | -0/+10 |
| | |||||
* | Use dedicated semantic highlight tag for parameters | Aleksey Kladov | 2020-07-11 | 2 | -2/+5 |
| | | | | closes #5106 | ||||
* | Don't mess with cursor position when adding hashes | Aleksey Kladov | 2020-07-09 | 1 | -1/+1 |
| | |||||
* | Move test data to test_data directory | Aleksey Kladov | 2020-07-01 | 1 | -6/+6 |
| | |||||
* | Add file support to expect | Aleksey Kladov | 2020-07-01 | 1 | -12/+10 |
| | |||||
* | Remove unneeded code, filename from tests, fix rebasing issues | Paul Daniel Faria | 2020-06-27 | 2 | -4/+4 |
| | |||||
* | Revert ide highlighting changes (addressing on another branch) | Paul Daniel Faria | 2020-06-27 | 3 | -36/+5 |
| | |||||
* | Add HighlightTag::Operator, use it for unsafe deref. Move unsafe validation ↵ | Paul Daniel Faria | 2020-06-27 | 1 | -1/+1 |
| | | | | to its own file | ||||
* | Account for deref token in syntax highlighting of unsafe, add test for that case | Paul Daniel Faria | 2020-06-27 | 1 | -0/+1 |
| | |||||
* | Fix typo in test | Paul Daniel Faria | 2020-06-27 | 1 | -1/+1 |
| | |||||
* | Move diagnostics back into expr, add tests for diagnostics, fix logic to ↵ | Paul Daniel Faria | 2020-06-27 | 1 | -0/+2 |
| | | | | account for derefs of raw ptrs | ||||
* | Add unsafe diagnostics and unsafe highlighting | Paul Daniel Faria | 2020-06-27 | 1 | -0/+28 |
| | |||||
* | Simplify | Aleksey Kladov | 2020-06-24 | 1 | -8/+3 |
| | |||||
* | Use fixtures more | Aleksey Kladov | 2020-06-24 | 1 | -6/+7 |
| | |||||
* | Update injection mechanism and stop injecting through highlight element, ↵ | Paul Daniel Faria | 2020-06-23 | 3 | -9/+9 |
| | | | | switch to more general new highlight tag, generic | ||||
* | Add punctuation highlighting for highlighting punctuation in doctests, fix ↵ | Paul Daniel Faria | 2020-06-23 | 3 | -5/+5 |
| | | | | highlighting in doctests | ||||
* | Add default color and opacity for documentation and injected, respectively, ↵ | Paul Daniel Faria | 2020-06-23 | 1 | -0/+2 |
| | | | | in the html generator | ||||
* | Add support for marking doctest items as distinct from normal code, add ↵ | Paul Daniel Faria | 2020-06-23 | 3 | -2/+9 |
| | | | | default tag to all doctest elements | ||||
* | Fix underflow panic when doctests are at top of file | Paul Daniel Faria | 2020-06-23 | 2 | -4/+11 |
| | |||||
* | Syntax highlighting for documentation comments on macro definitions | Leander Tentrup | 2020-06-19 | 1 | -0/+9 |
| | |||||
* | Merge #4903 | bors[bot] | 2020-06-18 | 2 | -2/+9 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | 4903: Add highlighting support for doc comments r=matklad a=Nashenas88 The language server protocol includes a semantic modifier for documentation. This change exports that modifier for doc comments so users can choose to highlight them differently compared to regular comments. Example: <img width="375" alt="Screen Shot 2020-06-16 at 10 34 14 AM" src="https://user-images.githubusercontent.com/1673130/84788271-f6599580-afbc-11ea-96e5-7a0215da620b.png"> CC @woody77 Co-authored-by: Paul Daniel Faria <[email protected]> | ||||
| * | Remove logic to mark all doctest code as | Paul Daniel Faria | 2020-06-18 | 1 | -1/+0 |
| | | |||||
| * | Ensure all existing doctest code highlights have documentation modifier | Paul Daniel Faria | 2020-06-17 | 1 | -4/+5 |
| | | |||||
| * | Add highlighting support for doc comments | Paul Daniel Faria | 2020-06-17 | 2 | -2/+9 |
| | | |||||
* | | Syntax highlighting for escape sequences in strings | Leander Tentrup | 2020-06-17 | 3 | -0/+7 |
|/ | |||||
* | Inspect markdown code fences to determine whether to apply syntax highlighting | Leander Tentrup | 2020-06-16 | 2 | -3/+17 |
| | |||||
* | Syntactic highlighting of NAME_REF for injections | Leander Tentrup | 2020-06-15 | 3 | -4/+15 |
| | | | | | | This commit adds a function that tries to determine the syntax highlighting class of NAME_REFs based on the usage. It is used for highlighting injections (such as highlighting of doctests) as the semantic logic will most of the time result in unresolved references. It also adds a color to unresolved references in HTML encoding. | ||||
* | Fix syntax highlighting of recursive macros | Leander Tentrup | 2020-06-15 | 1 | -0/+8 |
| | | | | Add syntax highlighting for the BANG (`!`) token if the parent is `MACRO_CALL`. | ||||
* | In field patterns, don't highlight local binding as a field | Aleksey Kladov | 2020-06-10 | 1 | -12/+14 |
| | |||||
* | Better unsafe highlihgting tests | Aleksey Kladov | 2020-06-08 | 2 | -2/+3 |
| | |||||
* | Implement syntax highlighting for doctests | Leander Tentrup | 2020-06-08 | 2 | -0/+218 |
| | |||||
* | Remove redundancy in syntax highlighting tests | Leander Tentrup | 2020-06-07 | 1 | -32/+27 |
| | |||||
* | Add highlight support for unsafe fn calls and raw ptr deref | Paul Daniel Faria | 2020-06-02 | 3 | -4/+36 |
| | |||||
* | Test case for format string highlighting of closing curlybrace | Roland Ruckerbauer | 2020-05-30 | 1 | -0/+1 |
| | |||||
* | Add semantic highlight to QUESTION token | Roland Ruckerbauer | 2020-05-29 | 1 | -0/+2 |
| | | | | Made it an operator with controlFlow modifier. |