woonki
woonki
any update?
어쩌면 정말 `기계인간`이실지도 모른다는 생각이 들었습니다 ㅎ
issue with ppxlib https://github.com/zth/rescript-relay/pull/372
I've noticed the AST got different from 4.12.* to 4.14.* already while working #22. I think that vendoring AST-related modules of 4.06 would be fine for the ReScript compiler.
issue with ppxlib https://github.com/zth/rescript-relay/pull/372
issue with ppxlib https://github.com/zth/rescript-relay/pull/372
Once this feature is implemented in the compiler, it seems that it will also affect the module_systems for Dynamic import and should be taken into consideration.
This seems quite feasible. Is there any particular reason to use jsx.customModule instead of using jsx.module="MyCustomModule" in the current compiler config?
Totally agree with your assumption. I think preserve mode should definitely be implemented.
Also same happends: ```res let c = Ok(None) let fc = v => switch v { | Ok(v) => {x: ?v} | Error(_) => {} } Js.log(fc(c)) // {x: undefined}...