This package contains code for an external benchmarking framework to run and reporting timings for. We don't currently have an open source tool that is well supported, but this package allows AngularDart developers to check in benchmark code alongside the framework.
The tests (/test) are entirely to ensure this code continues to work.
Configures dependency injection for 20 standalone services:
const flat20Bindings = const [
Service1,
Service2,
...,
Service19,
Service20,
];May be run either with @Component(providers: const [ ... ]) or
ReflectiveInjector.
create_20_bindings_directive.dartcreate_20_bindings_reflective.dart
Configures dependency injection for a simple web-like application tree.
// <App>
// / \
// <Page><Page>
// / | \ / | \
// Panels Panels
// /* \*
// Tabs TabsMay be run either with @Component(providers: const [ ... ]) or
ReflectiveInjector.
create_tree_bindings_directive.dartcreate_tree_bindings_reflective.dart