 Chromium Code Reviews
 Chromium Code Reviews Issue 11416238:
  Move CopyElements to the accessor of the target.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 11416238:
  Move CopyElements to the accessor of the target.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| 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.
 | 
| }; |