escodegen
escodegen copied to clipboard
Comment causes wrong indentation
Input:
let variable = // comment
3+3;
Output:
let variable = // comment
3 + 3;
Expected output:
let variable = // comment
3 + 3;