支持 await/async

This commit is contained in:
ExplodingDragon
2025-11-18 00:22:11 +08:00
parent e1091fcf22
commit 562413b3bf
17 changed files with 172 additions and 55 deletions

7
examples/js/index.js Normal file
View File

@@ -0,0 +1,7 @@
response.write("hello world")
console.log("hello world")
function testError(){
throw Error("Method not implemented")
}
response.setHeader("content-type", "application/json")
testError()