fix(transformer): Event getters now use property name not event name

This commit is contained in:
Jacob MacDonald
2015-07-13 08:36:44 -07:00
parent a9a552c112
commit cf103de4a7
4 changed files with 23 additions and 20 deletions

View File

@ -10,7 +10,9 @@ class NullReflectionCapabilities implements ReflectionCapabilities {
_notImplemented(String name) => throw 'Not implemented: $name';
bool isReflectionEnabled() { return false; }
bool isReflectionEnabled() {
return false;
}
Function factory(Type type) => _notImplemented('factory');