## Known cases ### `test_example_9` Not removing: `const decl8 = 1, decl9;` ### `test_example_10` Not rewriting: ``` const a = ident1 + ident3; const b = ident1 + ident3; ``` to: ``` ident1, ident3; ident1, ident3; ```