angular-cn/modules/angular2/src/alt_router/lifecycle_reflector.dart

6 lines
155 B
Dart
Raw Normal View History

import './interfaces.dart';
bool hasLifecycleHook(String name, Object obj) {
if (name == "routerOnActivate") return obj is OnActivate;
return false;
}