feat(Num): rename Float to F64

This commit is contained in:
rvcas 2020-11-24 10:25:21 -05:00
parent 301ee85219
commit f7bd803509
19 changed files with 140 additions and 144 deletions

View file

@ -1624,8 +1624,8 @@ fn to_diff<'b>(
_ => false,
};
let is_float = |t: &ErrorType| match t {
ErrorType::Type(Symbol::NUM_FLOAT, _) => true,
ErrorType::Alias(Symbol::NUM_FLOAT, _, _) => true,
ErrorType::Type(Symbol::NUM_F64, _) => true,
ErrorType::Alias(Symbol::NUM_F64, _, _) => true,
_ => false,
};