1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! vb6runtime: VB6 runtime library - value system, type conversions, and standard library
//!
//! This library provides the runtime execution infrastructure for VB6 programs:
//!
//! - [`VBType`] - the single source of truth for VB6 static types
//! - [`VBVariant`] - runtime values with VB6-exact conversion semantics
//! - [`boundary`] - typed-argument conversion at the host/library boundary
//! - [`ArrayValue`] - VB6 arrays with arbitrary bounds
//! - [`VBError`] - runtime errors mirroring the `Err` object
//!
//! The standard library function implementations live under `library::` and are
//! added incrementally, using [`VBVariant`] and [`VBType`] as their foundations.
//! Process-global runtime state (the environment snapshot, RNG seed) lives under
//! `state::` and is shared across functions and statements.
/// `jiff` civil date/time types re-exported for consumers that need to pass
/// them across crate boundaries (e.g. interpreter configuration).
pub use civil;
/// Runtime error types, re-exported from [`vb6core`].
pub use error;
/// Type system types, re-exported from [`vb6core`].
pub use types;
pub use ;
pub use ;
pub use VBType;
pub use StdPicture;
pub use ;
/// Library version.
pub const VERSION: &str = env!;