diff options
| author | Ben Murdoch <benm@google.com> | 2010-06-15 11:15:29 +0100 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2010-06-15 11:22:44 +0100 |
| commit | 7f4d5bd8c03935e2c0cd412e561b8fc5a6a880ae (patch) | |
| tree | 59a0ccf5c23a6f5890b81f4a6aa99b568c8115f2 /src/objects-debug.cc | |
| parent | f7060e27768c550ace7ec48ad8c093466db52dfa (diff) | |
| download | android_external_v8-7f4d5bd8c03935e2c0cd412e561b8fc5a6a880ae.tar.gz android_external_v8-7f4d5bd8c03935e2c0cd412e561b8fc5a6a880ae.tar.bz2 android_external_v8-7f4d5bd8c03935e2c0cd412e561b8fc5a6a880ae.zip | |
Update V8 to r4851 as required by WebKit r61121
Change-Id: Ib01b7c8e38d5b82b254192fc06365aa5b85780c5
Diffstat (limited to 'src/objects-debug.cc')
| -rw-r--r-- | src/objects-debug.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/objects-debug.cc b/src/objects-debug.cc index b0a3fd62..f9b20a4b 100644 --- a/src/objects-debug.cc +++ b/src/objects-debug.cc @@ -806,7 +806,8 @@ void JSGlobalProxy::JSGlobalProxyVerify() { VerifyObjectField(JSGlobalProxy::kContextOffset); // Make sure that this object has no properties, elements. CHECK_EQ(0, properties()->length()); - CHECK_EQ(0, elements()->length()); + CHECK(HasFastElements()); + CHECK_EQ(0, FixedArray::cast(elements())->length()); } |
