Tobias Bosch df1822fc2a benchmarks: add ng2_ftl and ng2_switch_ftl benchmarks (#11963)
These benchmarks take the output of AoT
and manually tweaks it to explore possible
future changes to the compiler to produce
this output directly.
2016-09-30 09:09:31 -07:00

8 lines
215 B
TypeScript

import {TreeNode, emptyTree} from '../util';
export class TreeRootComponent { data: TreeNode = emptyTree; }
export class TreeBranchComponent { data: TreeNode; }
export class TreeLeafComponent { data: TreeNode; }