2014-12-02 19:14:48 -08:00
|
|
|
import 'package:examples/hello_world/app.dart' as HelloWorldApp;
|
|
|
|
import 'package:reflection/reflection_capabilities.dart';
|
|
|
|
import 'package:reflection/reflection.dart';
|
2014-11-07 14:30:04 -08:00
|
|
|
|
|
|
|
// TODO(rado): templatize and make reusable for all examples.
|
2014-12-02 19:14:48 -08:00
|
|
|
main() {
|
|
|
|
// enable mirrors and reflection.
|
|
|
|
// see static_app.js for an example of a static app.
|
|
|
|
reflector.reflectionCapabilities = new ReflectionCapabilities();
|
|
|
|
HelloWorldApp.main();
|
|
|
|
}
|