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/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/protocol/protocol_generated.dart'; |
9 import 'package:analysis_server/src/edit/edit_domain.dart'; | 9 import 'package:analysis_server/src/edit/edit_domain.dart'; |
10 import 'package:analysis_server/src/plugin/plugin_manager.dart'; | 10 import 'package:analysis_server/src/plugin/plugin_manager.dart'; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 String message = 'From a plugin'; | 55 String message = 'From a plugin'; |
56 plugin.PrioritizedSourceChange change = new plugin.PrioritizedSourceChange( | 56 plugin.PrioritizedSourceChange change = new plugin.PrioritizedSourceChange( |
57 5, | 57 5, |
58 new SourceChange(message, edits: <SourceFileEdit>[ | 58 new SourceChange(message, edits: <SourceFileEdit>[ |
59 new SourceFileEdit('', 0, | 59 new SourceFileEdit('', 0, |
60 edits: <SourceEdit>[new SourceEdit(0, 0, 'x')]) | 60 edits: <SourceEdit>[new SourceEdit(0, 0, 'x')]) |
61 ])); | 61 ])); |
62 plugin.EditGetAssistsResult result = new plugin.EditGetAssistsResult( | 62 plugin.EditGetAssistsResult result = new plugin.EditGetAssistsResult( |
63 <plugin.PrioritizedSourceChange>[change]); | 63 <plugin.PrioritizedSourceChange>[change]); |
64 pluginManager.broadcastResults = <PluginInfo, Future<plugin.Response>>{ | 64 pluginManager.broadcastResults = <PluginInfo, Future<plugin.Response>>{ |
65 info: new Future.value(result.toResponse('-')) | 65 info: new Future.value(result.toResponse('-', 1)) |
66 }; | 66 }; |
67 | 67 |
68 addTestFile('main() {}'); | 68 addTestFile('main() {}'); |
69 await waitForTasksFinished(); | 69 await waitForTasksFinished(); |
70 await prepareAssists('in('); | 70 await prepareAssists('in('); |
71 _assertHasChange(message, 'xmain() {}'); | 71 _assertHasChange(message, 'xmain() {}'); |
72 } | 72 } |
73 | 73 |
74 test_removeTypeAnnotation() async { | 74 test_removeTypeAnnotation() async { |
75 addTestFile(''' | 75 addTestFile(''' |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 if (change.message == message) { | 134 if (change.message == message) { |
135 String resultCode = | 135 String resultCode = |
136 SourceEdit.applySequence(testCode, change.edits[0].edits); | 136 SourceEdit.applySequence(testCode, change.edits[0].edits); |
137 expect(resultCode, expectedCode); | 137 expect(resultCode, expectedCode); |
138 return; | 138 return; |
139 } | 139 } |
140 } | 140 } |
141 fail("Expected to find |$message| in\n" + changes.join('\n')); | 141 fail("Expected to find |$message| in\n" + changes.join('\n')); |
142 } | 142 } |
143 } | 143 } |
OLD | NEW |