| 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 184f3112f8b09019f793ef61d6f33ce8d0deab6d..7f90eec36b764663ee6d2e0025eae95bbce902ea 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
|
| @@ -10,8 +10,8 @@ import 'package:unittest/unittest.dart';
|
|
|
| import 'service_test_common.dart';
|
|
|
| -const int LINE_A = 30;
|
| -const int LINE_B = 34;
|
| +const int LINE_A = 29;
|
| +const int LINE_B = 33;
|
|
|
| foo(param) {
|
| return param;
|
| @@ -21,17 +21,16 @@ 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 = [
|
| @@ -51,6 +50,7 @@ var tests = [
|
| expect(param['value'].valueAsString, equals("in-scope"));
|
| },
|
| resumeIsolate,
|
| +
|
| hasStoppedAtBreakpoint,
|
| stoppedAtLine(LINE_B),
|
| (isolate) => isolate.stepInto(),
|
|
|