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

Unified Diff: src/objects-inl.h

Issue 1322803002: Adding ElementsAccessor::Unshift (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-08-28_elements_accessor_pop
Patch Set: Removing needless SetValue implementations Created 5 years, 4 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
« src/objects.h ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index a37fcd58369c83a7fcb4be93efa62cd8eb658656..ed492d5359f49db4aa0520470a09a6e1f078bc07 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -2425,6 +2425,9 @@ bool FixedArray::is_the_hole(int index) {
}
+void FixedArray::SetValue(uint32_t index, Object* value) { set(index, value); }
+
+
void FixedArray::set(int index, Smi* value) {
DCHECK(map() != GetHeap()->fixed_cow_array_map());
DCHECK(index >= 0 && index < this->length());
@@ -2472,6 +2475,11 @@ Handle<Object> FixedDoubleArray::get(Handle<FixedDoubleArray> array,
}
+void FixedDoubleArray::SetValue(uint32_t index, Object* value) {
+ set(index, value->Number());
+}
+
+
void FixedDoubleArray::set(int index, double value) {
DCHECK(map() != GetHeap()->fixed_cow_array_map() &&
map() != GetHeap()->fixed_array_map());
« src/objects.h ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698