chore: Fix new clippy lint about short variable names - fixes #668

This commit is contained in:
Nathan Adams 2020-05-31 20:36:58 +02:00 committed by Mike Welsh
parent 3a8c705e95
commit 0d53f0a952
1 changed files with 15 additions and 9 deletions

View File

@ -681,20 +681,26 @@ mod test {
#[test] #[test]
fn to_primitive_num() { fn to_primitive_num() {
with_avm(6, |avm, context, _this| { with_avm(6, |avm, context, _this| {
let t = Value::Bool(true); let true_value = Value::Bool(true);
let u = Value::Undefined; let undefined = Value::Undefined;
let f = Value::Bool(false); let false_value = Value::Bool(false);
let n = Value::Null; let null = Value::Null;
assert_eq!(t.to_primitive_num(avm, context).unwrap(), t); assert_eq!(
assert_eq!(u.to_primitive_num(avm, context).unwrap(), u); true_value.to_primitive_num(avm, context).unwrap(),
assert_eq!(f.to_primitive_num(avm, context).unwrap(), f); true_value
assert_eq!(n.to_primitive_num(avm, context).unwrap(), n); );
assert_eq!(undefined.to_primitive_num(avm, context).unwrap(), undefined);
assert_eq!(
false_value.to_primitive_num(avm, context).unwrap(),
false_value
);
assert_eq!(null.to_primitive_num(avm, context).unwrap(), null);
let (protos, global, _) = create_globals(context.gc_context); let (protos, global, _) = create_globals(context.gc_context);
let vglobal = Value::Object(global); let vglobal = Value::Object(global);
assert_eq!(vglobal.to_primitive_num(avm, context).unwrap(), u); assert_eq!(vglobal.to_primitive_num(avm, context).unwrap(), undefined);
fn value_of_impl<'gc>( fn value_of_impl<'gc>(
_: &mut Avm1<'gc>, _: &mut Avm1<'gc>,