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

Unified Diff: src/objects.h

Issue 22379002: Re-reland "Flush parallel recompilation queues on context dispose notification" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix Created 7 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 529808a34a9d8734403baf23170787133da0c503..c7dc41acce1d970f7e339545b6621524b63217f5 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -1253,6 +1253,7 @@ class MaybeObject BASE_EMBEDDED {
"ToOperand Unsupported double immediate") \
V(kTryCatchStatement, "TryCatchStatement") \
V(kTryFinallyStatement, "TryFinallyStatement") \
+ V(kGeneratorFunction, "Generator function") \
Michael Starzinger 2013/08/06 17:57:56 nit: Can we keep this list alpha-sorted?
V(kUnableToEncodeValueAsSmi, "Unable to encode value as smi") \
V(kUnalignedAllocationInNewSpace, "Unaligned allocation in new space") \
V(kUndefinedValueNotLoaded, "Undefined value not loaded") \
@@ -1315,7 +1316,8 @@ class MaybeObject BASE_EMBEDDED {
"we should not have an empty lexical context") \
V(kWithStatement, "WithStatement") \
V(kWrongAddressOrValuePassedToRecordWrite, \
- "Wrong address or value passed to RecordWrite")
+ "Wrong address or value passed to RecordWrite") \
+ V(kReplacedByLiveEdit, "Replaced by LiveEdit")
Michael Starzinger 2013/08/06 17:57:56 nit: Can we keep this list alpha-sorted?
#define ERROR_MESSAGES_CONSTANTS(C, T) C,
« no previous file with comments | « src/liveedit.cc ('k') | src/objects.cc » ('j') | src/optimizing-compiler-thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698