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

Unified Diff: pkg/analysis_server/test/search/type_hierarchy_test.dart

Issue 2233633003: Convert to async/await parts that cause strong mode warnings. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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
Index: pkg/analysis_server/test/search/type_hierarchy_test.dart
diff --git a/pkg/analysis_server/test/search/type_hierarchy_test.dart b/pkg/analysis_server/test/search/type_hierarchy_test.dart
index 6f9c2736efb97fa622e2d2a77ab7fc7032b6f130..0dfc89298d11c9bb36c0c5493518790b574d905a 100644
--- a/pkg/analysis_server/test/search/type_hierarchy_test.dart
+++ b/pkg/analysis_server/test/search/type_hierarchy_test.dart
@@ -142,27 +142,27 @@ class CCC extends BBB implements AAA {}
{
'classElement': {
'kind': 'CLASS',
- 'name': 'CCC',
+ 'name': 'BBB',
'location': anything,
'flags': 0
},
'superclass': 0,
'interfaces': [],
'mixins': [],
- 'subclasses': []
+ 'subclasses': [3]
},
{
'classElement': {
'kind': 'CLASS',
- 'name': 'BBB',
+ 'name': 'CCC',
'location': anything,
'flags': 0
},
'superclass': 0,
'interfaces': [],
'mixins': [],
- 'subclasses': [2]
- }
+ 'subclasses': []
+ },
]);
}

Powered by Google App Engine
This is Rietveld 408576698