Index: src/messages.js |
diff --git a/src/messages.js b/src/messages.js |
index 93d79334c99bff37bbf9ec669c469b71a1dafabd..0489d96ad2536b8e2aaedb905db0e6a7da8397ce 100644 |
--- a/src/messages.js |
+++ b/src/messages.js |
@@ -169,6 +169,9 @@ var kMessages = { |
strong_for_in: ["Please don't use 'for'-'in' loops in strong mode, use 'for'-'of' instead"], |
strong_empty: ["Please don't use empty sub-statements in strong mode, make them explicit with '{}' instead"], |
strong_use_before_declaration: ["Please declare variable '", "%0", "' before use in strong mode"], |
+ strong_super_call_missing: ["Please always invoke the super constructor in subclasses in strong mode"], |
+ strong_super_call_duplicate: ["Please don't invoke the super constructor multiple times in strong mode"], |
+ strong_super_call_nested: ["Please don't invoke the super constructor nested inside another statement or expression in strong mode"], |
sloppy_lexical: ["Block-scoped declarations (let, const, function, class) not yet supported outside strict mode"], |
malformed_arrow_function_parameter_list: ["Malformed arrow function parameter list"], |
generator_poison_pill: ["'caller' and 'arguments' properties may not be accessed on generator functions."], |