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

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

Issue 1310593004: Remove unneeded test (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/incremental_resolver_test.dart
diff --git a/pkg/analyzer/test/generated/incremental_resolver_test.dart b/pkg/analyzer/test/generated/incremental_resolver_test.dart
index ccb5af4ce0e7d091999c58d4bbc1a75d671c965c..a08ede73fdfbb34980e10984346cb78f5b00521e 100644
--- a/pkg/analyzer/test/generated/incremental_resolver_test.dart
+++ b/pkg/analyzer/test/generated/incremental_resolver_test.dart
@@ -2346,41 +2346,6 @@ class A {
''');
}
- void test_true_functionExpression() {
- _assertMatches(r'''
-import 'dart:async';
-
-class A {
- Future<int> mmm() async {
- return 42;
- }
-
- a() {
- mmm().then((p1) {
- return p1.toString();
- }).then((p2) {
- print(p2);
- });
- }
-}
-''', r'''import 'dart:async';
-
-class A {
- Future<int> mmm() async {
- return 42;
- }
-
- a() {
- mmm().then((int p1) {
- return p1.toString();
- }).then((String p2) {
- print(p2);
- });
- }
-}
-''');
- }
-
void test_true_functionTypeAlias_list_reorder() {
_assertMatches(
r'''
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698