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

Side by Side Diff: runtime/observatory/tests/ui/inspector.dart

Issue 1340073002: Fix static analysis warnings in Observatory (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // See inspector.txt for expected behavior. 5 // See inspector.txt for expected behavior.
6 6
7 library manual_inspector_test; 7 library manual_inspector_test;
8 8
9 import 'dart:async';
10 import 'dart:isolate'; 9 import 'dart:isolate';
11 import 'dart:mirrors'; 10 import 'dart:mirrors';
12 import 'dart:developer'; 11 import 'dart:developer';
13 import 'dart:typed_data'; 12 import 'dart:typed_data';
14 13
15 part 'inspector_part.dart'; 14 part 'inspector_part.dart';
16 15
17 var libraryField; 16 var libraryField;
18 var node; 17 var node;
19 var uninitialized = new Object(); 18 var uninitialized = new Object();
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 typed = new Typed(); 241 typed = new Typed();
243 node = new Node(); 242 node = new Node();
244 node.main(); 243 node.main();
245 } 244 }
246 245
247 class C { 246 class C {
248 static doPrint() { 247 static doPrint() {
249 print("Original"); 248 print("Original");
250 } 249 }
251 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698