mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-14 07:57:57 -05:00
10 lines
139 B
Rust
10 lines
139 B
Rust
use super::vs_value::Val;
|
|
|
|
#[derive(Debug)]
|
|
pub struct VsClass {
|
|
pub constructor: Val,
|
|
pub instance_prototype: Val,
|
|
}
|
|
|
|
impl VsClass {}
|