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

@@ -7,7 +7,7 @@ use super::vs_value::Val;
#[derive(Debug)]
pub struct VsClass {
pub constructor: Val,
pub instance_prototype: Val,
pub prototype: Val,
}
impl VsClass {}