assemblyscript
assemblyscript copied to clipboard
A TypeScript-like language for WebAssembly.
### Feature suggestion Currently, the WASM page size is fixed at 64KiB, which is rather expensive [in some scenarios](https://github.com/wasm3/embedded-wasm-apps). WebAssembly WG proposed a new feature to handle it nicely: https://github.com/WebAssembly/custom-page-sizes/blob/main/proposals/custom-page-sizes/Overview.md...
### Question Not sure if this is allowed here, but I wanted to show one of my AssemblyScript-based projects :  The main brain of the synth is handled with...
Hi, I'm the author of [Zwitterion](https://github.com/lastmjs/zwitterion), and I'm currently attempting to add support for AssemblyScript. Zwitterion's goal is to allow transpiling (to JS) or compiling (to Wasm) any language for...
### Feature suggestion Eg, deno / bun allow and prefer something like ``` export { Parser0 } from "./parsers/Parser0.ts"; export { Parser } from "./parsers/Parser.ts"; export { ParserResult } from...
### Feature suggestion It would be nice to be able compile to asm.js
### Bug description Calling `toString` on an `f64` value works as expected, but doing the same on an `f32` string introduces extra noise decimals. I suspect it is because the...
### Bug description I would like to pass data from host to as using host bindings. On the as side the target class is extending another class. ### Steps to...
Fixes #2904 Changes proposed in this pull request: - Fixes support for polymorphic `this` type on class methods and properties - Reports a "not implemented" for _fields_ declared with the...
### Feature suggestion Labeled statements can come in handy when implementing complex control flow with multiple nested loops and if statements. Currently parser will complain ``` function test1():void { let...
Fixes #2889. Changes proposed in this pull request: ⯈ Support labeled statements in the parser/AST ⯈ Support labeled `break`/`continue`. This change is breaking solely because it modifies the `Node.createXXX` APIs,...