Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1beaf81 commit be79942Copy full SHA for be79942
modules/angular2/src/reflection/debug_reflection_capabilities.dart
@@ -1,5 +1,6 @@
1
library reflection.debug_reflection_capabilities;
2
3
+import 'dart:mirrors';
4
import 'package:logging/logging.dart' as log;
5
import 'package:stack_trace/stack_trace.dart';
6
import 'types.dart';
@@ -25,7 +26,8 @@ class ReflectionCapabilities extends standard.ReflectionCapabilities {
25
26
}
27
28
Function factory(Type type) {
- _notify('factory', type);
29
+ ClassMirror classMirror = reflectType(type);
30
+ _notify('factory', '${classMirror.qualifiedName}');
31
return super.factory(type);
32
33
0 commit comments