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

Unified Diff: pkg/analysis_server/test/services/completion/invocation_computer_test.dart

Issue 635043002: show only type names in is expression RHS (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
Index: pkg/analysis_server/test/services/completion/invocation_computer_test.dart
diff --git a/pkg/analysis_server/test/services/completion/invocation_computer_test.dart b/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
index 7aac5aceee328256ae3ed914e06985bb6f17e5aa..48f2f8470bac2f95e1be4b85600e450b04df9f04 100644
--- a/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
+++ b/pkg/analysis_server/test/services/completion/invocation_computer_test.dart
@@ -59,19 +59,6 @@ class InvocationComputerTest extends AbstractSelectorSuggestionTest {
});
}
- test_IsExpression() {
- // SimpleIdentifier TypeName IsExpression IfStatement
- addSource('/testB.dart', '''
- lib B;
- class X {X.c(); X._d(); z() {}}''');
- addTestSource('''
- import "/testB.dart";
- main() {var x; if (x is ^) { }}''');
- return computeFull().then((_) {
- assertNoSuggestions();
- });
- }
-
test_PrefixedIdentifier_field() {
// SimpleIdentifier PrefixedIdentifier ExpressionStatement
addTestSource('''

Powered by Google App Engine
This is Rietveld 408576698