| 454 | } |
| 455 | |
| 456 | bool Value::IsUndefined() const { |
| 457 | #ifdef V8_ENABLE_CHECKS |
| 458 | return FullIsUndefined(); |
| 459 | #else |
| 460 | return QuickIsUndefined(); |
| 461 | #endif |
| 462 | } |
| 463 | |
| 464 | bool Value::QuickIsUndefined() const { |
| 465 | using A = internal::Address; |
no outgoing calls
no test coverage detected