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

Commit 4932b3f

Browse files
committed
fix(parser): Remove another e.stacktrace
1 parent adc953d commit 4932b3f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

lib/parser.dart

+1-7
Original file line numberDiff line numberDiff line change
@@ -171,16 +171,10 @@ getterChild(value, childKey) {
171171
MethodMirror methodMirror = instanceMirror.type.members[curSym];
172172
return [true, _relaxFnArgs(([a0, a1, a2, a3, a4, a5]) {
173173
var args = stripTrailingNulls([a0, a1, a2, a3, a4, a5]);
174-
try {
175-
return instanceMirror.invoke(curSym, args).reflectee;
176-
} catch (e) {
177-
throw "$e \n\n${e.stacktrace}";
178-
}
174+
return instanceMirror.invoke(curSym, args).reflectee;
179175
})];
180176
}
181177
return [false, null];
182-
} catch (e) {
183-
throw;
184178
}
185179
}
186180

0 commit comments

Comments
 (0)