@@ -159,7 +159,7 @@ impl PendingConditionNarrow {
159159 InferConditionFlow :: TrueCondition => LuaType :: from_vec ( result) ,
160160 InferConditionFlow :: FalseCondition => {
161161 let target = LuaType :: from_vec ( result) ;
162- crate :: TypeOps :: Remove . apply ( db, & antecedent_type, & target)
162+ TypeOps :: Remove . apply ( db, & antecedent_type, & target)
163163 }
164164 }
165165 }
@@ -222,15 +222,15 @@ impl PendingConditionNarrow {
222222 } => match condition_flow. clone ( ) {
223223 InferConditionFlow :: TrueCondition => {
224224 let maybe_type =
225- crate :: TypeOps :: Intersect . apply ( db, & antecedent_type, right_expr_type) ;
225+ TypeOps :: Intersect . apply ( db, & antecedent_type, right_expr_type) ;
226226 if maybe_type. is_never ( ) {
227227 antecedent_type
228228 } else {
229229 maybe_type
230230 }
231231 }
232232 InferConditionFlow :: FalseCondition => {
233- crate :: TypeOps :: Remove . apply ( db, & antecedent_type, right_expr_type)
233+ TypeOps :: Remove . apply ( db, & antecedent_type, right_expr_type)
234234 }
235235 } ,
236236 PendingConditionNarrow :: TypeGuard {
@@ -242,7 +242,7 @@ impl PendingConditionNarrow {
242242 . unwrap_or_else ( || narrow. clone ( ) )
243243 }
244244 InferConditionFlow :: FalseCondition => {
245- crate :: TypeOps :: Remove . apply ( db, & antecedent_type, narrow)
245+ TypeOps :: Remove . apply ( db, & antecedent_type, narrow)
246246 }
247247 } ,
248248 PendingConditionNarrow :: Correlated ( correlated_narrowing) => {
0 commit comments