tx46
tx46
is rescript v12 not supported or something? it literally doesn't do anything except output the above
> Rescript-tools is part of the rescript npm package since v12. If you installed it separately that will be an incompatible version. all of this is kind of confusing. how...
i actually think i got it working now by doing npx rescript legacy build and then npx rescript-tools reanalyze -all which seems to generate expected output more or less. it...
also this: ``` toMins might raise Division_by_zero (Duration.res:22:42) and is not annotated with @raises(Division_by_zero) ``` for: ``` let toMillis = (d: t): float => d let toMins = (d: t):...
thanks, but `npx rescript build --create-sourcedirs` creates an empty .sourcedirs.json: `{"dirs":[],"generated":[],"pkgs":[]}` while `npx rescript legacy build` actually populates it
is there a way to turn off exception analysis warnings for `panic` calls? they don't make sense to me also: why am i getting division_by_zero warnings for things such as...
> > thanks, but `npx rescript build --create-sourcedirs` creates an empty .sourcedirs.json: > > `{"dirs":[],"generated":[],"pkgs":[]}` > > while `npx rescript legacy build` actually populates it > > Yes, I noticed...
> Just so I understand - it's broken code, right? And the issue is that the formatter didn't format the broken code in a good way, is that correct? the...