Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Apply dartfmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbracken committed Nov 11, 2015
1 parent 162d1bd commit cdd50de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/mirrors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ class Method /* implements Function */ {
if (i.isMethod && i.memberName == const Symbol('call')) {
if (i.namedArguments != null && i.namedArguments.isNotEmpty) {
// this will fail until named argument support is implemented
return mirror.invoke(
symbol, i.positionalArguments, i.namedArguments).reflectee;
return mirror
.invoke(symbol, i.positionalArguments, i.namedArguments)
.reflectee;
}
return mirror.invoke(symbol, i.positionalArguments).reflectee;
}
Expand Down

0 comments on commit cdd50de

Please sign in to comment.