Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index f7e2b376a33cacd7da75b40f40b1d19ae76bc396..fa238742d5d4f16f68f0816c850f58cc275b284a 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -2313,7 +2313,7 @@ |
enum Encoding { |
UNKNOWN_ENCODING = 0x1, |
TWO_BYTE_ENCODING = 0x0, |
- ONE_BYTE_ENCODING = 0x8 |
+ ONE_BYTE_ENCODING = 0x4 |
}; |
/** |
* Returns the number of characters in this string. |
@@ -8406,10 +8406,10 @@ |
static const int kFixedArrayHeaderSize = 2 * kApiPointerSize; |
static const int kContextHeaderSize = 2 * kApiPointerSize; |
static const int kContextEmbedderDataIndex = 5; |
- static const int kFullStringRepresentationMask = 0x0f; |
- static const int kStringEncodingMask = 0x8; |
+ static const int kFullStringRepresentationMask = 0x07; |
+ static const int kStringEncodingMask = 0x4; |
static const int kExternalTwoByteRepresentationTag = 0x02; |
- static const int kExternalOneByteRepresentationTag = 0x0a; |
+ static const int kExternalOneByteRepresentationTag = 0x06; |
static const int kIsolateEmbedderDataOffset = 0 * kApiPointerSize; |
static const int kExternalMemoryOffset = 4 * kApiPointerSize; |