mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-20 09:10:12 +00:00
Checks date for any RA
This commit is contained in:
parent
ec7451cc8d
commit
b05def0f4c
2 changed files with 22 additions and 20 deletions
|
@ -154,21 +154,16 @@ function orderFromPath(
|
|||
raVersionResolver: (path: string) => string | undefined,
|
||||
): string {
|
||||
const capture = path.match(/^.*\/toolchains\/(.*)\/bin\/rust-analyzer$/);
|
||||
|
||||
if (capture?.length === 2) {
|
||||
const toolchain = capture[1]!;
|
||||
if (toolchain.startsWith("stable-")) {
|
||||
return "1";
|
||||
// It is a semver, so we must resolve Rust Analyzer's version.
|
||||
const raVersion = raVersionResolver(path);
|
||||
const raDate = raVersion?.match(/^rust-analyzer .*\(.* (\d{4}-\d{2}-\d{2})\)$/);
|
||||
if (raDate?.length === 2) {
|
||||
const precedence = toolchain.startsWith("nightly-") ? "/0" : "/1";
|
||||
return "0-" + raDate[1] + precedence;
|
||||
} else {
|
||||
// It is a semver, so we must resolve Rust Analyzer's version.
|
||||
const raVersion = raVersionResolver(path);
|
||||
const raDate = raVersion?.match(/^rust-analyzer .*\(.* (\d{4}-\d{2}-\d{2})\)$/);
|
||||
if (raDate?.length === 2) {
|
||||
const precedence = toolchain.startsWith("nightly-") ? "/0" : "/1";
|
||||
return "0-" + raDate[1] + precedence;
|
||||
} else {
|
||||
return "2";
|
||||
}
|
||||
return "2";
|
||||
}
|
||||
} else {
|
||||
return "2";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue