We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
type a = { b: b; } and b = { a: a };; let rec a = { b } and b = { a };;
Compiles to:
var a = []; a[0] = b; var b = []; b[0] = a;
Instead of:
var a = []; var b = []; a[0] = b; b[0] = a;
The text was updated successfully, but these errors were encountered:
tentative fix for #1716
730ede7
fix (+1 squashed commit)
4a1ca12
Squashed commits: [730ede7] tentative fix for #1716
a0d407f
Merge pull request #1720 from BuckleScript/fix_1716
7d3ab64
No branches or pull requests
Example:
Compiles to:
Instead of:
The text was updated successfully, but these errors were encountered: