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
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.)
/*:[number,number]*/
Not a big problem, but I thought I better let you know about it.
The text was updated successfully, but these errors were encountered:
47d4c2c
No branches or pull requests
buble 0.18.0
is translated to this
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.
The text was updated successfully, but these errors were encountered: