Christoph

Results 49 comments of Christoph

> I'm trying to do something simple. I caught a Firebase exception and want to access the `code` property that is a string. Firebase errors have code properties with contents...

Regarding the open questions: I'd say it depends on the plans/ideas for an online api reference. If the docstrings are the one and only truth and everything else is generates...

I'm definetly willing to. I just need to see how much time I'll be able to spend. 😉 I'd like to propose to separate more extensive information with a line...

> I think we should keep it as simple as possible. These comments will be consumed by other tools that can apply this transformation. @aspeddro Are you saying, you're against...

If I'm not mistaken, default warnings need to be adapted here https://github.com/rescript-lang/rescript-compiler/blob/25753edc9d935a24100d7ee488ad4592e097a82f/jscomp/ext/bsc_warnings.ml#L75 ?

I think `receive_any` got introduced in `[email protected]`. While the `dune-project` file references `0.0.9`, `minttea.opam` references `0.0.8`: https://github.com/leostera/minttea/blob/aa5ef898f6ce4b2a5b359dd6f985cbe2a3583b70/dune-project#L22 https://github.com/leostera/minttea/blob/aa5ef898f6ce4b2a5b359dd6f985cbe2a3583b70/minttea.opam#L15 I got the "tutorial" code described in the readme compiling (which is...

I'm not sure about this error. Are you using ocaml >= 5.1? Check with `ocaml --version` or `opam switch list`.

@zth do you have some thoughts on my proposal?

> Another place I use this is for importing record fields: > ``` > let x = Module.{ > a: 1, > b: 2 > } > ``` This pattern...