diff --git a/core/src/avm2/globals/flash/utils/proxy.rs b/core/src/avm2/globals/flash/utils/proxy.rs index 8dfaf9667..3cae9349b 100644 --- a/core/src/avm2/globals/flash/utils/proxy.rs +++ b/core/src/avm2/globals/flash/utils/proxy.rs @@ -4,12 +4,14 @@ use crate::avm2::value::Value; use crate::avm2::Error; pub use crate::avm2::object::proxy_allocator; +use crate::avm2_stub_method; pub fn is_attribute<'gc>( - _activation: &mut Activation<'_, 'gc>, + activation: &mut Activation<'_, 'gc>, _this: Option>, _args: &[Value<'gc>], ) -> Result, Error<'gc>> { // yes, this is supposed to be implemented - Err("Proxy.isAttribute is not implemented".into()) + avm2_stub_method!(activation, "flash.utils.Proxy", "isAttribute"); + Ok(Value::Undefined) }