2017-12-12 14:44:51 +01:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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.io/license
|
|
|
|
*/
|
|
|
|
|
2017-12-19 15:01:05 -08:00
|
|
|
import {ɵrenderComponent as renderComponent} from '@angular/core';
|
2017-12-12 14:44:51 +01:00
|
|
|
import {bindAction, profile} from '../../util';
|
|
|
|
import {TreeFunction, createDom, destroyDom, detectChanges} from '../render3/tree';
|
|
|
|
|
|
|
|
function noop() {}
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
let component: TreeFunction;
|
|
|
|
if (typeof window !== 'undefined') {
|
2017-12-11 16:30:46 +01:00
|
|
|
component = renderComponent(TreeFunction);
|
2017-12-12 14:44:51 +01:00
|
|
|
bindAction('#createDom', () => createDom(component));
|
|
|
|
bindAction('#destroyDom', () => destroyDom(component));
|
|
|
|
bindAction('#detectChanges', () => detectChanges(component));
|
|
|
|
bindAction(
|
|
|
|
'#detectChangesProfile', profile(() => detectChanges(component), noop, 'detectChanges'));
|
|
|
|
bindAction('#updateDomProfile', profile(() => createDom(component), noop, 'update'));
|
|
|
|
bindAction(
|
|
|
|
'#createDomProfile',
|
|
|
|
profile(() => createDom(component), () => destroyDom(component), 'create'));
|
|
|
|
}
|
|
|
|
}
|