Cwl is a front end web language implemented with Rust procedural macros.
To install, you will need: 1. rustc/cargo 1. node/npm 1. wasm-pack
Then:
bash
git clone --recurse-submodules https://github.com/thisminute/cascading-wasm-language.git
cd cascading-wasm-language
For windows users, run in the root directory:
bash
rustup toolchain install stable-x86_64-pc-windows-gnu
rustup default stable-x86_64-pc-windows-gnu
The code is divided at a high level into 4 parts: 1. Parse 2. Macro 3. Page Initialization 4. Execution
src/tokens.rs
.proc_macro
defined in src/lib.rs
. This logic is the code OUTside of quote! {}
blocks, and the code INside of those blocks eventually runs in a browser../tests
has a collection of cwl examples that render different features. Currently, they just check to see that the examples compile.