diff options
author | Evgeny Zemtsov <eze@resoptima.com> | 2023-06-22T15·57+0200 |
---|---|---|
committer | ezemtsov <eugene.zemtsov@gmail.com> | 2023-06-22T20·19+0000 |
commit | c8fcdca4eb09709966ea25883cbe91f34c038236 (patch) | |
tree | 52dfa7ab1bbc8f9afdb1e94c130fe6cd70c4bb35 /tvix/eval/src/tests/mod.rs | |
parent | 8cdad7d45c6c58f0b93f0ca5b4779e31bd845bb9 (diff) |
feat(tvix/eval): allow extending builtins outside of tvix_eval r/6344
The change allows applications that use tvix_serde for parsing nix-based configuration to extend the language with domain-specific set of features. Change-Id: Ia86612308a167c456ecf03e93fe0fbae55b876a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8848 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/tests/mod.rs')
-rw-r--r-- | tvix/eval/src/tests/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/mod.rs b/tvix/eval/src/tests/mod.rs index f800baf05018..02227a7e9a2d 100644 --- a/tvix/eval/src/tests/mod.rs +++ b/tvix/eval/src/tests/mod.rs @@ -10,6 +10,7 @@ mod one_offs; mod mock_builtins { //! Builtins which are required by language tests, but should not //! actually exist in //tvix/eval. + use crate as tvix_eval; use crate::generators::GenCo; use crate::*; use genawaiter::rc::Gen; |