Skip to content

BUGS: Compiler removes inline comments for objects #17001

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

Closed
microshine opened this issue Jul 7, 2017 · 2 comments
Closed

BUGS: Compiler removes inline comments for objects #17001

microshine opened this issue Jul 7, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@microshine
Copy link

TypeScript Version: 2.4.1

Code

/**
 * Comment
 */
// Comment
const val1 = 1; // comment
const val2 = 1; /* comment */

const obj = {
    prop1: 1, // comment
    prop2: 2, /* comment */
}

// Comment

Compiled JS

"use strict";
/**
 * Comment
 */
// Comment
var val1 = 1; // comment
var val2 = 1; /* comment */
var obj = {
    prop1: 1,
    prop2: 2,
};
// Comment 

TypeScript compiler removed comments after prop1 and prob2 for obj

@ikatyang
Copy link
Contributor

ikatyang commented Jul 7, 2017

It seems duplicate of #13939?

@mhegazy mhegazy added the Duplicate An existing issue was already created label Aug 28, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Sep 12, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Sep 12, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

3 participants