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

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

Issue 342983007: Update navigation computer to include Element instead of id. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 const String OLD_LENGTH = 'oldLength'; 100 const String OLD_LENGTH = 'oldLength';
101 const String OPTIONS = 'options'; 101 const String OPTIONS = 'options';
102 const String OUTLINE = 'outline'; 102 const String OUTLINE = 'outline';
103 const String PARAMETERS = 'parameters'; 103 const String PARAMETERS = 'parameters';
104 const String PATTERN = 'pattern'; 104 const String PATTERN = 'pattern';
105 const String REFACTORINGS = 'refactorings'; 105 const String REFACTORINGS = 'refactorings';
106 const String REGIONS = 'regions'; 106 const String REGIONS = 'regions';
107 const String REMOVED = 'removed'; 107 const String REMOVED = 'removed';
108 const String RETURN_TYPE = 'returnType'; 108 const String RETURN_TYPE = 'returnType';
109 const String SUBSCRIPTIONS = 'subscriptions'; 109 const String SUBSCRIPTIONS = 'subscriptions';
110 const String TARGETS = 'targets';
110 const String TYPE = 'type'; 111 const String TYPE = 'type';
111 const String VERSION = 'version'; 112 const String VERSION = 'version';
112 113
113 // 114 //
114 // Analysis option names 115 // Analysis option names
115 // 116 //
116 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean 117 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean
117 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean 118 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean
118 const String ENABLE_ASYNC = 'enableAsync'; // boolean 119 const String ENABLE_ASYNC = 'enableAsync'; // boolean
119 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean 120 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean
120 const String ENABLE_ENUMS = 'enableEnums'; // boolean 121 const String ENABLE_ENUMS = 'enableEnums'; // boolean
121 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean 122 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean
122 const String GENERATE_HINTS = 'generateHints'; // boolean 123 const String GENERATE_HINTS = 'generateHints'; // boolean
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698