swamp_runtime/
prelude.rs

1/*
2 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/swamp/swamp
3 * Licensed under the MIT License. See LICENSE in the project root for license information.
4 */
5pub use crate::{
6    CodeGenAndVmResult, CodeGenResult, CompileAndCodeGenOptions, CompileAndVmResult,
7    CompileCodeGenAndVmOptions, CompileCodeGenVmResult, RunConstantsOptions, RunOptions,
8    StandardOnlyHostCallbacks, VmOptions, compile_and_code_gen, compile_codegen_and_create_vm,
9    compile_codegen_and_create_vm_and_run_first_time, run_first_time, run_function,
10    run_function_with_debug,
11};
12
13pub use swamp_code_gen_program::CodeGenOptions;
14pub use swamp_compile::prelude::*;
15pub use swamp_dep_loader::RunMode;