pub use dolang_runtime::{
arg::{Arg, Args},
call, method,
sym::Sym,
unpack,
};
pub mod value {
pub use dolang_runtime::value::{
Empty, Input, Nil, Output, Root, Singleton, Slot, TypeObject, Value,
view::{Array, Dict, DictPairs, ObjectId, ObjectView, Record, RecordPairs, Tuple, View},
};
}
pub use value::{Input, Output, Slot, Value};
pub mod error {
pub use dolang_runtime::error::{
BacktraceEntry, BacktraceIter, Error, ErrorExt, ErrorKind, Result, ResultExt,
};
}
pub use error::{Error, Result};
pub mod object {
pub use dolang_runtime::object::native::{
Instance, Mut, Object, Ref, Spread, SpreadContext, Type, TypeBuilder, TypeMut, TypeRef,
Unpack, UnpackItem,
};
}
pub use object::{Instance, Object, Type};
pub mod vm {
pub use dolang_runtime::frame::Frame;
pub use dolang_runtime::vm::{Builder, Bytecode, ModuleBuilder, State, Stateful, Vm};
}
pub use vm::{Bytecode, Frame, State, Vm};
pub mod strand {
pub use dolang_runtime::strand::{
CancelToken, Local, LocalKey, LocalRootKey, Redirect, Strand,
};
}
pub use strand::Strand;