| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 ExceptionScope() : | 555 ExceptionScope() : |
| 556 // Scope currently can only be used for regular exceptions, not | 556 // Scope currently can only be used for regular exceptions, not |
| 557 // failures like OOM or termination exception. | 557 // failures like OOM or termination exception. |
| 558 pending_exception_(Top::pending_exception()->ToObjectUnchecked()), | 558 pending_exception_(Top::pending_exception()->ToObjectUnchecked()), |
| 559 external_caught_exception_(Top::external_caught_exception()), | 559 external_caught_exception_(Top::external_caught_exception()), |
| 560 catcher_(Top::catcher()) | 560 catcher_(Top::catcher()) |
| 561 { } | 561 { } |
| 562 | 562 |
| 563 ~ExceptionScope() { | 563 ~ExceptionScope() { |
| 564 Top::set_catcher(catcher_); | 564 Top::set_catcher(catcher_); |
| 565 Top::set_external_caught_exception(external_caught_exception); | 565 Top::set_external_caught_exception(external_caught_exception_); |
| 566 Top::set_pending_exception(*pending_exception_); | 566 Top::set_pending_exception(*pending_exception_); |
| 567 } | 567 } |
| 568 | 568 |
| 569 private: | 569 private: |
| 570 Handle<Object> pending_exception_; | 570 Handle<Object> pending_exception_; |
| 571 bool external_caught_exception_; | 571 bool external_caught_exception_; |
| 572 v8::TryCatch* catcher_; | 572 v8::TryCatch* catcher_; |
| 573 }; | 573 }; |
| 574 }; | 574 }; |
| 575 | 575 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 static void Unlock() { Top::break_access_->Unlock(); } | 645 static void Unlock() { Top::break_access_->Unlock(); } |
| 646 | 646 |
| 647 static bool TryLock() { | 647 static bool TryLock() { |
| 648 return Top::break_access_->TryLock(); | 648 return Top::break_access_->TryLock(); |
| 649 } | 649 } |
| 650 }; | 650 }; |
| 651 | 651 |
| 652 } } // namespace v8::internal | 652 } } // namespace v8::internal |
| 653 | 653 |
| 654 #endif // V8_TOP_H_ | 654 #endif // V8_TOP_H_ |
| OLD | NEW |