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

Side by Side Diff: pkg/analysis_services/lib/constants.dart

Issue 419833004: Send 'server.error' notification in case of an exception during performing an operation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | « pkg/analysis_server/lib/src/protocol.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) 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 services.constants; 5 library services.constants;
6 6
7 // 7 //
8 // Property names 8 // Property names
9 // 9 //
10 const String ADDED = 'added'; 10 const String ADDED = 'added';
11 const String CHILDREN = 'children'; 11 const String CHILDREN = 'children';
12 const String CLASS_ELEMENT = 'classElement'; 12 const String CLASS_ELEMENT = 'classElement';
13 const String COMPLETION = 'completion'; 13 const String COMPLETION = 'completion';
14 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; 14 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName';
15 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; 15 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath';
16 const String CONTENT = 'content'; 16 const String CONTENT = 'content';
17 const String CORRECTION = 'correction'; 17 const String CORRECTION = 'correction';
18 const String DART_DOC = 'dartdoc'; 18 const String DART_DOC = 'dartdoc';
19 const String DEFAULT = 'default'; 19 const String DEFAULT = 'default';
20 const String DISPLAY_NAME = 'displayName'; 20 const String DISPLAY_NAME = 'displayName';
21 const String EDITS = 'edits'; 21 const String EDITS = 'edits';
22 const String ELEMENT = 'element'; 22 const String ELEMENT = 'element';
23 const String ELEMENT_DESCRIPTION = 'elementDescription'; 23 const String ELEMENT_DESCRIPTION = 'elementDescription';
24 const String ELEMENT_KIND = 'elementKind'; 24 const String ELEMENT_KIND = 'elementKind';
25 const String EXCLUDED = 'excluded'; 25 const String EXCLUDED = 'excluded';
26 const String ERROR = 'error'; 26 const String ERROR = 'error';
27 const String ERRORS = 'errors'; 27 const String ERRORS = 'errors';
28 const String FATAL = 'fatal';
28 const String FILE = 'file'; 29 const String FILE = 'file';
29 const String FILES = 'files'; 30 const String FILES = 'files';
30 const String FIXES = 'fixes'; 31 const String FIXES = 'fixes';
31 const String FLAGS = 'flags'; 32 const String FLAGS = 'flags';
32 const String HIERARCHY = 'hierarchy'; 33 const String HIERARCHY = 'hierarchy';
33 const String HOVERS = 'hovers'; 34 const String HOVERS = 'hovers';
34 const String ID = 'id'; 35 const String ID = 'id';
35 const String INCLUDE_POTENTIAL = 'includePotential'; 36 const String INCLUDE_POTENTIAL = 'includePotential';
36 const String INCLUDED = 'included'; 37 const String INCLUDED = 'included';
37 const String INTERFACE_ELEMENTS = 'interfaceElements'; 38 const String INTERFACE_ELEMENTS = 'interfaceElements';
(...skipping 28 matching lines...) Expand all
66 const String REFACTORINGS = 'refactorings'; 67 const String REFACTORINGS = 'refactorings';
67 const String REGIONS = 'regions'; 68 const String REGIONS = 'regions';
68 const String RELEVANCE = 'relevance'; 69 const String RELEVANCE = 'relevance';
69 const String REMOVED = 'removed'; 70 const String REMOVED = 'removed';
70 const String REPLACEMENT = 'relacement'; 71 const String REPLACEMENT = 'relacement';
71 const String RETURN_TYPE = 'returnType'; 72 const String RETURN_TYPE = 'returnType';
72 const String RESULTS = 'results'; 73 const String RESULTS = 'results';
73 const String SEVERITY = 'severity'; 74 const String SEVERITY = 'severity';
74 const String SELECTION_LENGTH = 'selectionLength'; 75 const String SELECTION_LENGTH = 'selectionLength';
75 const String SELECTION_OFFSET = 'selectionOffset'; 76 const String SELECTION_OFFSET = 'selectionOffset';
77 const String STACK_TRACE = 'stackTrace';
76 const String START_COLUMN = 'startColumn'; 78 const String START_COLUMN = 'startColumn';
77 const String START_LINE = 'startLine'; 79 const String START_LINE = 'startLine';
78 const String STATIC_TYPE = 'staticType'; 80 const String STATIC_TYPE = 'staticType';
79 const String SUBCLASSES = 'subclasses'; 81 const String SUBCLASSES = 'subclasses';
80 const String SUBSCRIPTIONS = 'subscriptions'; 82 const String SUBSCRIPTIONS = 'subscriptions';
81 const String SUPERCLASS = 'superclass'; 83 const String SUPERCLASS = 'superclass';
82 const String SUPER_CLASS_ELEMENT = 'superclassElement'; 84 const String SUPER_CLASS_ELEMENT = 'superclassElement';
83 const String TARGETS = 'targets'; 85 const String TARGETS = 'targets';
84 const String TYPE = 'type'; 86 const String TYPE = 'type';
85 const String VERSION = 'version'; 87 const String VERSION = 'version';
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/protocol.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698