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

Side by Side Diff: pkg/analysis_server/lib/completion/completion_core.dart

Issue 1240433008: Renames to move closer to the new API (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/lib/completion/completion_dart.dart » ('j') | 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 library analysis_server.completion.completion_core; 5 library analysis_server.completion.completion_core;
6 6
7 import 'package:analysis_server/src/protocol.dart'; 7 import 'package:analysis_server/src/protocol.dart';
8 import 'package:analyzer/file_system/file_system.dart'; 8 import 'package:analyzer/file_system/file_system.dart';
9 import 'package:analyzer/src/generated/engine.dart'; 9 import 'package:analyzer/src/generated/engine.dart';
10 import 'package:analyzer/src/generated/source.dart'; 10 import 'package:analyzer/src/generated/source.dart';
(...skipping 27 matching lines...) Expand all
38 * this location. 38 * this location.
39 */ 39 */
40 //CompletionResult get previousResults; 40 //CompletionResult get previousResults;
41 41
42 /** 42 /**
43 * Return the analysis context in which the completion is being requested. 43 * Return the analysis context in which the completion is being requested.
44 */ 44 */
45 AnalysisContext get context; 45 AnalysisContext get context;
46 46
47 /** 47 /**
48 * The offset within the source at which the completion is being requested. 48 * Return the offset within the source at which the completion is being
49 * requested.
49 */ 50 */
50 int get offset; 51 int get offset;
51 52
52 /** 53 /**
53 * Return the resource provider associated with this request. 54 * Return the resource provider associated with this request.
54 */ 55 */
55 ResourceProvider get resourceProvider; 56 ResourceProvider get resourceProvider;
56 57
57 /** 58 /**
58 * Return the source in which the completion is being requested. 59 * Return the source in which the completion is being requested.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 * the replacementOffset will be the offset of the beginning of the 98 * the replacementOffset will be the offset of the beginning of the
98 * identifier. 99 * identifier.
99 */ 100 */
100 int get replacementOffset; 101 int get replacementOffset;
101 102
102 /** 103 /**
103 * Return the list of suggestions being contributed by the contributor. 104 * Return the list of suggestions being contributed by the contributor.
104 */ 105 */
105 List<CompletionSuggestion> get suggestions; 106 List<CompletionSuggestion> get suggestions;
106 } 107 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/lib/completion/completion_dart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698