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

Side by Side Diff: pkg/analysis_server/lib/src/constants.dart

Issue 402723003: first cut simple code completion results (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_completion.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) 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 library constants; 5 library constants;
6 6
7 // 7 //
8 // Server methods 8 // Server methods
9 // 9 //
10 const String SERVER_GET_VERSION = 'server.getVersion'; 10 const String SERVER_GET_VERSION = 'server.getVersion';
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 const String EDIT_GET_ASSISTS = 'edit.getAssists'; 72 const String EDIT_GET_ASSISTS = 'edit.getAssists';
73 const String EDIT_GET_FIXES = 'edit.getFixes'; 73 const String EDIT_GET_FIXES = 'edit.getFixes';
74 const String EDIT_GET_REFACTORINGS = 'edit.getRefactorings'; 74 const String EDIT_GET_REFACTORINGS = 'edit.getRefactorings';
75 const String EDIT_SET_REFACTORING_OPTIONS = 'edit.setRefactoringOptions'; 75 const String EDIT_SET_REFACTORING_OPTIONS = 'edit.setRefactoringOptions';
76 76
77 // 77 //
78 // Property names 78 // Property names
79 // 79 //
80 const String ADDED = 'added'; 80 const String ADDED = 'added';
81 const String CHILDREN = 'children'; 81 const String CHILDREN = 'children';
82 const String COMPLETION = 'completion';
82 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; 83 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName';
83 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; 84 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath';
84 const String CONTENT = 'content'; 85 const String CONTENT = 'content';
85 const String CORRECTION = 'correction'; 86 const String CORRECTION = 'correction';
86 const String DART_DOC = 'dartdoc'; 87 const String DART_DOC = 'dartdoc';
87 const String DEFAULT = 'default'; 88 const String DEFAULT = 'default';
88 const String ELEMENT = 'element'; 89 const String ELEMENT = 'element';
89 const String ELEMENT_DESCRIPTION = 'elementDescription'; 90 const String ELEMENT_DESCRIPTION = 'elementDescription';
90 const String ELEMENT_KIND = 'elementKind'; 91 const String ELEMENT_KIND = 'elementKind';
91 const String EXCLUDED = 'excluded'; 92 const String EXCLUDED = 'excluded';
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 // 140 //
140 // Analysis option names 141 // Analysis option names
141 // 142 //
142 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean 143 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean
143 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean 144 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean
144 const String ENABLE_ASYNC = 'enableAsync'; // boolean 145 const String ENABLE_ASYNC = 'enableAsync'; // boolean
145 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean 146 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean
146 const String ENABLE_ENUMS = 'enableEnums'; // boolean 147 const String ENABLE_ENUMS = 'enableEnums'; // boolean
147 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean 148 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean
148 const String GENERATE_HINTS = 'generateHints'; // boolean 149 const String GENERATE_HINTS = 'generateHints'; // boolean
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_completion.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698