8 lines
207 B
Dart
Raw Normal View History

import 'dart:mirrors';
// TODO: this api does not yet return an array as we don't have
// a nice array wrapper for Dart
readFirstAnnotation(clazz) {
2014-09-25 14:30:10 -07:00
return reflectClass(clazz).metadata.first.reflectee;
}