You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler's ppx is only run when parsing the source file.
For config settings such as directives, this is OK when `bsc` is invoked directly, but not when part of building a project. In the latter case, the ast is compiled separately, and the builtin ppx is not run again before emitting code.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,7 @@ These are only breaking changes for unformatted code.
51
51
- Parser: fix location of variable when function definition `{v => ...}` is enclosed in braces https://github.com/rescript-lang/rescript-compiler/pull/5949
52
52
- Fix issue with error messages for uncurried functions where expected and given type were swapped https://github.com/rescript-lang/rescript-compiler/pull/5973
53
53
- Fix issue with integer overflow check https://github.com/rescript-lang/rescript-compiler/pull/6028
54
+
- Fix implementation of directives https://github.com/rescript-lang/rescript-compiler/pull/6052
0 commit comments