/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/tree/ng2_static/main.ts
55 строк
1 KB
Paul Gschwendtner
build: rework benchmarks and examples in `modules/` to new optimization rule (#61566)
29 май 2025, 21:39
29 май 2025, 21:39
9d7768c
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import '@angular/compiler'; import {ApplicationRef, enableProdMode} from '@angular/core'; import {platformBrowser} from '@angular/platform-browser'; import {bindAction, profile} from '../../util'; import {buildTree, emptyTree, initTreeUtils} from '../util'; import {createAppModule, RootTreeComponent} from './tree'; let tree: RootTreeComponent; let appRef: ApplicationRef; function destroyDom() { tree.data = emptyTree; appRef.tick(); } function createDom() { tree.data = buildTree(); appRef.tick(); } function noop() {} function init() { initTreeUtils(); enableProdMode(); const appModule = createAppModule(); platformBrowser() .bootstrapModule(appModule) .then((ref) => { const injector = ref.injector; appRef = injector.get(ApplicationRef); tree = appRef.components[0].instance; bindAction('#destroyDom', destroyDom); bindAction('#createDom', createDom); bindAction('#updateDomProfile', profile(createDom, noop, 'update')); bindAction('#createDomProfile', profile(createDom, destroyDom, 'create')); }); } init();