Function tvix_cli::interpret

source ·
pub fn interpret(
    tvix_store_io: Rc<TvixStoreIO>,
    code: &str,
    path: Option<PathBuf>,
    args: &Args,
    explain: bool,
    allow_incomplete: AllowIncomplete,
    env: Option<&FxHashMap<SmolStr, Value>>,
    globals: Option<Rc<GlobalsMap>>,
    source_map: Option<SourceCode>
) -> Result<InterpretResult, IncompleteInput>
Expand description

Interprets the given code snippet, printing out warnings, errors and the result itself. The return value indicates whether evaluation succeeded.