| 803 | |
| 804 | auto symbolId = toSymbolID(propertyName); |
| 805 | auto result = hermes::vm::JSObject::hasNamedOrIndexed( |
| 806 | hermes::vm::Handle<::hermes::vm::JSObject>::vmcast(hermesValue), *_runtime, symbolId.get()); |
| 807 | |
| 808 | if (result.getStatus() == hermes::vm::ExecutionStatus::EXCEPTION) { |
| 809 | _runtime->clearThrownValue(); |
| 810 | return false; |
| 811 | } |
no outgoing calls