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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 140903003: Making readonly fields on interfaces be readonly (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index 13d4234dd3a4fcda72d7ad1f56e8a25d63dbcdc3..1fc55d820cc7c4f04aa15af65a9e06261d0abd3b 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -1439,7 +1439,7 @@ abstract class ExternalResourcesRequired extends Interceptor {
/// Checks if this type is supported on the current platform.
static bool supported(SvgElement element) => JS('bool', '#.externalResourcesRequired !== undefined && #.externalResourcesRequired.animVal !== undefined', element, element);
- AnimatedBoolean externalResourcesRequired;
+ final AnimatedBoolean externalResourcesRequired;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -3012,15 +3012,15 @@ abstract class FilterPrimitiveStandardAttributes extends Interceptor {
// To suppress missing implicit constructor warnings.
factory FilterPrimitiveStandardAttributes._() { throw new UnsupportedError("Not supported"); }
- AnimatedLength height;
+ final AnimatedLength height;
- AnimatedString result;
+ final AnimatedString result;
- AnimatedLength width;
+ final AnimatedLength width;
- AnimatedLength x;
+ final AnimatedLength x;
- AnimatedLength y;
+ final AnimatedLength y;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -3034,9 +3034,9 @@ abstract class FitToViewBox extends Interceptor {
// To suppress missing implicit constructor warnings.
factory FitToViewBox._() { throw new UnsupportedError("Not supported"); }
- AnimatedPreserveAspectRatio preserveAspectRatio;
+ final AnimatedPreserveAspectRatio preserveAspectRatio;
- AnimatedRect viewBox;
+ final AnimatedRect viewBox;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -6401,11 +6401,11 @@ abstract class Tests extends Interceptor {
// To suppress missing implicit constructor warnings.
factory Tests._() { throw new UnsupportedError("Not supported"); }
- StringList requiredExtensions;
+ final StringList requiredExtensions;
- StringList requiredFeatures;
+ final StringList requiredFeatures;
- StringList systemLanguage;
+ final StringList systemLanguage;
bool hasExtension(String extension);
}
@@ -6842,7 +6842,7 @@ abstract class UriReference extends Interceptor {
// To suppress missing implicit constructor warnings.
factory UriReference._() { throw new UnsupportedError("Not supported"); }
- AnimatedString href;
+ final AnimatedString href;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698