File tree 2 files changed +5
-9
lines changed
crates/red_knot_python_semantic/src 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ rayon = { version = "1.10.0" }
124
124
regex = { version = " 1.10.2" }
125
125
rustc-hash = { version = " 2.0.0" }
126
126
# When updating salsa, make sure to also update the revision in `fuzz/Cargo.toml`
127
- salsa = { git = " https://github.com/salsa-rs/salsa.git" , rev = " 296a8c78da1b54c76ff5795eb4c1e3fe2467e9fc" }
127
+ salsa = { git = " https://github.com/salsa-rs/salsa.git" , rev = " 296a8c78da1b54c76ff5795eb4c1e3fe2467e9fc" }
128
128
schemars = { version = " 0.8.16" }
129
129
seahash = { version = " 4.1.0" }
130
130
serde = { version = " 1.0.197" , features = [" derive" ] }
@@ -228,10 +228,6 @@ redundant_clone = "warn"
228
228
debug_assert_with_mut_call = " warn"
229
229
unused_peekable = " warn"
230
230
231
- # Has false positives
232
- # https://github.com/rust-lang/rust-clippy/issues/14275
233
- doc_overindented_list_items = " allow"
234
-
235
231
# Diagnostics are not actionable: Enable once https://github.com/rust-lang/rust-clippy/issues/13774 is resolved.
236
232
large_stack_arrays = " allow"
237
233
Original file line number Diff line number Diff line change @@ -464,11 +464,11 @@ impl<'db> SymbolAndQualifiers<'db> {
464
464
///
465
465
/// 1. If `self` is definitely bound, return `self` without evaluating `fallback_fn()`.
466
466
/// 2. Else, evaluate `fallback_fn()`:
467
- /// a . If `self` is definitely unbound, return the result of `fallback_fn()`.
468
- /// b . Else, if `fallback` is definitely unbound, return `self`.
469
- /// c . Else, if `self` is possibly unbound and `fallback` is definitely bound,
467
+ /// 1 . If `self` is definitely unbound, return the result of `fallback_fn()`.
468
+ /// 2 . Else, if `fallback` is definitely unbound, return `self`.
469
+ /// 3 . Else, if `self` is possibly unbound and `fallback` is definitely bound,
470
470
/// return `Symbol(<union of self-type and fallback-type>, Boundness::Bound)`
471
- /// d . Else, if `self` is possibly unbound and `fallback` is possibly unbound,
471
+ /// 4 . Else, if `self` is possibly unbound and `fallback` is possibly unbound,
472
472
/// return `Symbol(<union of self-type and fallback-type>, Boundness::PossiblyUnbound)`
473
473
#[ must_use]
474
474
pub ( crate ) fn or_fall_back_to (
You can’t perform that action at this time.
0 commit comments