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

Unified Diff: lib/html/src/XMLElementWrappingImplementation.dart

Issue 10559034: Remove string + uses from dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « lib/html/src/SVGElementWrappingImplementation.dart ('k') | lib/html/src/shared_FactoryProviders.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/XMLElementWrappingImplementation.dart
diff --git a/lib/html/src/XMLElementWrappingImplementation.dart b/lib/html/src/XMLElementWrappingImplementation.dart
index abc39a82e5897a57b6f26da1b9d3b583d3735c25..dcd01546ab55c96bd07524855295355c2a9f54a4 100644
--- a/lib/html/src/XMLElementWrappingImplementation.dart
+++ b/lib/html/src/XMLElementWrappingImplementation.dart
@@ -25,8 +25,8 @@ class XMLElementWrappingImplementation extends ElementWrappingImplementation
parentTag.innerHTML = xml;
if (parentTag.nodes.length == 1) return parentTag.nodes.removeLast();
- throw new IllegalArgumentException('XML had ${parentTag.nodes.length} ' +
- 'top-level nodes but 1 expected');
+ throw new IllegalArgumentException(
+ 'XML had ${parentTag.nodes.length} top-level nodes but 1 expected');
}
Set<String> get classes() {
« no previous file with comments | « lib/html/src/SVGElementWrappingImplementation.dart ('k') | lib/html/src/shared_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698