/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
compiler/packages/babel-plugin-react-compiler/src/HIR/index.ts
35 строк
1 KB
mofeiZ
[compiler][be] Move test pragma to separate file (#33145)
08 май 2025, 18:24
Не верифицирован
08 май 2025, 18:24
b629a86
Код
Авторство
О чём код?
/** * 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. */ export {assertConsistentIdentifiers} from './AssertConsistentIdentifiers'; export { assertTerminalSuccessorsExist, assertTerminalPredsExist, } from './AssertTerminalBlocksExist'; export {assertValidBlockNesting} from './AssertValidBlockNesting'; export {assertValidMutableRanges} from './AssertValidMutableRanges'; export {lower} from './BuildHIR'; export {buildReactiveScopeTerminalsHIR} from './BuildReactiveScopeTerminalsHIR'; export {computeDominatorTree, computePostDominatorTree} from './Dominator'; export { Environment, validateEnvironmentConfig, type EnvironmentConfig, type ExternalFunction, type Hook, } from './Environment'; export * from './HIR'; export { markInstructionIds, markPredecessors, removeUnnecessaryTryCatch, reversePostorderBlocks, } from './HIRBuilder'; export {mergeConsecutiveBlocks} from './MergeConsecutiveBlocks'; export {mergeOverlappingReactiveScopesHIR} from './MergeOverlappingReactiveScopesHIR'; export {printFunction, printHIR, printFunctionWithOutlined} from './PrintHIR'; export {pruneUnusedLabelsHIR} from './PruneUnusedLabelsHIR';