Chromium Code Reviews| 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, |