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

Unified Diff: src/objects.h

Issue 11416238: Move CopyElements to the accessor of the target. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index b6db23dfb4cb24ad7c0288f2574d8da1a41313c9..06b7fcaa1c9be6d2e9dc4e2ac277b901e323d0f1 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2334,6 +2334,8 @@ class FixedArrayBase: public HeapObject {
// Length is smi tagged when it is stored.
static const int kLengthOffset = HeapObject::kHeaderSize;
static const int kHeaderSize = kLengthOffset + kPointerSize;
+
+ inline ElementsKind GetElementsKind();
Michael Starzinger 2012/11/29 09:39:32 See comments in objects-inl.h about this method.
Toon Verwaest 2012/11/29 14:04:40 Done.
};

Powered by Google App Engine
This is Rietveld 408576698