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

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

Issue 1419793004: Doc generator tweak to skip experimental domains. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Master merge. Created 5 years, 1 month 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 | « no previous file | pkg/analysis_server/tool/spec/from_html.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/tool/spec/api.dart
diff --git a/pkg/analysis_server/tool/spec/api.dart b/pkg/analysis_server/tool/spec/api.dart
index a558f17f4ab8e0887fc715f79cec97268b36c99e..3fd9d820e9994ca0a14993faf41e805b57fa0962 100644
--- a/pkg/analysis_server/tool/spec/api.dart
+++ b/pkg/analysis_server/tool/spec/api.dart
@@ -60,10 +60,12 @@ abstract class ApiVisitor<T> {
*/
class Domain extends ApiNode {
final String name;
+ final bool experimental;
final List<Request> requests;
final List<Notification> notifications;
- Domain(this.name, this.requests, this.notifications, dom.Element html)
+ Domain(this.name, this.experimental, this.requests, this.notifications,
+ dom.Element html)
: super(html);
}
« no previous file with comments | « no previous file | pkg/analysis_server/tool/spec/from_html.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698