about summary refs log tree commit diff
path: root/tvix/eval/src/builtins/impure.rs
blob: 3438aa06f424f7d0f839dc8736de241e3d331882 (plain) (blame)
1
2
3
4
5
6
7
use crate::value::Builtin;

/// Return all impure builtins, that is all builtins which may perform I/O outside of the VM and so
/// cannot be used in all contexts (e.g. WASM).
pub(super) fn builtins() -> Vec<Builtin> {
    vec![]
}