fix(dart): @proxy is a value, not a factory

Previously I added parens everywhere to make this @proxy() because our typing indicated
it was a function that returned a decorator, but this breaks dart. Instead, the typing needs
to be changed.

Fixes #3494
This commit is contained in:
Alex Eagle
2015-08-06 10:02:49 -07:00
parent f11f4e0b45
commit b4a062983b
14 changed files with 24 additions and 26 deletions

View File

@ -58,7 +58,7 @@ export function main() {
});
}
@proxy()
@proxy
@IMPLEMENTS(ElementRef)
class SpyElementRef extends SpyObject {
nativeElement;
@ -66,7 +66,7 @@ class SpyElementRef extends SpyObject {
noSuchMethod(m) { return super.noSuchMethod(m) }
}
@proxy()
@proxy
@IMPLEMENTS(DomAdapter)
class SpyDomAdapter extends SpyObject {
constructor() { super(DomAdapter); }