| Index: src/messages.js
|
| diff --git a/src/messages.js b/src/messages.js
|
| index 19d61041d1942c400b9fce07e56ca39a2130d38a..d5888b8e8e3285700b0ec13dfb03da365f1d36c4 100644
|
| --- a/src/messages.js
|
| +++ b/src/messages.js
|
| @@ -161,6 +161,7 @@ var kMessages = {
|
| strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in strict mode"],
|
| strict_poison_pill: ["'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them"],
|
| strict_caller: ["Illegal access to a strict mode caller function."],
|
| + strong_arguments: ["Please don't use 'arguments' in strong mode, use '...args' instead"],
|
| strong_equal: ["Please don't use '==' or '!=' in strong mode, use '===' or '!==' instead"],
|
| strong_delete: ["Please don't use 'delete' in strong mode, use maps or sets instead"],
|
| strong_var: ["Please don't use 'var' in strong mode, use 'let' or 'const' instead"],
|
|
|