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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/nav_bar.dart

Issue 348043003: Observatory: Fix bug in field overview of a class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add deployed/ Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/elements/class_view.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library nav_bar_element; 5 library nav_bar_element;
6 6
7 import 'dart:html'; 7 import 'dart:html';
8 import 'observatory_element.dart'; 8 import 'observatory_element.dart';
9 import 'package:observatory/app.dart'; 9 import 'package:observatory/app.dart';
10 import 'package:observatory/service.dart'; 10 import 'package:observatory/service.dart';
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 @CustomTag('library-nav-menu') 104 @CustomTag('library-nav-menu')
105 class LibraryNavMenuElement extends ObservatoryElement { 105 class LibraryNavMenuElement extends ObservatoryElement {
106 @published Library library; 106 @published Library library;
107 @published bool last = false; 107 @published bool last = false;
108 108
109 LibraryNavMenuElement.created() : super.created(); 109 LibraryNavMenuElement.created() : super.created();
110 } 110 }
111 111
112 @CustomTag('class-nav-menu') 112 @CustomTag('class-nav-menu')
113 class ClassNavMenuElement extends ObservatoryElement { 113 class ClassNavMenuElement extends ObservatoryElement {
114 @published ServiceMap cls; 114 @published Class cls;
115 @published bool last = false; 115 @published bool last = false;
116 116
117 ClassNavMenuElement.created() : super.created(); 117 ClassNavMenuElement.created() : super.created();
118 } 118 }
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/elements/class_view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698