Skip to content

Commit

Permalink
Re-generate files from input spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTup committed Aug 6, 2017
1 parent 5199f87 commit cf0ef0c
Show file tree
Hide file tree
Showing 8 changed files with 840 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/analysis_server/doc/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,7 @@ <h2 class="domain"><a name="domain_analysis">analysis domain</a></h2>






<h3>Requests</h3><dl><dt class="request"><a name="request_analysis.getErrors">analysis.getErrors</a></dt><dd><div class="box"><pre>request: {
Expand Down Expand Up @@ -2530,6 +2531,8 @@ <h2 class="domain"><a name="types">Types</a></h2>








Expand Down
11 changes: 11 additions & 0 deletions pkg/analysis_server/lib/protocol/protocol_constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ const String ANALYSIS_REQUEST_GET_NAVIGATION_OFFSET = 'offset';
const String ANALYSIS_REQUEST_GET_REACHABLE_SOURCES =
'analysis.getReachableSources';
const String ANALYSIS_REQUEST_GET_REACHABLE_SOURCES_FILE = 'file';
const String ANALYSIS_REQUEST_GET_SIGNATURE_INFORMATION =
'analysis.getSignatureInformation';
const String ANALYSIS_REQUEST_GET_SIGNATURE_INFORMATION_FILE = 'file';
const String ANALYSIS_REQUEST_GET_SIGNATURE_INFORMATION_OFFSET = 'offset';
const String ANALYSIS_REQUEST_REANALYZE = 'analysis.reanalyze';
const String ANALYSIS_REQUEST_REANALYZE_ROOTS = 'roots';
const String ANALYSIS_REQUEST_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots';
Expand Down Expand Up @@ -91,6 +95,13 @@ const String ANALYSIS_RESPONSE_GET_NAVIGATION_FILES = 'files';
const String ANALYSIS_RESPONSE_GET_NAVIGATION_REGIONS = 'regions';
const String ANALYSIS_RESPONSE_GET_NAVIGATION_TARGETS = 'targets';
const String ANALYSIS_RESPONSE_GET_REACHABLE_SOURCES_SOURCES = 'sources';
const String ANALYSIS_RESPONSE_GET_SIGNATURE_INFORMATION_DARTDOC = 'dartdoc';
const String ANALYSIS_RESPONSE_GET_SIGNATURE_INFORMATION_NAME = 'name';
const String ANALYSIS_RESPONSE_GET_SIGNATURE_INFORMATION_PARAMETERS =
'parameters';
const String
ANALYSIS_RESPONSE_GET_SIGNATURE_INFORMATION_SELECTED_PARAMETER_INDEX =
'selectedParameterIndex';
const String ANALYTICS_REQUEST_ENABLE = 'analytics.enable';
const String ANALYTICS_REQUEST_ENABLE_VALUE = 'value';
const String ANALYTICS_REQUEST_IS_ENABLED = 'analytics.isEnabled';
Expand Down

0 comments on commit cf0ef0c

Please sign in to comment.