Benoit Giannangeli

Results 151 issues of Benoit Giannangeli

Debug metadata and api

std

Generational GC

feature
vm

REPL

feature
tooling

LSP https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/

tooling

```buzz fun iCanFail() > !num { | ... } ```

language

```buzz object A { const num assignedOnce; } ```

language
immutability

Tail calls

improvement
feature
vm

When less than 255, `u8`, then `u16`, etc.

improvement
vm

Zig-like `defer` keyword that will execute an expression just before exiting the current function. ```buzz fun main() > void { File file = File.open("hello", mode: FileMode.read); defer file.close(); |... }...

feature
language

I'm in the middle of trying to find a well hidden memory leak. Lovebird would help a lot if I could explore upvalues/locals/etc. from the right column.