Add static_ field

This commit is contained in:
Andrew Morris
2023-06-23 09:10:35 +10:00
parent a00a161973
commit 290c9b0cf0
5 changed files with 5 additions and 0 deletions

View File

@@ -147,6 +147,7 @@ impl BytecodeDecoder {
BytecodeType::Class => VsClass {
constructor: self.decode_val(registers),
prototype: self.decode_val(registers),
static_: VsObject::default().to_val(),
}
.to_val(),
BytecodeType::BigInt => self.decode_bigint().to_val(),