Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Unified Diff: src/objects.h

Issue 9372023: Handle CALLBACKS transitions in NormalizeProperties, CopyInsert and RemoveTransitions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index bc18bf8fabde108e6acfbbfa49e2d5fe878beb0c..84ba8b57528aa22a635b7337bbb61ee9240b53be 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2414,6 +2414,10 @@ class DescriptorArray: public FixedArray {
inline bool IsNullDescriptor(int descriptor_number);
inline bool IsDontEnum(int descriptor_number);
+ // The return value used to signal allocation failure only.
+ MaybeObject* GetDescriptorWithoutTransitions(int descriptor_number,
+ Descriptor* desc);
+
class WhitenessWitness {
public:
inline explicit WhitenessWitness(DescriptorArray* array);
@@ -7755,6 +7759,8 @@ class AccessorPair: public Struct {
static inline AccessorPair* cast(Object* obj);
+ MaybeObject* CopyWithoutTransitions();
+
#ifdef OBJECT_PRINT
void AccessorPairPrint(FILE* out = stdout);
#endif
« no previous file with comments | « no previous file | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698