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

Unified Diff: runtime/observatory/lib/src/repositories/flag.dart

Issue 2213613002: Converted observatory flag-list element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Added tests Created 4 years, 4 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
Index: runtime/observatory/lib/src/repositories/flag.dart
diff --git a/runtime/observatory/lib/src/repositories/flag.dart b/runtime/observatory/lib/src/repositories/flag.dart
new file mode 100644
index 0000000000000000000000000000000000000000..9a644e60323a209ec502c7ba35f60f5c010f2f13
--- /dev/null
+++ b/runtime/observatory/lib/src/repositories/flag.dart
@@ -0,0 +1,34 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file
+
+part of repositories;
+
+class Flag implements M.Flag {
+ final String name;
+ final String comment;
+ final bool modified;
+ final String valueAsString;
+ Flag(this.name, this.comment, this.modified, this.valueAsString) {
+ assert(name != null);
+ assert(comment != null);
+ assert(modified != null);
+ }
+}
+
+class FlagsRepository implements M.FlagsRepository {
+ Future<Iterable<Flag>> list(M.VM vm) async{
+ if (vm is S.VM) {
+ List<Map> flags = ((await vm.getFlagList()) as S.ServiceMap)['flags'];
+ return flags.map(_toFlag);
+ }
+ return const [];
+ }
+
+ static _toFlag(Map map){
+ return new Flag(map['name'],
+ map['comment'],
+ map['modified'],
+ map['valueAsString']);
+ }
+}
« no previous file with comments | « runtime/observatory/lib/src/models/repositories/flag.dart ('k') | runtime/observatory/observatory_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698