Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: pkg/polymer/test/prop_attr_reflection_test.dart

Issue 211393006: Enables codegen support in polymer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer/test/build/script_compactor_test.dart ('k') | pkg/smoke/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/prop_attr_reflection_test.dart
diff --git a/pkg/polymer/test/prop_attr_reflection_test.dart b/pkg/polymer/test/prop_attr_reflection_test.dart
index 79b9c8eb55be72baf4442909d72842bdea7108d5..a0dbf51641e7eb7b6c114a0f98116f81cb53361a 100644
--- a/pkg/polymer/test/prop_attr_reflection_test.dart
+++ b/pkg/polymer/test/prop_attr_reflection_test.dart
@@ -11,23 +11,23 @@ import 'package:polymer/polymer.dart';
class XFoo extends PolymerElement {
XFoo.created() : super.created();
- @observable var foo = '';
- @observable String baz = '';
+ @published var foo = '';
+ @published String baz = '';
}
class XBar extends XFoo {
XBar.created() : super.created();
- @observable int zot = 3;
- @observable bool zim = false;
- @observable String str = 'str';
- @observable Object obj;
+ @published int zot = 3;
+ @published bool zim = false;
+ @published String str = 'str';
+ @published Object obj;
}
class XCompose extends PolymerElement {
XCompose.created() : super.created();
- @observable bool zim = false;
+ @published bool zim = false;
}
Future onAttributeChange(Element node) {
« no previous file with comments | « pkg/polymer/test/build/script_compactor_test.dart ('k') | pkg/smoke/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698