/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/roots/static-roots.h
25 строк
732 B
Michaël Zasso
deps: update V8 to 14.1.146.11
04 окт 2025, 19:47
Не верифицирован
04 окт 2025, 19:47
7772a2d
Код
Авторство
О чём код?
// Copyright 2022 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_ROOTS_STATIC_ROOTS_H_ #define V8_ROOTS_STATIC_ROOTS_H_ #if V8_STATIC_ROOTS_BOOL #ifdef V8_ENABLE_WEBASSEMBLY #ifdef V8_INTL_SUPPORT #include "src/roots/static-roots-intl-wasm.h" // IWYU pragma: export #else #include "src/roots/static-roots-nointl-wasm.h" // IWYU pragma: export #endif #else #ifdef V8_INTL_SUPPORT #include "src/roots/static-roots-intl-nowasm.h" // IWYU pragma: export #else #include "src/roots/static-roots-nointl-nowasm.h" // IWYU pragma: export #endif #endif #endif // V8_STATIC_ROOTS_BOOL #endif // V8_ROOTS_STATIC_ROOTS_H_