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
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: "/" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Version: 23.0.0
Single-line comment with AddPropertyAssignment caused an extra comma
To Reproduce
Expected behavior
Expect:
Actual:
The text was updated successfully, but these errors were encountered: