Revision: 14377
Author: [email protected]
Date: Mon Apr 22 07:46:55 2013
Log: Ensure callbacks transitions are actually followed.
Review URL: https://chromiumcodereview.appspot.com/14371007
http://code.google.com/p/v8/source/detail?r=14377
Modified:
/branches/bleeding_edge/src/objects.cc
=======================================
--- /branches/bleeding_edge/src/objects.cc Fri Apr 19 08:55:34 2013
+++ /branches/bleeding_edge/src/objects.cc Mon Apr 22 07:46:55 2013
@@ -5390,9 +5390,9 @@
LookupResult result(GetIsolate());
LocalLookup(name, &result);
- if (result.IsFound()
- && !result.IsPropertyCallbacks()
- && !result.IsTransition()) return GetHeap()->null_value();
+ if (result.IsFound() && !result.IsPropertyCallbacks()) {
+ return GetHeap()->null_value();
+ }
// Return success if the same accessor with the same attributes already
exist.
AccessorPair* source_accessors = NULL;
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.