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

Unified Diff: test/regression/other/angular.unit

Issue 2525553003: Tighten the span around index operators. (Closed)
Patch Set: Created 4 years, 1 month 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/src/source_visitor.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/regression/other/angular.unit
diff --git a/test/regression/other/angular.unit b/test/regression/other/angular.unit
index add59be8c2f32d870b34db01d3410a1d36fc527b..85b76c82457e9ee86cdf3aea59c139823b10c580 100644
--- a/test/regression/other/angular.unit
+++ b/test/regression/other/angular.unit
@@ -42,4 +42,20 @@ class IoControllerComponent implements ScopeAware {}
'ondone': '&onDone',
'on-optional': '&onOptional'
})
-class IoControllerComponent implements ScopeAware {}
+class IoControllerComponent implements ScopeAware {}
+>>> (indent 4)
+ main() {
+ expect(matcher.match(
+ CssSelector.parse("someOtherTag.someOtherClass[someOtherAttr]")[
+ 0],
+ selectableCollector))
+ .toEqual(false);
+ }
+<<<
+ main() {
+ expect(matcher.match(
+ CssSelector
+ .parse("someOtherTag.someOtherClass[someOtherAttr]")[0],
+ selectableCollector))
+ .toEqual(false);
+ }
« no previous file with comments | « lib/src/source_visitor.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698