2e4ffe6808
This CL adds a test that tests if we can put a breakpoint in a mixin and actually break on it even if the function has already been compiled. Change-Id: I3cd180b48f9e01c98eebc778995a62974be288a4 Reviewed-on: https://dart-review.googlesource.com/10280 Reviewed-by: Siva Chandra <sivachandra@google.com> Commit-Queue: Jens Johansen <jensj@google.com>
11 lines
177 B
Dart
11 lines
177 B
Dart
library mixin_step_class2;
|
|
|
|
import 'mixin_break_mixin_class.dart';
|
|
|
|
class Hello2 extends Object with HelloMixin {
|
|
void speak() {
|
|
sayHello();
|
|
print(" - Hello2");
|
|
}
|
|
}
|