| Index: src/messages.js
|
| diff --git a/src/messages.js b/src/messages.js
|
| index 6157874daf127772d46e4408a6ef0e5e5f4f209a..870c969f98fa69ae200ff7b921e17e0e2eb8d244 100644
|
| --- a/src/messages.js
|
| +++ b/src/messages.js
|
| @@ -60,10 +60,8 @@ const kMessages = {
|
| unexpected_token_string: "Unexpected string",
|
| unexpected_token_identifier: "Unexpected identifier",
|
| unexpected_eos: "Unexpected end of input",
|
| - expected_label: "Expected label",
|
| malformed_regexp: "Invalid regular expression: /%0/: %1",
|
| unterminated_regexp: "Invalid regular expression: missing /",
|
| - pcre_error: "PCRE function %0, error code %1",
|
| regexp_flags: "Cannot supply flags when constructing one RegExp from another",
|
| invalid_lhs_in_assignment: "Invalid left-hand side in assignment",
|
| invalid_lhs_in_for_in: "Invalid left-hand side in for-in",
|
| @@ -74,21 +72,17 @@ const kMessages = {
|
| redeclaration: "%0 '%1' has already been declared",
|
| no_catch_or_finally: "Missing catch or finally after try",
|
| unknown_label: "Undefined label '%0'",
|
| - invalid_break: "Invalid break statement",
|
| - invalid_continue: "Invalid continue statement",
|
| uncaught_exception: "Uncaught %0",
|
| stack_trace: "Stack Trace:\n%0",
|
| called_non_callable: "%0 is not a function",
|
| undefined_method: "Object %1 has no method '%0'",
|
| property_not_function: "Property '%0' of object %1 is not a function",
|
| - null_or_undefined: "Cannot access property of null or undefined",
|
| cannot_convert_to_primitive: "Cannot convert object to primitive value",
|
| not_constructor: "%0 is not a constructor",
|
| not_defined: "%0 is not defined",
|
| non_object_property_load: "Cannot read property '%0' of %1",
|
| non_object_property_store: "Cannot set property '%0' of %1",
|
| non_object_property_call: "Cannot call method '%0' of %1",
|
| - illegal_eval: "Unsupported indirect eval() call",
|
| with_expression: "%0 has no properties",
|
| illegal_invocation: "Illegal invocation",
|
| no_setter_in_callback: "Cannot set property %0 of %1 which has only a getter",
|
| @@ -101,13 +95,11 @@ const kMessages = {
|
| reduce_no_initial: "Reduce of empty array with no initial value",
|
| // RangeError
|
| invalid_array_length: "Invalid array length",
|
| - invalid_array_apply_length: "Function.prototype.apply supports only up to 1024 arguments",
|
| stack_overflow: "Maximum call stack size exceeded",
|
| apply_overflow: "Function.prototype.apply cannot support %0 arguments",
|
| // SyntaxError
|
| unable_to_parse: "Parse error",
|
| duplicate_regexp_flag: "Duplicate RegExp flag %0",
|
| - unrecognized_regexp_flag: "Unrecognized RegExp flag %0",
|
| invalid_regexp: "Invalid RegExp pattern /%0/",
|
| illegal_break: "Illegal break statement",
|
| illegal_continue: "Illegal continue statement",
|
|
|