Chromium Code Reviews| Index: pkg/polymer/test/prop_attr_bind_reflection_test.dart |
| diff --git a/pkg/polymer/test/prop_attr_bind_reflection_test.dart b/pkg/polymer/test/prop_attr_bind_reflection_test.dart |
| index bfe16bfb791aac961669538979d5aa38cfc169b8..18c3420fc3fd03d3ff69e78ba491d9670e0667f3 100644 |
| --- a/pkg/polymer/test/prop_attr_bind_reflection_test.dart |
| +++ b/pkg/polymer/test/prop_attr_bind_reflection_test.dart |
| @@ -12,6 +12,8 @@ class MyChildElement extends PolymerElement { |
| @published int camelCase; |
| @published int lowercase; |
| + @reflectable get attributes => super.attributes; |
|
Siggi Cherem (dart-lang)
2014/03/21 01:43:46
this turned out to be a bug in the test: "attribut
Jennifer Messerly
2014/03/21 20:08:54
hmmm, I'm confused now :(. I thought we shouldn't
Siggi Cherem (dart-lang)
2014/03/21 21:09:47
soon: we are still not generating code in polymer,
Jennifer Messerly
2014/03/22 00:37:56
ah, gotcha!
|
| + |
| MyChildElement.created() : super.created(); |
| // Make this a no-op, so we can verify the initial |