blots-wasm
This crate provides a WASM runtime for Blots – a small, simple, expression-oriented programming language.
;
;
;
;
;
This crate provides a WASM runtime for Blots – a small, simple, expression-oriented programming language.
pub fn evaluate(expr: &str, inputs_js: JsValue) -> Result<JsValue, JsError>;
pub fn tokenize(input: &str) -> Result<JsValue, JsError>;
pub fn get_built_in_function_names() -> Result<JsValue, JsError>;
pub fn get_constants() -> Result<JsValue, JsError>;
pub fn evaluate_inline_expressions(expressions_js: JsValue, inputs_js: JsValue,) -> Result<JsValue, JsError>;