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

Side by Side Diff: src/transitions-inl.h

Issue 1909433003: Remove support for Object.observe (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « src/runtime/runtime-observe.cc ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_TRANSITIONS_INL_H_ 5 #ifndef V8_TRANSITIONS_INL_H_
6 #define V8_TRANSITIONS_INL_H_ 6 #define V8_TRANSITIONS_INL_H_
7 7
8 #include "src/transitions.h" 8 #include "src/transitions.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 106 }
107 107
108 108
109 #ifdef DEBUG 109 #ifdef DEBUG
110 bool TransitionArray::IsSpecialTransition(Name* name) { 110 bool TransitionArray::IsSpecialTransition(Name* name) {
111 if (!name->IsSymbol()) return false; 111 if (!name->IsSymbol()) return false;
112 Heap* heap = name->GetHeap(); 112 Heap* heap = name->GetHeap();
113 return name == heap->nonextensible_symbol() || 113 return name == heap->nonextensible_symbol() ||
114 name == heap->sealed_symbol() || name == heap->frozen_symbol() || 114 name == heap->sealed_symbol() || name == heap->frozen_symbol() ||
115 name == heap->elements_transition_symbol() || 115 name == heap->elements_transition_symbol() ||
116 name == heap->strict_function_transition_symbol() || 116 name == heap->strict_function_transition_symbol();
117 name == heap->observed_symbol();
118 } 117 }
119 #endif 118 #endif
120 119
121 120
122 int TransitionArray::CompareKeys(Name* key1, uint32_t hash1, PropertyKind kind1, 121 int TransitionArray::CompareKeys(Name* key1, uint32_t hash1, PropertyKind kind1,
123 PropertyAttributes attributes1, Name* key2, 122 PropertyAttributes attributes1, Name* key2,
124 uint32_t hash2, PropertyKind kind2, 123 uint32_t hash2, PropertyKind kind2,
125 PropertyAttributes attributes2) { 124 PropertyAttributes attributes2) {
126 int cmp = CompareNames(key1, hash1, key2, hash2); 125 int cmp = CompareNames(key1, hash1, key2, hash2);
127 if (cmp != 0) return cmp; 126 if (cmp != 0) return cmp;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 175
177 void TransitionArray::SetNumberOfTransitions(int number_of_transitions) { 176 void TransitionArray::SetNumberOfTransitions(int number_of_transitions) {
178 DCHECK(number_of_transitions <= Capacity(this)); 177 DCHECK(number_of_transitions <= Capacity(this));
179 set(kTransitionLengthIndex, Smi::FromInt(number_of_transitions)); 178 set(kTransitionLengthIndex, Smi::FromInt(number_of_transitions));
180 } 179 }
181 180
182 } // namespace internal 181 } // namespace internal
183 } // namespace v8 182 } // namespace v8
184 183
185 #endif // V8_TRANSITIONS_INL_H_ 184 #endif // V8_TRANSITIONS_INL_H_
OLDNEW
« no previous file with comments | « src/runtime/runtime-observe.cc ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698