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

Unified Diff: runtime/observatory/lib/src/elements/debugger.dart

Issue 1273373003: Don't analyze some tests that depend on bleeding edge SDK support (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « runtime/observatory/.analysis_options ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/debugger.dart
diff --git a/runtime/observatory/lib/src/elements/debugger.dart b/runtime/observatory/lib/src/elements/debugger.dart
index 8a98d1b7512b6a435939da552e2b8046a83af6b6..35a5895db4fe466356a04d75f97657720275c4a1 100644
--- a/runtime/observatory/lib/src/elements/debugger.dart
+++ b/runtime/observatory/lib/src/elements/debugger.dart
@@ -927,7 +927,7 @@ class IsolateCommand extends DebuggerCommand {
Future<List<String>> complete(List<String> args) {
if (args.length != 1) {
return new Future.value([args.join('')]);
- }
+ }
var result = [];
for (var isolate in debugger.vm.isolates) {
var str = isolate.number.toString();
@@ -2237,7 +2237,7 @@ class DebuggerInputElement extends ObservatoryElement {
e.preventDefault();
try {
debugger.upFrame(1);
- } on RangeError catch (e) {
+ } on RangeError catch (_) {
// Ignore.
}
busy = false;
@@ -2247,7 +2247,7 @@ class DebuggerInputElement extends ObservatoryElement {
e.preventDefault();
try {
debugger.downFrame(1);
- } on RangeError catch (e) {
+ } on RangeError catch (_) {
// Ignore.
}
busy = false;
« no previous file with comments | « runtime/observatory/.analysis_options ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698