| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 47d87720fb65c5e13b8ff8c4e4811486b75a9d09..299ca2dcacc5be83e8e91c4a43177b7892bfb0b3 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -5749,6 +5749,12 @@ class Map: public HeapObject {
|
| Map* transitioned_map);
|
| inline void SetTransition(int transition_index, Map* target);
|
| inline Map* GetTransition(int transition_index);
|
| +
|
| + static Handle<TransitionArray> AddTransition(Handle<Map> map,
|
| + Handle<Name> key,
|
| + Handle<Map> target,
|
| + SimpleTransitionFlag flag);
|
| +
|
| MUST_USE_RESULT inline MaybeObject* AddTransition(Name* key,
|
| Map* target,
|
| SimpleTransitionFlag flag);
|
| @@ -5986,7 +5992,6 @@ class Map: public HeapObject {
|
| TransitionFlag flag);
|
|
|
| static Handle<Map> CopyForObserved(Handle<Map> map);
|
| - MUST_USE_RESULT MaybeObject* CopyForObserved();
|
|
|
| static Handle<Map> CopyNormalized(Handle<Map> map,
|
| PropertyNormalizationMode mode,
|
|
|