/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/optimization/static-export-bindings/self-const.js
8 строк
211 B
Alexander Akait
test: cover live-binding edge cases for static export bindings (#21056)
29 май 2026, 15:16
Не верифицирован
29 май 2026, 15:16
75011c6
Код
Авторство
О чём код?
// Self-cycle: const must fall back to a getter so reading via the namespace works import * as self from "./self-const"; export const selfConst = "self"; export function readSelf() { return self.selfConst; }