fix(dart/transform): Remove malfunctioning zone error handler

Remove `onError` zone callback which is consuming exceptions thrown by
the `Transformer`s and can cause `pub` to become unresponsive.

Closes #3368
This commit is contained in:
Tim Blasi
2015-07-30 00:07:19 +00:00
parent 7b834e02ec
commit 68a581a04c
9 changed files with 19 additions and 25 deletions
@@ -53,6 +53,6 @@ class DirectiveProcessor extends Transformer {
transform.addOutput(new Asset.fromString(ngAliasesId,
new JsonEncoder.withIndent(" ").convert(ngMeta.toJson())));
}
}, errorMessage: 'Processing ng directives failed.');
});
}
}