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

Single-line comment with AddPropertyAssignment caused an extra comma #1570

Open
linzebingo opened this issue Sep 5, 2024 · 0 comments
Open

Comments

@linzebingo
Copy link

Describe the bug

Version: 23.0.0

Single-line comment with AddPropertyAssignment caused an extra comma

To Reproduce

const { Project } = require('ts-morph')

const sourceCode = `
export default {
  slave: {},
  // mako: {}
}
`
function main() {
  const project = new Project()
  const sourceFile = project.createSourceFile('index.ts', sourceCode)

  const defaultExportSymbol = sourceFile.getDefaultExportSymbol()

  if (defaultExportSymbol) {
    const declaration = defaultExportSymbol.getDeclarations()[0]
    const objectLiteralExpression = declaration.getExpression()
    if (objectLiteralExpression) {
      const publicPathProp = objectLiteralExpression.getProperty('publicPath')

      if (publicPathProp)
        publicPathProp.remove()

      objectLiteralExpression.addPropertyAssignment({
        name: 'publicPath',
        initializer: `"/"`,
      })
    }
  }

  console.log(sourceFile.getText())
}

main()

Expected behavior

Expect:

 export default {
    slave: {},
    // mako: {}
      publicPath: "/"
  }

Actual:

 export default {
    slave: {},,
    // mako: {}
     publicPath: "/"
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant