2014-11-20 20:07:48 +00:00
|
|
|
library reflection.reflection;
|
|
|
|
|
|
|
|
|
|
import 'reflector.dart';
|
|
|
|
|
import 'types.dart';
|
|
|
|
|
export 'reflector.dart';
|
|
|
|
|
import 'package:facade/lang.dart';
|
|
|
|
|
|
|
|
|
|
class NoReflectionCapabilities {
|
|
|
|
|
Function factory(Type type){
|
|
|
|
|
throw "Cannot find reflection information on ${stringify(type)}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List parameters(Type type) {
|
|
|
|
|
throw "Cannot find reflection information on ${stringify(type)}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List annotations(Type type) {
|
|
|
|
|
throw "Cannot find reflection information on ${stringify(type)}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GetterFn getter(String name) {
|
|
|
|
|
throw "Cannot find getter ${name}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetterFn setter(String name) {
|
2014-11-25 02:02:21 +00:00
|
|
|
throw "Cannot find setter ${name}";
|
2014-11-20 20:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MethodFn method(String name) {
|
|
|
|
|
throw "Cannot find method ${name}";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
final Reflector reflector = new Reflector(new NoReflectionCapabilities());
|