Function expry::expry_compile_expr

source ·
pub fn expry_compile_expr<'b, 'c>(
    expr: &'b str,
    static_value: Option<&DecodedObject<'b>>,
    allow_unbound_variables: Option<u8>,
    dynamic_value_names: &[&str],
    scope: &mut MemoryScope<'c>
) -> Result<(BytecodeRef<'b>, bool), CompileError<'b>>where
    'c: 'b,