1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use std::borrow::Cow;
use stc_ts_types::Type;
use swc_common::Span;
use swc_ecma_ast::TsKeywordTypeKind;
use crate::analyzer::{types::NormalizeTypeOpts, Analyzer};
impl Analyzer<'_, '_> {
pub(crate) fn can_be_casted_to_number_in_rhs(&mut self, span: Span, ty: &Type) -> bool {
let ty = match self.normalize(
Some(span),
Cow::Borrowed(ty),
NormalizeTypeOpts {
preserve_global_this: true,
preserve_union: true,
..Default::default()
},
) {
Ok(v) => v.into_owned(),
_ => return false,
};
if ty.is_num() {
return true;
}
if ty.is_kwd(TsKeywordTypeKind::TsBigIntKeyword) {
return true;
}
match ty.normalize() {
Type::EnumVariant(e) => {
true
}
Type::Enum(e) => !e.has_str,
Type::Union(ty) => ty.types.iter().all(|ty| self.can_be_casted_to_number_in_rhs(span, ty)),
Type::Intersection(ty) => ty.types.iter().any(|ty| self.can_be_casted_to_number_in_rhs(span, ty)),
_ => false,
}
}
}