instance_prototype -> prototype

This commit is contained in:
Andrew Morris
2023-06-23 09:06:01 +10:00
parent 5567ebcef0
commit a00a161973
6 changed files with 6 additions and 6 deletions

View File

@@ -146,7 +146,7 @@ impl BytecodeDecoder {
BytecodeType::Builtin => BUILTIN_VALS[self.decode_varsize_uint()](),
BytecodeType::Class => VsClass {
constructor: self.decode_val(registers),
instance_prototype: self.decode_val(registers),
prototype: self.decode_val(registers),
}
.to_val(),
BytecodeType::BigInt => self.decode_bigint().to_val(),