Holger Dal Mogensen

Results 28 issues of Holger Dal Mogensen

Happens on the newest version of the compiler (0.48.0) with input ```flix def reachable(origin: n, edges: f[(n, n)]): Set[n] \ Aef[f] = Set#{} ``` Crash report # # An unexpected...

bug

Opening the program ```flix mod MyModule { enum MyEnum } ``` in VS Code, the 'Prefix unused enum with underscore' quickfix appears correctly when the cursor is placed anywhere on...

bug

I managed to crash the compiler while I was editing this program, but I can't reproduce it ```flix trait Equatable[t] { pub def equals(x: t, y: t): Bool } instance...

bug

When some symbol is used across multiple documents, `HighlightProvider.scala` currently returns all of the corresponding ranges, no matter what URI it's passed ![image](https://github.com/flix/flix/assets/61235930/ab693b5c-8e1f-43a6-945f-f89667b84803) ![image](https://github.com/flix/flix/assets/61235930/69a5ceb0-518d-486e-a50a-94570fcb8f75)

bug

Outsources the reconnecting part to [reconnecting-websocket](https://www.npmjs.com/package/reconnecting-websocket), like it's done on play.flix.dev. Fixes #305

This adds the [Flix](https://flix.dev/) programming language. Flix started as a research project, but is today a fully-featured programming language. It has focused on practical tooling for making the language widely...

Pending Popularity

When typing the following program into VS Code ```flix /// An algebraic data type for shapes. enum Shape { case Circle(Int32), // circle radius case Square(Int32), // side length case...

bug
student programmer