| 488 | } |
| 489 | |
| 490 | bool Value::IsNullOrUndefined() const { |
| 491 | #ifdef V8_ENABLE_CHECKS |
| 492 | return FullIsNull() || FullIsUndefined(); |
| 493 | #else |
| 494 | return QuickIsNullOrUndefined(); |
| 495 | #endif |
| 496 | } |
| 497 | |
| 498 | bool Value::QuickIsNullOrUndefined() const { |
| 499 | using A = internal::Address; |
no outgoing calls