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

Unified Diff: tools/dom/src/NodeValidatorBuilder.dart

Issue 2827793002: Format all files under tools and utils directory. (Closed)
Patch Set: Format all files under tools and utils directory. Created 3 years, 8 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 | « tools/dom/src/KeyboardEventStream.dart ('k') | tools/dom/src/Validators.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/NodeValidatorBuilder.dart
diff --git a/tools/dom/src/NodeValidatorBuilder.dart b/tools/dom/src/NodeValidatorBuilder.dart
index bcf807c5472398fe502c473d9883a18f6f4a83c1..dd1cf564bc7cab1e7bec6a66d41db901f441a80f 100644
--- a/tools/dom/src/NodeValidatorBuilder.dart
+++ b/tools/dom/src/NodeValidatorBuilder.dart
@@ -154,9 +154,9 @@ class NodeValidatorBuilder implements NodeValidator {
Iterable<String> uriAttributes}) {
var tagNameUpper = tagName.toUpperCase();
var attrs = attributes
- ?.map /*<String>*/ ((name) => '$tagNameUpper::${name.toLowerCase()}');
+ ?.map/*<String>*/((name) => '$tagNameUpper::${name.toLowerCase()}');
var uriAttrs = uriAttributes
- ?.map /*<String>*/ ((name) => '$tagNameUpper::${name.toLowerCase()}');
+ ?.map/*<String>*/((name) => '$tagNameUpper::${name.toLowerCase()}');
if (uriPolicy == null) {
uriPolicy = new UriPolicy();
}
@@ -180,9 +180,9 @@ class NodeValidatorBuilder implements NodeValidator {
var baseNameUpper = baseName.toUpperCase();
var tagNameUpper = tagName.toUpperCase();
var attrs = attributes
- ?.map /*<String>*/ ((name) => '$baseNameUpper::${name.toLowerCase()}');
+ ?.map/*<String>*/((name) => '$baseNameUpper::${name.toLowerCase()}');
var uriAttrs = uriAttributes
- ?.map /*<String>*/ ((name) => '$baseNameUpper::${name.toLowerCase()}');
+ ?.map/*<String>*/((name) => '$baseNameUpper::${name.toLowerCase()}');
if (uriPolicy == null) {
uriPolicy = new UriPolicy();
}
« no previous file with comments | « tools/dom/src/KeyboardEventStream.dart ('k') | tools/dom/src/Validators.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698