fix: null dynamic attrs

This commit is contained in:
2026-05-05 00:28:38 +08:00
parent 4aff27142c
commit 49392f66f8
4 changed files with 13 additions and 14 deletions
+1 -2
View File
@@ -3,7 +3,7 @@ use gc_arena::Mutation;
use crate::bytecode_reader::BytecodeReader;
use crate::value::*;
use crate::{Step, Vm, VmRuntimeCtx};
use crate::{Step, Vm};
impl<'gc> Vm<'gc> {
pub(crate) fn primop_filter_force_list(
@@ -44,7 +44,6 @@ impl<'gc> Vm<'gc> {
pub(crate) fn primop_filter_check(
&mut self,
ctx: &mut impl VmRuntimeCtx,
reader: &mut BytecodeReader<'_>,
mc: &Mutation<'gc>,
) -> Step {