assemblyscript
assemblyscript copied to clipboard
A TypeScript-like language for WebAssembly.
watch mode
I bet it's already been thought of, but figured I'd open an issue to track it: a `--watch` mode would be sweet.
### Feature suggestion Implement a type that can hold a `u64` or `u32` that can not be created from Assemblyscript, only received from native functions, and not be manipulated in...
### Feature suggestion Hi, I had this idea for C#-style structs that I believe could be implemented using a Transform. I know structs have been brought up a couple of...
The original `lowMemoryLimit` only support memory less than 64kB (1 wasm page). This PR wants to extend the function of `lowMemoryLimit` to support more than 64kB memory limitation.
```ts enum Weekend { Friday = 'FRIDAY', Saturday = 'SATURDAY', Sunday = 'SUNDAY' } ```
### Bug description I'm not sure if this is a bug with AssemblyScript, Binaryen or wat2wasm, but the generated .wat files can contain things like this : ``` (func $"~lib/map/Map#set:buckets"...
### Question Hi, I’m experimenting with a system that automatically creates Proxies for manipulating assemblyscript memory. It generates a constructable proxy per class, which can then be instantiated and that...
### Bug description For certain common errors, such as accessing an array index that is out of bounds, the error message returned shows the location of the error in the...
### Question I'm working on an AssemblyScript application. The way the code is structured requires passing an instance of a class in the constructor of another class. For example: ```...
### Bug description Whenever calling the heap.alloc function, the whole function process stops -> possibly aborts. ```ts export function allocate(size: i32): usize { logi(size); logi(memory.size()); let ptr: usize = heap.alloc(size);...