| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index c0ec45529798ed049c40d1c9c8ed72b65d619d76..4f1ad414e9079432f2d23d4b5b0c8ec195a7a9da 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -2214,9 +2214,15 @@ bool Object::IsStringObjectWithCharacterAt(uint32_t index) {
|
|
|
| void Object::VerifyApiCallResultType() {
|
| #if DEBUG
|
| - if (!(IsSmi() || IsString() || IsSymbol() || IsSpecObject() ||
|
| - IsHeapNumber() || IsFloat32x4() || IsUndefined() || IsTrue() ||
|
| - IsFalse() || IsNull())) {
|
| + if (!(IsSmi() ||
|
| + IsString() ||
|
| + IsSymbol() ||
|
| + IsSpecObject() ||
|
| + IsHeapNumber() ||
|
| + IsUndefined() ||
|
| + IsTrue() ||
|
| + IsFalse() ||
|
| + IsNull())) {
|
| FATAL("API call returned invalid object");
|
| }
|
| #endif // DEBUG
|
|
|