Formatting
This commit is contained in:
parent
13ad8a6d2e
commit
a2d6a633aa
2 changed files with 9 additions and 15 deletions
|
@ -79,9 +79,7 @@ class _ReflectedTypeMirror extends ReflectedType {
|
||||||
_ReflectedTypeMirror(this.mirror)
|
_ReflectedTypeMirror(this.mirror)
|
||||||
: super(
|
: super(
|
||||||
dart.MirrorSystem.getName(mirror.simpleName),
|
dart.MirrorSystem.getName(mirror.simpleName),
|
||||||
mirror.typeVariables
|
mirror.typeVariables.map((m) => _ReflectedTypeParameter(m)).toList(),
|
||||||
.map((m) => _ReflectedTypeParameter(m))
|
|
||||||
.toList(),
|
|
||||||
mirror.reflectedType,
|
mirror.reflectedType,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -111,9 +109,7 @@ class _ReflectedClassMirror extends ReflectedClass {
|
||||||
_ReflectedClassMirror(this.mirror)
|
_ReflectedClassMirror(this.mirror)
|
||||||
: super(
|
: super(
|
||||||
dart.MirrorSystem.getName(mirror.simpleName),
|
dart.MirrorSystem.getName(mirror.simpleName),
|
||||||
mirror.typeVariables
|
mirror.typeVariables.map((m) => _ReflectedTypeParameter(m)).toList(),
|
||||||
.map((m) => _ReflectedTypeParameter(m))
|
|
||||||
.toList(),
|
|
||||||
[],
|
[],
|
||||||
[],
|
[],
|
||||||
_declarationsOf(mirror),
|
_declarationsOf(mirror),
|
||||||
|
@ -141,8 +137,8 @@ class _ReflectedClassMirror extends ReflectedClass {
|
||||||
var value = mirror.declarations[key];
|
var value = mirror.declarations[key];
|
||||||
|
|
||||||
if (value is dart.MethodMirror && !value.isConstructor) {
|
if (value is dart.MethodMirror && !value.isConstructor) {
|
||||||
out.add(_ReflectedDeclarationMirror(
|
out.add(
|
||||||
dart.MirrorSystem.getName(key), value));
|
_ReflectedDeclarationMirror(dart.MirrorSystem.getName(key), value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -245,9 +241,7 @@ class _ReflectedMethodMirror extends ReflectedFunction {
|
||||||
'This object was reflected without a ClosureMirror, and therefore cannot be directly invoked.');
|
'This object was reflected without a ClosureMirror, and therefore cannot be directly invoked.');
|
||||||
}
|
}
|
||||||
|
|
||||||
return _ReflectedInstanceMirror(closureMirror.invoke(
|
return _ReflectedInstanceMirror(closureMirror.invoke(invocation.memberName,
|
||||||
invocation.memberName,
|
invocation.positionalArguments, invocation.namedArguments));
|
||||||
invocation.positionalArguments,
|
|
||||||
invocation.namedArguments));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue