/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/jserrorhandler/StackTraceParser.h
23 строки
500 B
Ramanpreet Nara
Rename ParsedError to ProcessedError
23 дек 2024, 23:42
23 дек 2024, 23:42
a5a3d37
Код
Авторство
О чём код?
/* * 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. */ #pragma once #include <string> #include <vector> #include "JsErrorHandler.h" namespace facebook::react { class StackTraceParser { public: static std::vector<JsErrorHandler::ProcessedError::StackFrame> parse( bool isHermes, const std::string& stackString); }; } // namespace facebook::react