Cristiano Calcagno

Results 74 issues of Cristiano Calcagno

See https://github.com/rescript-lang/rescript-compiler/issues/5521 and https://github.com/rescript-lang/syntax/pull/602 ------ Just writing down some notes here. This reliance on indirect type checking by putting `""` at either end of string concatenation seems brittle. Also there...

See https://github.com/rescript-lang/rescript-vscode/pull/447

This: ```rescript let stringLengthNoSideEffects = String.length("sdkdl") ``` now produces ```js var stringLengthNoSideEffects = "sdkdl".length; ``` while it used to be ```js var stringLengthNoSideEffects = 5; ```

Fail CI otherwise. CC @cknitt E.g. current CI is not clean.

Moving the project inside the compiler can enable deeper integration and solve a number of longstanding issues caused by treating compilation as a black box and genType as a post-processing....

rebased on master of https://github.com/rescript-lang/rescript-vscode/pull/510

A command could be added to add *all* `@dead` annotations to the project, just as `-w` does in the CLI. A command could actually remove all the dead code. These...