diff options
author | isaacs <i@izs.me> | 2012-01-23 16:16:42 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-01-23 17:16:27 -0800 |
commit | 40879f33cd083ad8e16860a19cce03a0126e12a5 (patch) | |
tree | 010f16d83e398481e074f35a1900ee6c9e011e16 /deps/v8/src/bootstrapper.cc | |
parent | b1b16d117e6fe2ca889d10e7e0b62a5a60997d57 (diff) | |
download | node-new-40879f33cd083ad8e16860a19cce03a0126e12a5.tar.gz |
Upgrade V8 to 3.8.8
Diffstat (limited to 'deps/v8/src/bootstrapper.cc')
-rw-r--r-- | deps/v8/src/bootstrapper.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/bootstrapper.cc b/deps/v8/src/bootstrapper.cc index 752b220e5b..cedb0efd00 100644 --- a/deps/v8/src/bootstrapper.cc +++ b/deps/v8/src/bootstrapper.cc @@ -1099,11 +1099,11 @@ void Genesis::InitializeGlobal(Handle<GlobalObject> inner_global, #ifdef DEBUG LookupResult lookup(isolate); result->LocalLookup(heap->callee_symbol(), &lookup); - ASSERT(lookup.IsProperty() && (lookup.type() == FIELD)); + ASSERT(lookup.IsFound() && (lookup.type() == FIELD)); ASSERT(lookup.GetFieldIndex() == Heap::kArgumentsCalleeIndex); result->LocalLookup(heap->length_symbol(), &lookup); - ASSERT(lookup.IsProperty() && (lookup.type() == FIELD)); + ASSERT(lookup.IsFound() && (lookup.type() == FIELD)); ASSERT(lookup.GetFieldIndex() == Heap::kArgumentsLengthIndex); ASSERT(result->map()->inobject_properties() > Heap::kArgumentsCalleeIndex); @@ -1197,7 +1197,7 @@ void Genesis::InitializeGlobal(Handle<GlobalObject> inner_global, #ifdef DEBUG LookupResult lookup(isolate); result->LocalLookup(heap->length_symbol(), &lookup); - ASSERT(lookup.IsProperty() && (lookup.type() == FIELD)); + ASSERT(lookup.IsFound() && (lookup.type() == FIELD)); ASSERT(lookup.GetFieldIndex() == Heap::kArgumentsLengthIndex); ASSERT(result->map()->inobject_properties() > Heap::kArgumentsLengthIndex); |