| Index: src/bailout-reason.h
|
| diff --git a/src/bailout-reason.h b/src/bailout-reason.h
|
| index 5d4f15264dc0554e4060ff054553d35012e65507..a419602394f32ab3d2c3a91cfd0ee0d5bd86a991 100644
|
| --- a/src/bailout-reason.h
|
| +++ b/src/bailout-reason.h
|
| @@ -146,11 +146,14 @@ namespace internal {
|
| V(kObjectFoundInSmiOnlyArray, "Object found in smi-only array") \
|
| V(kObjectLiteralWithComplexProperty, "Object literal with complex property") \
|
| V(kOffsetOutOfRange, "Offset out of range") \
|
| + V(kOperandIsASmiAndNotABoundFunction, \
|
| + "Operand is a smi and not a bound function") \
|
| V(kOperandIsASmiAndNotAFunction, "Operand is a smi and not a function") \
|
| V(kOperandIsASmiAndNotAName, "Operand is a smi and not a name") \
|
| V(kOperandIsASmiAndNotAString, "Operand is a smi and not a string") \
|
| V(kOperandIsASmi, "Operand is a smi") \
|
| V(kOperandIsNotADate, "Operand is not a date") \
|
| + V(kOperandIsNotABoundFunction, "Operand is not a bound function") \
|
| V(kOperandIsNotAFunction, "Operand is not a function") \
|
| V(kOperandIsNotAName, "Operand is not a name") \
|
| V(kOperandIsNotANumber, "Operand is not a number") \
|
|
|