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

Unified Diff: pkg/serialization/test/test_models.dart

Issue 11791053: Fix bug 7763, use of reserved word as identifier in serialization tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/serialization/test/serialization_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/serialization/test/test_models.dart
diff --git a/pkg/serialization/test/test_models.dart b/pkg/serialization/test/test_models.dart
index 0f4c417aedf5426a882c4cdfcc7dfe5cbb572786..5ccfaccd6b49bfc5a8cec41b8131d6ec4fd38b9b 100644
--- a/pkg/serialization/test/test_models.dart
+++ b/pkg/serialization/test/test_models.dart
@@ -14,7 +14,7 @@ class Person {
class Address {
String street, city, state, zip;
Address();
- Address.with(this.street, this.city, this.state, this.zip);
+ Address.withData(this.street, this.city, this.state, this.zip);
}
class Various {
« no previous file with comments | « pkg/serialization/test/serialization_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698