Antti Holvikari

Results 14 comments of Antti Holvikari

I'm writing dhall bindings for https://docs.drone.io and it has a concept of a plugin for a pipeline `step` definition. Depending on the plugin, the `settings` field may have a very...

@Gabriel439 Yes exactly.

@Gabriel439 yes, for some reason I thought they are quite the same but they are not. What I want is `toJSON`.

We can see from the tsserver logs that the `.d.ts` file from `x-core` is not opened: ``` Info 53 [22:20:41.614] Running: *ensureProjectForOpenFiles* Info 54 [22:20:41.614] Structure before ensureProjectForOpenFiles: Info 55...

Adding a `types` key to `tsconfig.settings.json` seems to fix this: ``` "types" : ["@quramy/x-core"] ```

Adding the types field isn't really a fix since then other libraries or not found. To me this issue is very strange because the types for `x-core` are not found...

For `purescript-strings` could we do the following? * In `CodePoints`, get rid of `CodePoint` and use `Char`. Implement all functions without referring to `CodeUnits` module. * Move `CodeUnits` module to...

> And it's best not to assume that a Char is literally a 32-bit integer. But shouldn't almost all code units fit into a 32-bit integer, be it UTF-8, 16...

@michaelficarra > What does this mean for JavaScript interop? How will JavaScript strings be represented in PureScript? It's really nice right now having a zero-overhead FFI to JavaScript APIs that...

@michaelficarra Ok, I see your point, and it's a good one. No idea how to solve that one. We would need to somehow abstract the splitting of a string to...