| Index: lib/compiler/implementation/lib/isolate_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/isolate_patch.dart b/lib/compiler/implementation/lib/isolate_patch.dart
|
| index d5a3cafee3b003a0d8629e86d015b47cf9f03e0a..553bd93f27cfd6c7a7a696bf96af11a6cea10f95 100644
|
| --- a/lib/compiler/implementation/lib/isolate_patch.dart
|
| +++ b/lib/compiler/implementation/lib/isolate_patch.dart
|
| @@ -342,7 +342,7 @@ class _EventLoop {
|
| } else {
|
| try {
|
| _runHelper();
|
| - } catch(var e, var trace) {
|
| + } catch (e, trace) {
|
| _globalState.mainManager.postMessage(_serializeMessage(
|
| {'command': 'error', 'msg': '$e\n$trace' }));
|
| }
|
| @@ -473,7 +473,7 @@ class _IsolateNatives {
|
| } else {
|
| try {
|
| _consoleLog(msg);
|
| - } catch(var e, var trace) {
|
| + } catch (e, trace) {
|
| throw new Exception(trace);
|
| }
|
| }
|
|
|