| // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| import 'test_helper.dart'; |
| import 'service_test_common.dart'; |
| |
| const int LINE = 21; |
| const String file = "next_through_operator_bracket_test.dart"; |
| |
| class Class2 { |
| operator [](index) => index; |
| |
| code() { |
| this[42]; |
| return this[42]; |
| } |
| } |
| |
| code() { |
| Class2 c = new Class2(); |
| c[42]; |
| c.code(); |
| } |
| |
| List<String> stops = []; |
| List<String> expected = [ |
| "$file:${LINE+0}:18", // after 'new', on 'Class2' |
| "$file:${LINE+1}:4", // on '[' |
| "$file:${LINE+2}:5", // on 'code' |
| "$file:${LINE+3}:1" // on ending '}' |
| ]; |
| |
| var tests = <IsolateTest>[ |
| hasPausedAtStart, |
| setBreakpointAtLine(LINE), |
| runStepThroughProgramRecordingStops(stops), |
| checkRecordedStops(stops, expected) |
| ]; |
| |
| main(args) { |
| runIsolateTestsSynchronous(args, tests, |
| testeeConcurrent: code, pause_on_start: true, pause_on_exit: true); |
| } |