Index: pkg/analyzer_plugin/tool/spec/to_html.dart |
diff --git a/pkg/analyzer_plugin/tool/spec/to_html.dart b/pkg/analyzer_plugin/tool/spec/to_html.dart |
index cf5ac44dbca6a41df8176ebc84f675e662bf9b87..e14a6a19f002a5b708e4e49ca73bd250727dec66 100644 |
--- a/pkg/analyzer_plugin/tool/spec/to_html.dart |
+++ b/pkg/analyzer_plugin/tool/spec/to_html.dart |
@@ -326,11 +326,13 @@ class ToHtmlVisitor extends HierarchicalApiVisitor |
h5(() => write("Requests")); |
element('ul', {}, () { |
for (var request in requests) { |
- element( |
- 'li', |
- {}, |
- () => link( |
- 'request_${request.longMethod}', () => write(request.method))); |
+ if (!request.experimental) { |
+ element( |
+ 'li', |
+ {}, |
+ () => link('request_${request.longMethod}', |
+ () => write(request.method))); |
+ } |
} |
}); |
} |
@@ -529,6 +531,9 @@ class ToHtmlVisitor extends HierarchicalApiVisitor |
@override |
void visitRequest(Request request) { |
+ if (request.experimental) { |
+ return; |
+ } |
dt('request', () { |
anchor('request_${request.longMethod}', () { |
write(request.longMethod); |