| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_generated.dart'; |
| 8 import 'package:analysis_server/src/edit/edit_domain.dart'; | 9 import 'package:analysis_server/src/edit/edit_domain.dart'; |
| 9 import 'package:analysis_server/src/plugin/plugin_manager.dart'; | 10 import 'package:analysis_server/src/plugin/plugin_manager.dart'; |
| 10 import 'package:analyzer_plugin/protocol/protocol.dart' as plugin; | 11 import 'package:analyzer_plugin/protocol/protocol.dart' as plugin; |
| 11 import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin; | 12 import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin; |
| 12 import 'package:analyzer_plugin/src/protocol/protocol_internal.dart' as plugin; | 13 import 'package:analyzer_plugin/src/protocol/protocol_internal.dart' as plugin; |
| 13 import 'package:plugin/manager.dart'; | 14 import 'package:plugin/manager.dart'; |
| 14 import 'package:test/test.dart'; | 15 import 'package:test/test.dart'; |
| 15 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 16 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 16 | 17 |
| 17 import '../analysis_abstract.dart'; | 18 import '../analysis_abstract.dart'; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 if (change.message == message) { | 134 if (change.message == message) { |
| 134 String resultCode = | 135 String resultCode = |
| 135 SourceEdit.applySequence(testCode, change.edits[0].edits); | 136 SourceEdit.applySequence(testCode, change.edits[0].edits); |
| 136 expect(resultCode, expectedCode); | 137 expect(resultCode, expectedCode); |
| 137 return; | 138 return; |
| 138 } | 139 } |
| 139 } | 140 } |
| 140 fail("Expected to find |$message| in\n" + changes.join('\n')); | 141 fail("Expected to find |$message| in\n" + changes.join('\n')); |
| 141 } | 142 } |
| 142 } | 143 } |
| OLD | NEW |