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
let rec isfree id = function Pident id' -> Ident.same id id' | Pdot(p, s, pos) -> isfree id p | Papply(p1, p2) -> isfree id p1 || isfree id p2
function isfree(id, _param) { while(true) { var param = _param; switch (param.tag | 0) { case 0 : return Caml_obj.caml_equal(id, param[0]); case 1 : _param = param[0]; continue ; case 2 : if (isfree(id, param[0])) { return /* true */1; } else { _param = param[1]; continue ; } } };
The text was updated successfully, but these errors were encountered:
10b58a3
Merge pull request #2653 from BuckleScript/fix_2642
e3b8296
fix #2642
No branches or pull requests
The text was updated successfully, but these errors were encountered: