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

Unified Diff: pkg/analysis_server/tool/spec/to_html.dart

Issue 2911783002: Re-gen analysis server specs. (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analyzer_plugin/doc/api.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/tool/spec/to_html.dart
diff --git a/pkg/analysis_server/tool/spec/to_html.dart b/pkg/analysis_server/tool/spec/to_html.dart
index d9e01f46829b2adae800c28b43d277eaa1796f78..fa6e341bc08f68d06112647ea0e509e41b9b8784 100644
--- a/pkg/analysis_server/tool/spec/to_html.dart
+++ b/pkg/analysis_server/tool/spec/to_html.dart
@@ -353,6 +353,8 @@ class ToHtmlVisitor extends HierarchicalApiVisitor
void generateTableOfContents() {
for (var domain in api.domains.where((domain) => !domain.experimental)) {
+ if (domain.experimental) continue;
+
writeln();
p(() {
@@ -363,6 +365,8 @@ class ToHtmlVisitor extends HierarchicalApiVisitor
ul(() {
for (Request request in domain.requests) {
+ if (request.experimental) continue;
+
li(() {
link('request_${request.longMethod}', () {
write(request.longMethod);
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analyzer_plugin/doc/api.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698