mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
9 lines
268 B
Dart
9 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);
|
|
}
|