Blaine Bublitz

Results 158 issues of Blaine Bublitz

Given the following chunk of code, the formatter wipes out the comment: ```grain enum EventType { Enter, Exit, }, /** * An event is the start or end of a...

When two comments come after one another, grainformat will add extra newlines between them. This is a problem because it breaks graindoc. Here's an example: ```grain /** * Some graindoc...

We've gotten far by just using the `assert` method in Pervasives for our tests, but I think we could take it to the next level by adding an `assert` module...

stdlib

Mentioned in Discord, @ospencer maybe you can expand what you meant by this?

good first issue
stdlib

Day 2 of Advent of Code has you parsing a string like: ``` 1-3 a: abcde 1-3 b: cdefg 2-9 c: ccccccccc ``` Into a ruleset to match, with the...

stdlib

We should use our "wasi polyfill" to test `sys.process` exit, which would allow this test to work on Windows (or a different wasm runtime).

It's weird that our function type signatures look like `Number -> Number` but writing a function looks like `x => x`. We should consolidate that to using `=>` everywhere.

It's super common to work with Json data, so we should provide a stdlib module for working with the data.

stdlib

We don't currently support cyclic garbage collection. This is an issue for things like recursive `enums` and functions (ref #773). Before #988, we had a test (or two?) that supposedly...

gc

This will help with the new website docs. cc @Janiceilene

documentation