2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// The infrastructure used for (localized) message reporting in V8.
|
|
|
|
//
|
|
|
|
// Note: there's a big unresolved issue about ownership of the data
|
|
|
|
// structures used by this framework.
|
|
|
|
|
|
|
|
#ifndef V8_MESSAGES_H_
|
|
|
|
#define V8_MESSAGES_H_
|
|
|
|
|
2015-08-11 12:00:01 +00:00
|
|
|
#include "src/base/smart-pointers.h"
|
2015-08-20 07:44:00 +00:00
|
|
|
#include "src/handles.h"
|
2015-08-11 12:00:01 +00:00
|
|
|
#include "src/list.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2015-08-11 12:00:01 +00:00
|
|
|
// Forward declarations.
|
|
|
|
class JSMessageObject;
|
|
|
|
class LookupIterator;
|
2008-07-03 15:10:15 +00:00
|
|
|
class SourceInfo;
|
|
|
|
|
|
|
|
class MessageLocation {
|
|
|
|
public:
|
2015-01-21 13:40:32 +00:00
|
|
|
MessageLocation(Handle<Script> script, int start_pos, int end_pos,
|
|
|
|
Handle<JSFunction> function = Handle<JSFunction>())
|
2008-07-03 15:10:15 +00:00
|
|
|
: script_(script),
|
|
|
|
start_pos_(start_pos),
|
2015-01-21 13:40:32 +00:00
|
|
|
end_pos_(end_pos),
|
|
|
|
function_(function) {}
|
2008-09-09 18:55:41 +00:00
|
|
|
MessageLocation() : start_pos_(-1), end_pos_(-1) { }
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
Handle<Script> script() const { return script_; }
|
|
|
|
int start_pos() const { return start_pos_; }
|
|
|
|
int end_pos() const { return end_pos_; }
|
2015-01-21 13:40:32 +00:00
|
|
|
Handle<JSFunction> function() const { return function_; }
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Handle<Script> script_;
|
|
|
|
int start_pos_;
|
|
|
|
int end_pos_;
|
2015-01-21 13:40:32 +00:00
|
|
|
Handle<JSFunction> function_;
|
2008-07-03 15:10:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-04-28 08:53:12 +00:00
|
|
|
class CallSite {
|
|
|
|
public:
|
|
|
|
CallSite(Handle<Object> receiver, Handle<JSFunction> fun, int pos)
|
|
|
|
: receiver_(receiver), fun_(fun), pos_(pos) {}
|
|
|
|
|
|
|
|
Handle<Object> GetFileName(Isolate* isolate);
|
|
|
|
Handle<Object> GetFunctionName(Isolate* isolate);
|
|
|
|
Handle<Object> GetScriptNameOrSourceUrl(Isolate* isolate);
|
2015-05-05 13:55:28 +00:00
|
|
|
Handle<Object> GetMethodName(Isolate* isolate);
|
2015-04-28 08:53:12 +00:00
|
|
|
// Return 1-based line number, including line offset.
|
|
|
|
int GetLineNumber(Isolate* isolate);
|
|
|
|
// Return 1-based column number, including column offset if first line.
|
|
|
|
int GetColumnNumber(Isolate* isolate);
|
|
|
|
bool IsNative(Isolate* isolate);
|
|
|
|
bool IsToplevel(Isolate* isolate);
|
|
|
|
bool IsEval(Isolate* isolate);
|
2015-05-05 13:55:28 +00:00
|
|
|
bool IsConstructor(Isolate* isolate);
|
2015-04-28 08:53:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Handle<Object> receiver_;
|
|
|
|
Handle<JSFunction> fun_;
|
|
|
|
int pos_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-04-21 09:03:24 +00:00
|
|
|
#define MESSAGE_TEMPLATES(T) \
|
|
|
|
/* Error */ \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(None, "") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(CyclicProto, "Cyclic __proto__ value") \
|
2015-08-12 14:22:07 +00:00
|
|
|
T(Debugger, "Debugger: %") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(DebuggerLoading, "Error loading debugger") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(DefaultOptionsMissing, "Internal % error. Default options are missing.") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(UncaughtException, "Uncaught %") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(Unsupported, "Not supported") \
|
|
|
|
T(WrongServiceType, "Internal error, wrong service type: %") \
|
|
|
|
T(WrongValueType, "Internal error. Wrong value type.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
/* TypeError */ \
|
|
|
|
T(ApplyNonFunction, \
|
|
|
|
"Function.prototype.apply was called on %, which is a % and not a " \
|
|
|
|
"function") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(ArrayFunctionsOnFrozen, "Cannot modify frozen array elements") \
|
|
|
|
T(ArrayFunctionsOnSealed, "Cannot add/remove sealed array elements") \
|
2015-05-07 10:00:21 +00:00
|
|
|
T(ArrayNotSubclassable, "Subclassing Arrays is not currently supported.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(CalledNonCallable, "% is not a function") \
|
|
|
|
T(CalledOnNonObject, "% called on non-object") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(CalledOnNullOrUndefined, "% called on null or undefined") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(CannotConvertToPrimitive, "Cannot convert object to primitive value") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(CannotPreventExtExternalArray, \
|
|
|
|
"Cannot prevent extension of an object with external array elements") \
|
|
|
|
T(CircularStructure, "Converting circular structure to JSON") \
|
|
|
|
T(ConstAssign, "Assignment to constant variable.") \
|
2015-05-07 10:00:21 +00:00
|
|
|
T(ConstructorNonCallable, \
|
|
|
|
"Class constructors cannot be invoked without 'new'") \
|
2015-05-05 07:57:37 +00:00
|
|
|
T(ConstructorNotFunction, "Constructor % requires 'new'") \
|
|
|
|
T(CurrencyCode, "Currency code is required with currency style.") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(DataViewNotArrayBuffer, \
|
|
|
|
"First argument to DataView constructor must be an ArrayBuffer") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(DateType, "this is not a Date object.") \
|
2015-08-12 14:22:07 +00:00
|
|
|
T(DebuggerFrame, "Debugger: Invalid frame index.") \
|
|
|
|
T(DebuggerType, "Debugger: Parameters have wrong types.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(DefineDisallowed, "Cannot define property:%, object is not extensible.") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(DuplicateTemplateProperty, "Object template has duplicate property '%'") \
|
|
|
|
T(ExtendsValueGenerator, \
|
|
|
|
"Class extends value % may not be a generator function") \
|
|
|
|
T(ExtendsValueNotFunction, \
|
|
|
|
"Class extends value % is not a function or null") \
|
2015-04-30 16:22:00 +00:00
|
|
|
T(FirstArgumentNotRegExp, \
|
|
|
|
"First argument to % must not be a regular expression") \
|
2015-05-05 07:57:37 +00:00
|
|
|
T(FlagsGetterNonObject, \
|
|
|
|
"RegExp.prototype.flags getter called on non-object %") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(FunctionBind, "Bind must be called on a function") \
|
2015-04-30 16:22:00 +00:00
|
|
|
T(GeneratorRunning, "Generator is already running") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(IllegalInvocation, "Illegal invocation") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(IncompatibleMethodReceiver, "Method % called on incompatible receiver %") \
|
|
|
|
T(InstanceofFunctionExpected, \
|
|
|
|
"Expecting a function in instanceof check, but got %") \
|
|
|
|
T(InstanceofNonobjectProto, \
|
|
|
|
"Function has non-object prototype '%' in instanceof check") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(InvalidArgument, "invalid_argument") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(InvalidInOperatorUse, "Cannot use 'in' operator to search for '%' in %") \
|
2015-05-05 07:57:37 +00:00
|
|
|
T(IteratorResultNotAnObject, "Iterator result % is not an object") \
|
|
|
|
T(IteratorValueNotAnObject, "Iterator value % is not an entry object") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(LanguageID, "Language ID should be string or object.") \
|
|
|
|
T(MethodCalledOnWrongObject, \
|
|
|
|
"Method % called on a non-object or on a wrong type of object.") \
|
|
|
|
T(MethodInvokedOnNullOrUndefined, \
|
|
|
|
"Method invoked on undefined or null value.") \
|
|
|
|
T(MethodInvokedOnWrongType, "Method invoked on an object that is not %.") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(NoAccess, "no access") \
|
2015-05-18 20:15:08 +00:00
|
|
|
T(NonCoercible, "Cannot match against 'undefined' or 'null'.") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(NonExtensibleProto, "% is not extensible") \
|
|
|
|
T(NonObjectPropertyLoad, "Cannot read property '%' of %") \
|
|
|
|
T(NonObjectPropertyStore, "Cannot set property '%' of %") \
|
|
|
|
T(NoSetterInCallback, "Cannot set property % of % which has only a getter") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(NotAnIterator, "% is not an iterator") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(NotAPromise, "% is not a promise") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(NotConstructor, "% is not a constructor") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(NotDateObject, "this is not a Date object.") \
|
|
|
|
T(NotIntlObject, "% is not an i18n object.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(NotGeneric, "% is not generic") \
|
|
|
|
T(NotIterable, "% is not iterable") \
|
2015-05-05 07:57:37 +00:00
|
|
|
T(NotTypedArray, "this is not a typed array.") \
|
2015-06-03 17:58:29 +00:00
|
|
|
T(NotSharedTypedArray, "% is not a shared typed array.") \
|
|
|
|
T(NotIntegerSharedTypedArray, "% is not an integer shared typed array.") \
|
2015-07-17 17:11:32 +00:00
|
|
|
T(NotInt32SharedTypedArray, "% is not an int32 shared typed array.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(ObjectGetterExpectingFunction, \
|
|
|
|
"Object.prototype.__defineGetter__: Expecting function") \
|
|
|
|
T(ObjectGetterCallable, "Getter must be a function: %") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(ObjectNotExtensible, "Can't add property %, object is not extensible") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(ObjectSetterExpectingFunction, \
|
|
|
|
"Object.prototype.__defineSetter__: Expecting function") \
|
|
|
|
T(ObjectSetterCallable, "Setter must be a function: %") \
|
2015-05-05 07:57:37 +00:00
|
|
|
T(ObserveCallbackFrozen, \
|
|
|
|
"Object.observe cannot deliver to a frozen function object") \
|
|
|
|
T(ObserveGlobalProxy, "% cannot be called on the global proxy object") \
|
|
|
|
T(ObserveInvalidAccept, \
|
|
|
|
"Third argument to Object.observe must be an array of strings.") \
|
|
|
|
T(ObserveNonFunction, "Object.% cannot deliver to non-function") \
|
|
|
|
T(ObserveNonObject, "Object.% cannot % non-object") \
|
|
|
|
T(ObserveNotifyNonNotifier, "notify called on non-notifier object") \
|
|
|
|
T(ObservePerformNonFunction, "Cannot perform non-function") \
|
|
|
|
T(ObservePerformNonString, "Invalid non-string changeType") \
|
|
|
|
T(ObserveTypeNonString, \
|
|
|
|
"Invalid changeRecord with non-string 'type' property") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(OrdinaryFunctionCalledAsConstructor, \
|
|
|
|
"Function object that's not a constructor was created with new") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(PromiseCyclic, "Chaining cycle detected for promise %") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(PropertyDescObject, "Property description must be an object: %") \
|
|
|
|
T(PropertyNotFunction, "Property '%' of object % is not a function") \
|
|
|
|
T(ProtoObjectOrNull, "Object prototype may only be an Object or null: %") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(PrototypeParentNotAnObject, \
|
|
|
|
"Class extends value does not have valid prototype property %") \
|
|
|
|
T(ProxyHandlerDeleteFailed, \
|
|
|
|
"Proxy handler % did not return a boolean value from 'delete' trap") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(ProxyHandlerNonObject, "Proxy.% called with non-object as handler") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(ProxyHandlerReturned, "Proxy handler % returned % from '%' trap") \
|
|
|
|
T(ProxyHandlerTrapMissing, "Proxy handler % has no '%' trap") \
|
|
|
|
T(ProxyHandlerTrapMustBeCallable, \
|
|
|
|
"Proxy handler %0 has non-callable '%' trap") \
|
|
|
|
T(ProxyNonObjectPropNames, "Trap '%' returned non-object %") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(ProxyProtoNonObject, "Proxy.create called with no-object as prototype") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(ProxyPropNotConfigurable, \
|
|
|
|
"Proxy handler % returned non-configurable descriptor for property '%' " \
|
|
|
|
"from '%' trap") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(ProxyRepeatedPropName, "Trap '%' returned repeated property name '%'") \
|
|
|
|
T(ProxyTrapFunctionExpected, \
|
|
|
|
"Proxy.createFunction called with non-function for '%' trap") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(RedefineDisallowed, "Cannot redefine property: %") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(RedefineExternalArray, \
|
|
|
|
"Cannot redefine a property of an object with external array elements") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(ReduceNoInitial, "Reduce of empty array with no initial value") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(RegExpFlags, \
|
|
|
|
"Cannot supply flags when constructing one RegExp from another") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(ReinitializeIntl, "Trying to re-initialize % object.") \
|
|
|
|
T(ResolvedOptionsCalledOnNonObject, \
|
|
|
|
"resolvedOptions method called on a non-object or on a object that is " \
|
|
|
|
"not Intl.%.") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(ResolverNotAFunction, "Promise resolver % is not a function") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(RestrictedFunctionProperties, \
|
|
|
|
"'caller' and 'arguments' are restricted function properties and cannot " \
|
|
|
|
"be accessed in this context.") \
|
|
|
|
T(StaticPrototype, "Classes may not have static property named prototype") \
|
|
|
|
T(StrictCannotAssign, "Cannot assign to read only '% in strict mode") \
|
|
|
|
T(StrictDeleteProperty, "Cannot delete property '%' of %") \
|
|
|
|
T(StrictPoisonPill, \
|
|
|
|
"'caller', 'callee', and 'arguments' properties may not be accessed on " \
|
|
|
|
"strict mode functions or the arguments objects for calls to them") \
|
|
|
|
T(StrictReadOnlyProperty, "Cannot assign to read only property '%' of %") \
|
|
|
|
T(StrongArity, \
|
|
|
|
"In strong mode, calling a function with too few arguments is deprecated") \
|
2015-06-01 11:39:01 +00:00
|
|
|
T(StrongDeleteProperty, \
|
2015-07-06 08:53:41 +00:00
|
|
|
"Deleting property '%' of strong object '%' is deprecated") \
|
2015-07-13 12:40:22 +00:00
|
|
|
T(StrongExtendNull, "In strong mode, classes extending null are deprecated") \
|
2015-06-30 14:21:51 +00:00
|
|
|
T(StrongImplicitConversion, \
|
|
|
|
"In strong mode, implicit conversions are deprecated") \
|
2015-05-29 11:33:15 +00:00
|
|
|
T(StrongRedefineDisallowed, \
|
|
|
|
"On strong object %, redefining writable, non-configurable property '%' " \
|
|
|
|
"to be non-writable is deprecated") \
|
2015-06-01 22:43:50 +00:00
|
|
|
T(StrongSetProto, \
|
|
|
|
"On strong object %, redefining the internal prototype is deprecated") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(SymbolKeyFor, "% is not a symbol") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(SymbolToNumber, "Cannot convert a Symbol value to a number") \
|
|
|
|
T(SymbolToString, "Cannot convert a Symbol value to a string") \
|
2015-07-16 19:43:21 +00:00
|
|
|
T(SimdToNumber, "Cannot convert a SIMD value to a number") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(UndefinedOrNullToObject, "Cannot convert undefined or null to object") \
|
|
|
|
T(ValueAndAccessor, \
|
|
|
|
"Invalid property. A property cannot both have accessors and be " \
|
|
|
|
"writable or have a value, %") \
|
2015-05-12 13:52:26 +00:00
|
|
|
T(VarRedeclaration, "Identifier '%' has already been declared") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(WithExpression, "% has no properties") \
|
|
|
|
T(WrongArgs, "%: Arguments list has wrong type") \
|
2015-05-07 10:00:21 +00:00
|
|
|
/* ReferenceError */ \
|
|
|
|
T(NonMethod, "'super' is referenced from non-method") \
|
|
|
|
T(NotDefined, "% is not defined") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(StrongSuperCallMissing, \
|
|
|
|
"In strong mode, invoking the super constructor in a subclass is " \
|
|
|
|
"required") \
|
|
|
|
T(StrongUnboundGlobal, \
|
|
|
|
"In strong mode, using an undeclared global variable '%' is not allowed") \
|
2015-05-07 10:00:21 +00:00
|
|
|
T(UnsupportedSuper, "Unsupported reference to 'super'") \
|
2015-04-21 09:03:24 +00:00
|
|
|
/* RangeError */ \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(DateRange, "Provided date is not in valid range.") \
|
|
|
|
T(ExpectedLocation, "Expected Area/Location for time zone, got %") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(InvalidArrayBufferLength, "Invalid array buffer length") \
|
|
|
|
T(InvalidArrayLength, "Invalid array length") \
|
2015-04-30 16:22:00 +00:00
|
|
|
T(InvalidCodePoint, "Invalid code point %") \
|
|
|
|
T(InvalidCountValue, "Invalid count value") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(InvalidCurrencyCode, "Invalid currency code: %") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(InvalidDataViewAccessorOffset, \
|
|
|
|
"Offset is outside the bounds of the DataView") \
|
|
|
|
T(InvalidDataViewLength, "Invalid data view length") \
|
|
|
|
T(InvalidDataViewOffset, "Start offset is outside the bounds of the buffer") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(InvalidLanguageTag, "Invalid language tag: %") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(InvalidWeakMapKey, "Invalid value used as weak map key") \
|
|
|
|
T(InvalidWeakSetValue, "Invalid value used in weak set") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(InvalidStringLength, "Invalid string length") \
|
2015-04-30 16:22:00 +00:00
|
|
|
T(InvalidTimeValue, "Invalid time value") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(InvalidTypedArrayAlignment, "% of % should be a multiple of %") \
|
|
|
|
T(InvalidTypedArrayLength, "Invalid typed array length") \
|
|
|
|
T(InvalidTypedArrayOffset, "Start offset is too large:") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(LocaleMatcher, "Illegal value for localeMatcher:%") \
|
|
|
|
T(NormalizationForm, "The normalization form should be one of %.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(NumberFormatRange, "% argument must be between 0 and 20") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(PropertyValueOutOfRange, "% value is out of range.") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(StackOverflow, "Maximum call stack size exceeded") \
|
|
|
|
T(ToPrecisionFormatRange, "toPrecision() argument must be between 1 and 21") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(ToRadixFormatRange, "toString() radix argument must be between 2 and 36") \
|
2015-05-06 07:51:56 +00:00
|
|
|
T(TypedArraySetNegativeOffset, "Start offset is negative") \
|
|
|
|
T(TypedArraySetSourceTooLarge, "Source is too large") \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(UnsupportedTimeZone, "Unsupported time zone specified %") \
|
|
|
|
T(ValueOutOfRange, "Value % out of range for % options property %") \
|
2015-04-21 09:03:24 +00:00
|
|
|
/* SyntaxError */ \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(BadGetterArity, "Getter must not have any formal parameters.") \
|
|
|
|
T(BadSetterArity, "Setter must have exactly one formal parameter.") \
|
|
|
|
T(ConstructorIsAccessor, "Class constructor may not be an accessor") \
|
|
|
|
T(ConstructorIsGenerator, "Class constructor may not be a generator") \
|
|
|
|
T(DerivedConstructorReturn, \
|
|
|
|
"Derived constructors may only return object or undefined") \
|
|
|
|
T(DuplicateConstructor, "A class may only have one constructor") \
|
|
|
|
T(DuplicateExport, "Duplicate export of '%'") \
|
|
|
|
T(DuplicateProto, \
|
|
|
|
"Duplicate __proto__ fields are not allowed in object literals") \
|
|
|
|
T(ForInLoopInitializer, \
|
|
|
|
"for-in loop variable declaration may not have an initializer.") \
|
|
|
|
T(ForInOfLoopMultiBindings, \
|
|
|
|
"Invalid left-hand side in % loop: Must have a single binding.") \
|
|
|
|
T(ForOfLoopInitializer, \
|
|
|
|
"for-of loop variable declaration may not have an initializer.") \
|
|
|
|
T(IllegalAccess, "Illegal access") \
|
|
|
|
T(IllegalBreak, "Illegal break statement") \
|
|
|
|
T(IllegalContinue, "Illegal continue statement") \
|
|
|
|
T(IllegalReturn, "Illegal return statement") \
|
|
|
|
T(InvalidLhsInAssignment, "Invalid left-hand side in assignment") \
|
|
|
|
T(InvalidLhsInFor, "Invalid left-hand side in for-loop") \
|
|
|
|
T(InvalidLhsInPostfixOp, \
|
|
|
|
"Invalid left-hand side expression in postfix operation") \
|
|
|
|
T(InvalidLhsInPrefixOp, \
|
|
|
|
"Invalid left-hand side expression in prefix operation") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(InvalidRegExpFlags, "Invalid flags supplied to RegExp constructor '%'") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(LabelRedeclaration, "Label '%' has already been declared") \
|
|
|
|
T(MalformedArrowFunParamList, "Malformed arrow function parameter list") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(MalformedRegExp, "Invalid regular expression: /%/: %") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(MalformedRegExpFlags, "Invalid regular expression flags") \
|
2015-06-19 15:10:01 +00:00
|
|
|
T(MissingArrow, \
|
|
|
|
"Expected () to start arrow function, but got '%' instead of '=>'") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(ModuleExportUndefined, "Export '%' is not defined in module") \
|
|
|
|
T(MultipleDefaultsInSwitch, \
|
|
|
|
"More than one default clause in switch statement") \
|
|
|
|
T(NewlineAfterThrow, "Illegal newline after throw") \
|
|
|
|
T(NoCatchOrFinally, "Missing catch or finally after try") \
|
|
|
|
T(NotIsvar, "builtin %%IS_VAR: not a variable") \
|
|
|
|
T(ParamAfterRest, "Rest parameter must be last formal parameter") \
|
2015-05-18 15:52:57 +00:00
|
|
|
T(BadSetterRestParameter, \
|
|
|
|
"Setter function argument must not be a rest parameter") \
|
2015-07-14 21:58:49 +00:00
|
|
|
T(ParamDupe, "Duplicate parameter name not allowed in this context") \
|
2015-04-21 09:03:24 +00:00
|
|
|
T(ParenthesisInArgString, "Function arg string contains parenthesis") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(SingleFunctionLiteral, "Single function literal required") \
|
|
|
|
T(SloppyLexical, \
|
|
|
|
"Block-scoped declarations (let, const, function, class) not yet " \
|
|
|
|
"supported outside strict mode") \
|
|
|
|
T(StrictDelete, "Delete of an unqualified identifier in strict mode.") \
|
|
|
|
T(StrictEvalArguments, "Unexpected eval or arguments in strict mode") \
|
|
|
|
T(StrictFunction, \
|
|
|
|
"In strict mode code, functions can only be declared at top level or " \
|
|
|
|
"immediately within another function.") \
|
|
|
|
T(StrictOctalLiteral, "Octal literals are not allowed in strict mode.") \
|
|
|
|
T(StrictWith, "Strict mode code may not include a with statement") \
|
|
|
|
T(StrongArguments, \
|
|
|
|
"In strong mode, 'arguments' is deprecated, use '...args' instead") \
|
|
|
|
T(StrongConstructorReturnMisplaced, \
|
|
|
|
"In strong mode, returning from a constructor before its super " \
|
|
|
|
"constructor invocation or all assignments to 'this' is deprecated") \
|
|
|
|
T(StrongConstructorReturnValue, \
|
|
|
|
"In strong mode, returning a value from a constructor is deprecated") \
|
|
|
|
T(StrongConstructorSuper, \
|
|
|
|
"In strong mode, 'super' can only be used to invoke the super " \
|
|
|
|
"constructor, and cannot be nested inside another statement or " \
|
|
|
|
"expression") \
|
|
|
|
T(StrongConstructorThis, \
|
|
|
|
"In strong mode, 'this' can only be used to initialize properties, and " \
|
|
|
|
"cannot be nested inside another statement or expression") \
|
|
|
|
T(StrongDelete, \
|
|
|
|
"In strong mode, 'delete' is deprecated, use maps or sets instead") \
|
|
|
|
T(StrongDirectEval, "In strong mode, direct calls to eval are deprecated") \
|
|
|
|
T(StrongEllision, \
|
|
|
|
"In strong mode, arrays with holes are deprecated, use maps instead") \
|
|
|
|
T(StrongEmpty, \
|
|
|
|
"In strong mode, empty sub-statements are deprecated, make them explicit " \
|
|
|
|
"with '{}' instead") \
|
|
|
|
T(StrongEqual, \
|
|
|
|
"In strong mode, '==' and '!=' are deprecated, use '===' and '!==' " \
|
|
|
|
"instead") \
|
|
|
|
T(StrongForIn, \
|
|
|
|
"In strong mode, 'for'-'in' loops are deprecated, use 'for'-'of' instead") \
|
2015-06-30 15:24:27 +00:00
|
|
|
T(StrongPropertyAccess, \
|
|
|
|
"In strong mode, accessing missing property '%' of % is deprecated") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(StrongSuperCallDuplicate, \
|
|
|
|
"In strong mode, invoking the super constructor multiple times is " \
|
|
|
|
"deprecated") \
|
|
|
|
T(StrongSuperCallMisplaced, \
|
|
|
|
"In strong mode, the super constructor must be invoked before any " \
|
|
|
|
"assignment to 'this'") \
|
|
|
|
T(StrongSwitchFallthrough, \
|
|
|
|
"In strong mode, switch fall-through is deprecated, terminate each case " \
|
|
|
|
"with 'break', 'continue', 'return' or 'throw'") \
|
|
|
|
T(StrongUndefined, \
|
|
|
|
"In strong mode, binding or assigning to 'undefined' is deprecated") \
|
|
|
|
T(StrongUseBeforeDeclaration, \
|
|
|
|
"In strong mode, declaring variable '%' before its use is required") \
|
|
|
|
T(StrongVar, \
|
|
|
|
"In strong mode, 'var' is deprecated, use 'let' or 'const' instead") \
|
|
|
|
T(TemplateOctalLiteral, \
|
|
|
|
"Octal literals are not allowed in template strings.") \
|
|
|
|
T(ThisFormalParameter, "'this' is not a valid formal parameter name") \
|
|
|
|
T(TooManyArguments, \
|
|
|
|
"Too many arguments in function call (only 65535 allowed)") \
|
|
|
|
T(TooManyParameters, \
|
|
|
|
"Too many parameters in function definition (only 65535 allowed)") \
|
|
|
|
T(TooManyVariables, "Too many variables declared (only 4194303 allowed)") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(UnexpectedEOS, "Unexpected end of input") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(UnexpectedReserved, "Unexpected reserved word") \
|
|
|
|
T(UnexpectedStrictReserved, "Unexpected strict mode reserved word") \
|
|
|
|
T(UnexpectedSuper, "'super' keyword unexpected here") \
|
2015-06-09 15:43:07 +00:00
|
|
|
T(UnexpectedNewTarget, "new.target expression is not allowed here") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(UnexpectedTemplateString, "Unexpected template string") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(UnexpectedToken, "Unexpected token %") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(UnexpectedTokenIdentifier, "Unexpected identifier") \
|
2015-05-15 13:32:32 +00:00
|
|
|
T(UnexpectedTokenNumber, "Unexpected number") \
|
|
|
|
T(UnexpectedTokenString, "Unexpected string") \
|
2015-07-14 21:57:40 +00:00
|
|
|
T(UnexpectedTokenRegExp, "Unexpected regular expression") \
|
2015-05-18 08:34:05 +00:00
|
|
|
T(UnknownLabel, "Undefined label '%'") \
|
|
|
|
T(UnterminatedArgList, "missing ) after argument list") \
|
|
|
|
T(UnterminatedRegExp, "Invalid regular expression: missing /") \
|
|
|
|
T(UnterminatedTemplate, "Unterminated template literal") \
|
|
|
|
T(UnterminatedTemplateExpr, "Missing } in template expression") \
|
2015-04-21 09:03:24 +00:00
|
|
|
/* EvalError */ \
|
2015-04-24 10:22:00 +00:00
|
|
|
T(CodeGenFromStrings, "%") \
|
|
|
|
/* URIError */ \
|
|
|
|
T(URIMalformed, "URI malformed")
|
2015-04-16 07:01:20 +00:00
|
|
|
|
|
|
|
class MessageTemplate {
|
|
|
|
public:
|
|
|
|
enum Template {
|
|
|
|
#define TEMPLATE(NAME, STRING) k##NAME,
|
|
|
|
MESSAGE_TEMPLATES(TEMPLATE)
|
|
|
|
#undef TEMPLATE
|
|
|
|
kLastMessage
|
|
|
|
};
|
|
|
|
|
2015-08-17 11:02:31 +00:00
|
|
|
static const char* TemplateString(int template_index);
|
|
|
|
|
2015-04-16 07:01:20 +00:00
|
|
|
static MaybeHandle<String> FormatMessage(int template_index,
|
|
|
|
Handle<String> arg0,
|
|
|
|
Handle<String> arg1,
|
|
|
|
Handle<String> arg2);
|
2015-05-18 08:34:05 +00:00
|
|
|
|
|
|
|
static Handle<String> FormatMessage(Isolate* isolate, int template_index,
|
|
|
|
Handle<Object> arg);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// A message handler is a convenience interface for accessing the list
|
|
|
|
// of message listeners registered in an environment
|
|
|
|
class MessageHandler {
|
|
|
|
public:
|
|
|
|
// Returns a message object for the API to use.
|
|
|
|
static Handle<JSMessageObject> MakeMessageObject(
|
|
|
|
Isolate* isolate, MessageTemplate::Template type, MessageLocation* loc,
|
|
|
|
Handle<Object> argument, Handle<JSArray> stack_frames);
|
|
|
|
|
|
|
|
// Report a formatted message (needs JS allocation).
|
|
|
|
static void ReportMessage(Isolate* isolate, MessageLocation* loc,
|
2015-05-28 06:30:08 +00:00
|
|
|
Handle<JSMessageObject> message);
|
2015-05-18 08:34:05 +00:00
|
|
|
|
|
|
|
static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc,
|
|
|
|
Handle<Object> message_obj);
|
|
|
|
static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data);
|
2015-07-13 12:38:06 +00:00
|
|
|
static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate,
|
|
|
|
Handle<Object> data);
|
2015-04-16 07:01:20 +00:00
|
|
|
};
|
2015-08-11 09:15:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ErrorToStringHelper {
|
|
|
|
public:
|
|
|
|
ErrorToStringHelper() : visited_(0) {}
|
|
|
|
|
|
|
|
MUST_USE_RESULT MaybeHandle<String> Stringify(Isolate* isolate,
|
|
|
|
Handle<JSObject> error);
|
|
|
|
|
|
|
|
private:
|
|
|
|
class VisitedScope {
|
|
|
|
public:
|
|
|
|
VisitedScope(ErrorToStringHelper* helper, Handle<JSObject> error)
|
|
|
|
: helper_(helper), has_visited_(false) {
|
|
|
|
for (const Handle<JSObject>& visited : helper->visited_) {
|
|
|
|
if (visited.is_identical_to(error)) {
|
|
|
|
has_visited_ = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
helper->visited_.Add(error);
|
|
|
|
}
|
|
|
|
~VisitedScope() { helper_->visited_.RemoveLast(); }
|
|
|
|
bool has_visited() { return has_visited_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ErrorToStringHelper* helper_;
|
|
|
|
bool has_visited_;
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool ShadowsInternalError(Isolate* isolate,
|
|
|
|
LookupIterator* property_lookup,
|
|
|
|
LookupIterator* internal_error_lookup);
|
|
|
|
|
|
|
|
static MUST_USE_RESULT MaybeHandle<String> GetStringifiedProperty(
|
|
|
|
Isolate* isolate, LookupIterator* property_lookup,
|
|
|
|
Handle<String> default_value);
|
|
|
|
|
|
|
|
List<Handle<JSObject> > visited_;
|
|
|
|
};
|
2008-07-03 15:10:15 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_MESSAGES_H_
|