Rust编写的JavaScript引擎,该项目是一个试验性质的项目。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
695 B

// Note that a dynamic `import` statement here is required due to
// webpack/webpack#6615, but in theory `import { greet } from './pkg/hello_world';`
// will work here one day as well!
5 years ago
const rust = import("./pkg");
5 years ago
// const image = import("./assets/01_rust_loves_js.png");
rust.then(m => {
window.evaluate = m.evaluate;
let textarea = document.querySelector("textarea");
textarea.addEventListener("input", inputHandler);
});
function inputHandler(evt) {
let text = evt.target.value;
let p = document.querySelector("p.output");
let t0 = performance.now();
let result = window.evaluate(text);
let t1 = performance.now();
p.textContent = `> ${result}`;
console.log(result);
}