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.
|
|
|
// 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!
|
|
|
|
const rust = import("./pkg/boa");
|
|
|
|
// const image = import("./assets/01_rust_loves_js.png");
|
|
|
|
|
|
|
|
rust.then(m => {
|
|
|
|
window.evaluate = m.evaluate;
|
|
|
|
let button = document.querySelector("button");
|
|
|
|
button.addEventListener("click", clickHandler);
|
|
|
|
});
|
|
|
|
|
|
|
|
function clickHandler(evt) {
|
|
|
|
let text = document.querySelector("textarea").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);
|
|
|
|
}
|