Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index e8c985048455e406c77c6b4c6814261f2cb7ab41..6c2b84c9ab99d9ed1a1adf3753313d00339e7c21 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -5196,6 +5196,9 @@ class Code: public HeapObject { |
void ReplaceNthCell(int n, Cell* replace_with); |
+ // Slightly ugly, used in ObjectSerializer only. |
Erik Corry
2013/11/04 12:41:14
Rather than insulting your own code it would be mo
Sven Panne
2013/11/04 13:03:19
Well, that would just be yet another general v8 co
Erik Corry
2013/11/04 13:20:02
Let me suggest:
"The entire code object including
|
+ inline void WipeOutHeader(); |
+ |
class ExtraICStateStrictMode: public BitField<StrictModeFlag, 0, 1> {}; |
class ExtraICStateKeyedAccessStoreMode: |
public BitField<KeyedAccessStoreMode, 1, 4> {}; // NOLINT |