Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 7edcda864863df8f258b1f23f45c48a49cf3fe86..84bb8007f2383997375a2c19226b11ce529aa1e5 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) |
@@ -10548,7 +10549,7 @@ class AccessorInfo: public Struct { |
// Bit positions in flag. |
static const int kAllCanReadBit = 0; |
static const int kAllCanWriteBit = 1; |
- class AttributesField: public BitField<PropertyAttributes, 2, 3> {}; |
+ class AttributesField : public BitField<PropertyAttributes, 2, 3> {}; |
DISALLOW_IMPLICIT_CONSTRUCTORS(AccessorInfo); |
}; |