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

Side by Side Diff: pkg/analysis_server/lib/src/ide_options.dart

Issue 2765063002: Introducing `IdeOptions`. (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /// A set of options used to configure the behavior of IDE functionality.
6 abstract class IdeOptions {
7 /// Whether to generate boilerplate for lists of Flutter Widget children.
8 /// See: https://github.com/flutter/flutter-intellij/issues/463
9 bool get generateFlutterWidgetChildrenBoilerPlate;
10 }
11
12 class IdeOptionsImpl implements IdeOptions {
13 /// Initialize a newly created set of options with default values.
14 IdeOptionsImpl();
15
16 @override
17 bool generateFlutterWidgetChildrenBoilerPlate = false;
18 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/lib/src/server_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698