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

Unified Diff: runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart
diff --git a/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart b/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart
index 7f90eec36b764663ee6d2e0025eae95bbce902ea..c64724223d441680ff6628abb726ae8d8f44f33b 100644
--- a/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart
+++ b/runtime/observatory/tests/service/parameters_in_scope_at_entry_test.dart
@@ -21,16 +21,17 @@ fooClosure() {
theClosureFunction(param) {
return param;
}
+
return theClosureFunction;
}
testMain() {
debugger();
- foo("in-scope"); // Line A.
+ foo("in-scope"); // Line A.
var f = fooClosure();
debugger();
- f("in-scope"); // Line B.
+ f("in-scope"); // Line B.
}
var tests = [
@@ -50,7 +51,6 @@ var tests = [
expect(param['value'].valueAsString, equals("in-scope"));
},
resumeIsolate,
-
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_B),
(isolate) => isolate.stepInto(),

Powered by Google App Engine
This is Rietveld 408576698