/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/renderer/components/view/TouchEvent.cpp
33 строки
864 B
generatedunixname89002005287564
Fix CQS signal modernize-use-designated-initializers in xplat/js/react-native-github/packages (#53962)
26 сен 2025, 20:50
26 сен 2025, 20:50
8bc133c
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "TouchEvent.h" namespace facebook::react { #if RN_DEBUG_STRING_CONVERTIBLE std::string getDebugName(const TouchEvent& /*touchEvent*/) { return "TouchEvent"; } std::vector<DebugStringConvertibleObject> getDebugProps( const TouchEvent& touchEvent, DebugStringConvertibleOptions options) { return { {.name = "touches", .value = getDebugDescription(touchEvent.touches, options)}, {.name = "changedTouches", .value = getDebugDescription(touchEvent.changedTouches, options)}, {.name = "targetTouches", .value = getDebugDescription(touchEvent.targetTouches, options)}, }; } #endif } // namespace facebook::react