Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 0aefb4c06d020e16348ce8b43eaec89b4d79cdbb..d6f3f41dba3cf04d9251f65b0329daf25406f8dc 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -8002,10 +8002,11 @@ class JSDate: public JSObject { |
class JSMessageObject: public JSObject { |
public: |
// [type]: the type of error message. |
- DECL_ACCESSORS(type, String) |
+ inline int type() const; |
+ inline void set_type(int value); |
// [arguments]: the arguments for formatting the error message. |
- DECL_ACCESSORS(arguments, JSArray) |
+ DECL_ACCESSORS(argument, Object) |
// [script]: the script from which the error message originated. |
DECL_ACCESSORS(script, Object) |