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

Unified Diff: pkg/analyzer/test/generated/test_support.dart

Issue 681833003: Remove any unnecessary parens around expressions in interpolations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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/analyzer/test/generated/resolver_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/test_support.dart
diff --git a/pkg/analyzer/test/generated/test_support.dart b/pkg/analyzer/test/generated/test_support.dart
index 58064cf7ee9cc1f0989b053802765b1402dba81b..474fe5567f7918bb6ca81c0f0367635ac2bea2cc 100644
--- a/pkg/analyzer/test/generated/test_support.dart
+++ b/pkg/analyzer/test/generated/test_support.dart
@@ -321,7 +321,7 @@ class EngineTestCase extends JUnitTestCase {
Type expectedClass, Object object) {
if (!predicate(object)) {
JUnitTestCase.fail(
- "Expected instance of $expectedClass, found ${(object == null ? "null" : object.runtimeType)}");
+ "Expected instance of $expectedClass, found ${object == null ? "null" : object.runtimeType}");
}
return object;
}
« no previous file with comments | « pkg/analyzer/test/generated/resolver_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698