Test generics and other things

This commit is contained in:
Werner
2022-05-22 13:41:48 -03:00
parent acb22d7ce6
commit ced258e5c5
16 changed files with 283 additions and 32 deletions

View File

@ -9,10 +9,22 @@ pub mod Examples;
mod _Class;
pub use self::_Class::*;
#[path = "Function.rs"]
mod _Function;
pub use self::_Function::*;
#[path = "Object.rs"]
mod _Object;
pub use self::_Object::*;
#[path = "Property.rs"]
mod _Property;
pub use self::_Property::*;
#[path = "Reflect.rs"]
mod _Reflect;
pub use self::_Reflect::*;
#[path = "Value.rs"]
mod _Value;
pub use self::_Value::*;