Skip to content
New issue

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

Doc comment moves let-binding below #1960

Closed
chenglou opened this issue May 26, 2018 · 0 comments · Fixed by #2780
Closed

Doc comment moves let-binding below #1960

chenglou opened this issue May 26, 2018 · 0 comments · Fixed by #2780
Labels
KIND: FEATURE REQUEST Printer things that have to do with turning an AST into Reason code

Comments

@chenglou
Copy link
Member

let main = () => {
  /**
   *
   */
  Printexc.record_backtrace(true);
  Printexc.record_backtrace(true);
};

Gets formatted as:

let main = () => {
  /**
   *
   */ Printexc.record_backtrace(true);
  Printexc.record_backtrace(true);
};
@jaredly jaredly added KIND: FEATURE REQUEST Printer things that have to do with turning an AST into Reason code labels Jun 14, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
KIND: FEATURE REQUEST Printer things that have to do with turning an AST into Reason code
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants