aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Renames, comments, and dead code removalZac Pullar-Strecker2020-08-244-23/+8
| | |
| * | Merge remote-tracking branch 'upstream/master' into 503-hover-doc-linksZac Pullar-Strecker2020-08-241587-126973/+129005
| |\ \
| * | | Add a test to document unimplemented caseZac Pullar-Strecker2020-08-241-0/+62
| | | |
| * | | Reorganise codeZac Pullar-Strecker2020-08-248-255/+345
| | | |
| * | | update & configure cmark to render three backticksZac Pullar-Strecker2020-08-024-171/+173
| | | |
| * | | remove debug eprintln!Zac Pullar-Strecker2020-08-011-5/+1
| | | |
| * | | pulldown_cmark no-default-featuresZac Pullar-Strecker2020-08-011-1/+1
| | | |
| * | | move into separate moduleZac Pullar-Strecker2020-08-013-298/+307
| | | |
| * | | Improve namespace parsing commentZac Pullar-Strecker2020-08-011-1/+7
| | | |
| * | | use static data for namespace recognitionZac Pullar-Strecker2020-08-012-55/+48
| | | |
| * | | remove some crates.io depsZac Pullar-Strecker2020-08-012-18/+30
| | | |
| * | | Update expect testsZac Pullar-Strecker2020-07-312-167/+417
| | | |
| * | | Update test calls to 'expect'Zac Pullar-Strecker2020-07-311-22/+36
| | | |
| * | | Merge remote-tracking branch 'upstream/master' into 503-hover-doc-linksZac Pullar-Strecker2020-07-31613-32781/+31173
| |\ \ \ | | | | | | | | | | | | | | | Hasn't fixed tests yet.
| * | | | Use From instead of Into in resolver methodZac Pullar-Strecker2020-07-111-8/+8
| | | | |
| * | | | Remove unintentional changesZac Pullar-Strecker2020-06-305-15/+13
| | | | |
| * | | | FormatZac Pullar-Strecker2020-06-302-8/+10
| | | | |
| * | | | Switch to Path::parse and add testsZac Pullar-Strecker2020-06-301-671/+667
| | | | |
| * | | | Don't strip affixes from path linksZac Pullar-Strecker2020-06-301-35/+53
| | | | |
| * | | | Fix doc attr parsing, fixes links from std/core/allocZac Pullar-Strecker2020-06-301-13/+19
| | | | |
| * | | | Return a resolver for Definition::LocalZac Pullar-Strecker2020-06-301-2/+1
| | | | |
| * | | | Format & replace todos with 'fixme'Zac Pullar-Strecker2020-06-305-21/+27
| | | | |
| * | | | Remove old comment, remove unecessary localZac Pullar-Strecker2020-06-301-4/+1
| | | | |
| * | | | Update missed heavy testZac Pullar-Strecker2020-06-301-1/+1
| | | | |
| * | | | Switch to pulldown-cmark, tidy importsZac Pullar-Strecker2020-06-304-96/+250
| | | | |
| * | | | Move resolver into impls, work on testsZac Pullar-Strecker2020-06-306-71/+137
| | | | |
| * | | | Remove local documentation link rewritingZac Pullar-Strecker2020-06-305-105/+22
| | | | |
| * | | | Working intra-doc-linksZac Pullar-Strecker2020-06-304-8/+117
| | | | |
| * | | | Generate correct symbol filename for relative linksZac Pullar-Strecker2020-06-302-10/+40
| | | | |
| * | | | Tidy upZac Pullar-Strecker2020-06-301-67/+53
| | | | |
| * | | | URL doc outputs in hoverZac Pullar-Strecker2020-06-302-16/+68
| | | | |
| * | | | Hover doc link rewritingZac Pullar-Strecker2020-06-306-6/+157
| | | | |
* | | | | Cleanup invert-ifAleksey Kladov2020-08-252-25/+17
| |_|_|/ |/| | | | | | | | | | | | | | | * stick to trivial factory functions in make * compress the logic for inverting Option/Result
* | | | Support extern typesJonas Schievink2020-08-243-1/+13
| | | |
* | | | Allow rust-analyzer auto publishingPavan Kumar Sunkara2020-08-241-19/+19
| | | |
* | | | Merge #5733bors[bot]2020-08-242-119/+617
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5733: Fix expand glob import bugs r=matklad a=unexge fixes https://github.com/rust-analyzer/rust-analyzer/issues/5709 TODOs: - [x] Incorrect node replacing <details> <summary>Details</summary> ```rust use crate::{ body::scope::{ExprScopes, ScopeId}, body::Body, builtin_type::BuiltinType, db::DefDatabase, expr::{ExprId, PatId}, generics::GenericParams, item_scope::{BuiltinShadowMode, BUILTIN_SCOPE}, nameres::CrateDefMap, path::*<|>, per_ns::PerNs, visibility::{RawVisibility, Visibility}, AdtId, AssocContainerId, ConstId, ContainerId, DefWithBodyId, EnumId, EnumVariantId, FunctionId, GenericDefId, HasModule, ImplId, LocalModuleId, Lookup, ModuleDefId, ModuleId, StaticId, StructId, TraitId, TypeAliasId, TypeParamId, VariantId, }; ``` becames ```rust use crate::{PathKind, name, name, ModPath}; ``` </details> - [x] Ignoring visibility <details> <summary>Details</summary> ```rust mod foo { mod bar { pub struct Bar; } } use foo::bar::*; fn baz(bar: Bar) {} ``` becames ```rust mod foo { mod bar { pub struct Bar; } } use foo::bar::Bar; fn baz(bar: Bar) {} ``` although mod `bar` is private </details> - [x] Eating attributes Co-authored-by: unexge <[email protected]>
| * | | | Use new `Definition::usages` API in expand glob importunexge2020-08-201-1/+1
| | | | |
| * | | | Fix importing private modules in expand glob importunexge2020-08-201-0/+52
| | | | |
| * | | | Fix importing unused traits in expand glob importunexge2020-08-201-28/+73
| | | | |
| * | | | Use fixme instead of todounexge2020-08-202-2/+2
| | | | |
| * | | | Use `Definition::find_usages` for finding used items in expand glob importunexge2020-08-202-114/+137
| | | | |
| * | | | Run rustfmtunexge2020-08-201-3/+5
| | | | |
| * | | | Handle more cases in AST replacing in expand glob importunexge2020-08-202-35/+220
| | | | |
| * | | | Improve AST replacing in expand glob importunexge2020-08-201-38/+229
| | | | |
* | | | | Add TBD description to arenaPavan Kumar Sunkara2020-08-241-0/+1
| | | | |
* | | | | Merge #4776bors[bot]2020-08-2428-98/+124
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4776: Do a weekly minor publish to crates.io r=matklad a=pksunkara This is the same system I set up on Chalk repo. Every week it creates a new minor version, pushes it to github and then deploys it to crates.io. Co-authored-by: Pavan Kumar Sunkara <[email protected]>
| * | | | | Add description for crates that will be publishedPavan Kumar Sunkara2020-08-2425-0/+25
| | | | | |
| * | | | | Add version to deps in cargo.tomlPavan Kumar Sunkara2020-08-2422-98/+99
| | |_|_|/ | |/| | |
* | | | | Merge #5845bors[bot]2020-08-243-5/+25
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5845: Omit lenses for not runnable doctests r=matklad a=SomeoneToIgnore Ideally, we should properly parse the doctest attributes before, but since I need it for the code lens only, this way should suffice for now Co-authored-by: Kirill Bulatov <[email protected]>
| * | | | | Omit lenses for not runnable doctestsKirill Bulatov2020-08-223-5/+25
| |/ / / /