hebi 0.4.0

A dynamic scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
use super::*;
use crate::internal::object::{Function as OwnedFunction, Ptr};

decl_ref! {
  struct Function(Ptr<OwnedFunction>)
}

impl_object_ref!(Function, OwnedFunction);

impl<'cx> Function<'cx> {}