colhountech / js2-mode

Automatically exported from code.google.com/p/js2-mode
0 stars 0 forks source link

warn on assignment to const #51

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
const x = 6;
x = 7;  // this should report a warning

The assignment fails silently at runtime, hence the desire for the
strict-mode warning.

Original issue reported on code.google.com by steve.ye...@gmail.com on 19 Apr 2008 at 9:41