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

comma in a comment is eaten #89

Closed
wojdyr opened this issue Jan 3, 2018 · 0 comments
Closed

comma in a comment is eaten #89

wojdyr opened this issue Jan 3, 2018 · 0 comments
Labels

Comments

@wojdyr
Copy link

wojdyr commented Jan 3, 2018

buble 0.18.0

class A {
  b (xy/*:[number,number]*/) {
  }
}

is translated to this

var A = function A () {};

A.prototype.b = function b (xy/*:[numbernumber]*/) {
};

Note that the comma from /*:[number,number]*/ gets removed.
(The comment is an annotation for flow.)

Not a big problem, but I thought I better let you know about it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants