* Fix plugin-transform-block-scoping const violations Fixes #13245 * Replace `a++` with `+a` where const violation * Remove assignment where const violation * Remove assignment for `&&=`, `||=`, `??=` where const violation * Shorten test
4 lines
58 B
JavaScript
4 lines
58 B
JavaScript
var a = 1,
|
|
b = 2;
|
|
3, babelHelpers.readOnlyError("a");
|