| Index: Source/bindings/v8/ExceptionMessages.h
|
| diff --git a/Source/bindings/v8/ExceptionMessages.h b/Source/bindings/v8/ExceptionMessages.h
|
| index 7ca3b7063f4cf662877337c568211b603472dafa..2dc5d26540385348f2162c1fe8fe15429b3eeae5 100644
|
| --- a/Source/bindings/v8/ExceptionMessages.h
|
| +++ b/Source/bindings/v8/ExceptionMessages.h
|
| @@ -47,10 +47,14 @@ public:
|
| };
|
|
|
| static String failedToConstruct(const String& type, const String& detail = String());
|
| + static String failedToEnumerate(const String& type, const String& detail = String());
|
| static String failedToExecute(const String& method, const String& type, const String& detail = String());
|
| static String failedToGet(const String& property, const String& type, const String& detail);
|
| static String failedToSet(const String& property, const String& type, const String& detail);
|
| static String failedToDelete(const String& property, const String& type, const String& detail);
|
| + static String failedToGetIndexed(const String& type, const String& detail);
|
| + static String failedToSetIndexed(const String& type, const String& detail);
|
| + static String failedToDeleteIndexed(const String& type, const String& detail);
|
|
|
| static String incorrectPropertyType(const String& property, const String& detail);
|
|
|
|
|