| 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);
|
|
|