Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
fix(parser): Remove another e.stacktrace
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdeboer committed Jul 31, 2013
1 parent adc953d commit 4932b3f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,16 +171,10 @@ getterChild(value, childKey) {
MethodMirror methodMirror = instanceMirror.type.members[curSym];
return [true, _relaxFnArgs(([a0, a1, a2, a3, a4, a5]) {
var args = stripTrailingNulls([a0, a1, a2, a3, a4, a5]);
try {
return instanceMirror.invoke(curSym, args).reflectee;
} catch (e) {
throw "$e \n\n${e.stacktrace}";
}
return instanceMirror.invoke(curSym, args).reflectee;
})];
}
return [false, null];
} catch (e) {
throw;
}
}

Expand Down

0 comments on commit 4932b3f

Please sign in to comment.