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

Side by Side Diff: pkg/analysis_server/test/stress/replay/operation.dart

Issue 1465013002: general completion contributor cleanup (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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 unified diff | Download patch
« no previous file with comments | « pkg/analysis_server/test/domain_completion_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 /** 5 /**
6 * Operations to be performed during the simulation. 6 * Operations to be performed during the simulation.
7 */ 7 */
8 library analysis_server.test.stress.replay.replay; 8 library analysis_server.test.stress.replay.replay;
9 9
10 import 'package:analysis_server/plugin/protocol/protocol.dart';
11
12 import '../utilities/server.dart'; 10 import '../utilities/server.dart';
13 11
14 /** 12 /**
15 * An operation that will send an 'analysis.updateContent' request. 13 * An operation that will send an 'analysis.updateContent' request.
16 */ 14 */
17 class AnalysisUpdateContent extends ServerOperation { 15 class AnalysisUpdateContent extends ServerOperation {
18 /** 16 /**
19 * The path of the file whose content is being updated. 17 * The path of the file whose content is being updated.
20 */ 18 */
21 String filePath; 19 String filePath;
(...skipping 27 matching lines...) Expand all
49 47
50 /** 48 /**
51 * An operation to be performed during the simulation. 49 * An operation to be performed during the simulation.
52 */ 50 */
53 abstract class ServerOperation { 51 abstract class ServerOperation {
54 /** 52 /**
55 * Perform this operation by communicating with the given [server]. 53 * Perform this operation by communicating with the given [server].
56 */ 54 */
57 void perform(Server server); 55 void perform(Server server);
58 } 56 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/domain_completion_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698