10 lines
268 B
Dart
10 lines
268 B
Dart
|
library pipes.spies;
|
||
|
|
||
|
import 'package:angular2/src/core/change_detection/change_detection.dart';
|
||
|
import 'package:angular2/test_lib.dart';
|
||
|
|
||
|
@proxy
|
||
|
class SpyChangeDetectorRef extends SpyObject implements ChangeDetectorRef {
|
||
|
noSuchMethod(m) => super.noSuchMethod(m);
|
||
|
}
|