Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: runtime/vm/exceptions.cc

Issue 10693071: Use VM type cast and save handles. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/exceptions.h ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/exceptions.cc
===================================================================
--- runtime/vm/exceptions.cc (revision 9315)
+++ runtime/vm/exceptions.cc (working copy)
@@ -324,15 +324,12 @@
}
-void Exceptions::PropagateError(const Object& obj) {
+void Exceptions::PropagateError(const Error& error) {
ASSERT(Isolate::Current()->top_exit_frame_info() != 0);
- Error& error = Error::Handle();
- error ^= obj.raw();
if (error.IsUnhandledException()) {
// If the error object represents an unhandled exception, then
// rethrow the exception in the normal fashion.
- UnhandledException& uhe = UnhandledException::Handle();
- uhe ^= error.raw();
+ const UnhandledException& uhe = UnhandledException::Cast(error);
const Instance& exc = Instance::Handle(uhe.exception());
const Instance& stk = Instance::Handle(uhe.stacktrace());
Exceptions::ReThrow(exc, stk);
@@ -356,14 +353,10 @@
if (result.IsError()) {
// We got an error while constructing the exception object.
// Propagate the error instead of throwing the exception.
- Error& error = Error::Handle();
- error ^= result.raw();
- PropagateError(error);
+ PropagateError(Error::Cast(result));
} else {
ASSERT(result.IsInstance());
- Instance& exception = Instance::Handle();
- exception ^= result.raw();
- Throw(exception);
+ Throw(Instance::Cast(result));
}
}
« no previous file with comments | « runtime/vm/exceptions.h ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698