mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE
All private exports from 'angular2/src/core/{directives,pipes,forms}' should be replaced with 'angular2/src/common/{directives,pipes,formis}'
Closes #5153
20 lines
557 B
Dart
20 lines
557 B
Dart
library core.spies;
|
|
|
|
import 'package:angular2/common.dart';
|
|
import 'package:angular2/src/core/change_detection/change_detection.dart';
|
|
import 'package:angular2/testing_internal.dart';
|
|
|
|
@proxy
|
|
class SpyNgControl extends SpyObject implements NgControl {
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
}
|
|
|
|
@proxy
|
|
class SpyValueAccessor extends SpyObject implements ControlValueAccessor {
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
}
|
|
|
|
@proxy
|
|
class SpyChangeDetectorRef extends SpyObject implements ChangeDetectorRef {
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
}
|