Formatting
This commit is contained in:
parent
bcee87949a
commit
3ec5749548
5 changed files with 4 additions and 8 deletions
|
@ -1,3 +1,3 @@
|
||||||
export 'src/container.dart';
|
export 'src/container.dart';
|
||||||
export 'src/exception.dart';
|
export 'src/exception.dart';
|
||||||
export 'src/reflector.dart';
|
export 'src/reflector.dart';
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export 'src/mirrors/mirrors.dart';
|
export 'src/mirrors/mirrors.dart';
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export 'reflector.dart';
|
export 'reflector.dart';
|
||||||
|
|
|
@ -150,8 +150,6 @@ class _ReflectedClassMirror extends ReflectedClass {
|
||||||
bool operator ==(other) {
|
bool operator ==(other) {
|
||||||
return other is _ReflectedClassMirror && other.mirror == mirror;
|
return other is _ReflectedClassMirror && other.mirror == mirror;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class _ReflectedDeclarationMirror extends ReflectedDeclaration {
|
class _ReflectedDeclarationMirror extends ReflectedDeclaration {
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
import 'package:angel_container/angel_container.dart';
|
import 'package:angel_container/angel_container.dart';
|
||||||
import 'package:test/test.dart';
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
void returnVoidFromAFunction(int x) {
|
void returnVoidFromAFunction(int x) {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void testReflector(Reflector reflector) {
|
void testReflector(Reflector reflector) {
|
||||||
var blaziken = new Pokemon('Blaziken', PokemonType.fire);
|
var blaziken = new Pokemon('Blaziken', PokemonType.fire);
|
||||||
|
|
Loading…
Reference in a new issue