e19b31db29
Remove trivial implementations in many spy objects which just calls the parent's `noSuchMethod`. Closes #6410 Closes #6491
12 lines
326 B
Dart
12 lines
326 B
Dart
library compiler.spies;
|
|
|
|
import 'package:angular2/src/compiler/xhr.dart';
|
|
import 'package:angular2/testing_internal.dart';
|
|
import 'package:angular2/src/compiler/template_compiler.dart';
|
|
|
|
@proxy
|
|
class SpyXHR extends SpyObject implements XHR {}
|
|
|
|
@proxy
|
|
class SpyTemplateCompiler extends SpyObject implements TemplateCompiler {}
|