assemblyscript icon indicating copy to clipboard operation
assemblyscript copied to clipboard

A TypeScript-like language for WebAssembly.

Results 234 assemblyscript issues
Sort by recently updated
recently updated
newest added

I bet it's already been thought of, but figured I'd open an issue to track it: a `--watch` mode would be sweet.

enhancement

### 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...

question

### 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...

enhancement

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' } ```

enhancement

### 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"...

enhancement
good first issue

### 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...

question

### 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...

bug

### 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: ```...

question

### 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);...

bug