We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TupleType::to_class_type
1 parent deaa45e commit 3436d5dCopy full SHA for 3436d5d
crates/ty_python_semantic/src/types/tuple.rs
@@ -166,7 +166,6 @@ impl<'db> Type<'db> {
166
}
167
168
169
-#[salsa::tracked]
170
impl<'db> TupleType<'db> {
171
pub(crate) fn new<T>(db: &'db dyn Db, tuple_key: T) -> Option<Self>
172
where
@@ -220,7 +219,6 @@ impl<'db> TupleType<'db> {
220
219
TupleType::new(db, TupleSpec::homogeneous(element))
221
222
223
- #[salsa::tracked]
224
pub(crate) fn to_class_type(self, db: &'db dyn Db) -> Option<ClassType<'db>> {
225
KnownClass::Tuple
226
.try_to_class_literal(db)
0 commit comments