angular-cn/modules/@angular/router/src/lifecycle_reflector.dart

7 lines
221 B
Dart
Raw Normal View History

import './interfaces.dart';
bool hasLifecycleHook(String name, Object obj) {
if (name == "routerOnActivate") return obj is OnActivate;
2016-04-29 18:05:06 -07:00
if (name == "routerCanDeactivate") return obj is CanDeactivate;
return false;
}