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

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

Issue 335123008: Implement analysis.updateOptions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 const String OPTIONS = 'options'; 103 const String OPTIONS = 'options';
104 const String OUTLINE = 'outline'; 104 const String OUTLINE = 'outline';
105 const String PARAMETERS = 'parameters'; 105 const String PARAMETERS = 'parameters';
106 const String PATTERN = 'pattern'; 106 const String PATTERN = 'pattern';
107 const String REFACTORINGS = 'refactorings'; 107 const String REFACTORINGS = 'refactorings';
108 const String REGIONS = 'regions'; 108 const String REGIONS = 'regions';
109 const String REMOVED = 'removed'; 109 const String REMOVED = 'removed';
110 const String RETURN_TYPE = 'returnType'; 110 const String RETURN_TYPE = 'returnType';
111 const String SUBSCRIPTIONS = 'subscriptions'; 111 const String SUBSCRIPTIONS = 'subscriptions';
112 const String VERSION = 'version'; 112 const String VERSION = 'version';
113
114 //
115 // Analysis option names
116 //
117 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean
118 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean
119 const String ENABLE_ASYNC = 'enableAsync'; // boolean
120 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean
121 const String ENABLE_ENUMS = 'enableEnums'; // boolean
122 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean
123 const String GENERATE_HINTS = 'generateHints'; // boolean
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/lib/src/domain_analysis.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698