pub trait AnyWithEq: Debug {
// Required methods
fn as_any(&self) -> &dyn Any;
fn is_equals(
&self,
other: &dyn AnyWithEq,
interpreter: &mut Interpreter,
pos: CodePosition,
) -> bool;
fn is_strict_equals(
&self,
other: &dyn AnyWithEq,
interpreter: &mut Interpreter,
pos: CodePosition,
) -> bool;
}