You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It you have a comment in argument list of a function, then the comment is not included in the output.
function f1(a, /* my comment */ c) {
}
generates
function f1(a, c) {
}
It seems like the attachComments() function place the comment at the right place, namely as leading comment to argument 'c', so the issue is only in the code generator.
-Thomas
The text was updated successfully, but these errors were encountered:
It you have a comment in argument list of a function, then the comment is not included in the output.
generates
It seems like the attachComments() function place the comment at the right place, namely as leading comment to argument 'c', so the issue is only in the code generator.
-Thomas
The text was updated successfully, but these errors were encountered: