| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 | 485 |
| 486 internal::Isolate* isolate_; | 486 internal::Isolate* isolate_; |
| 487 internal::Object** prev_next_; | 487 internal::Object** prev_next_; |
| 488 internal::Object** prev_limit_; | 488 internal::Object** prev_limit_; |
| 489 | 489 |
| 490 // Allow for the active closing of HandleScopes which allows to pass a handle | 490 // Allow for the active closing of HandleScopes which allows to pass a handle |
| 491 // from the HandleScope being closed to the next top most HandleScope. | 491 // from the HandleScope being closed to the next top most HandleScope. |
| 492 bool is_closed_; | 492 bool is_closed_; |
| 493 internal::Object** RawClose(internal::Object** value); | 493 internal::Object** RawClose(internal::Object** value); |
| 494 | 494 |
| 495 bool has_isolate_lock_; |
| 496 |
| 495 friend class ImplementationUtilities; | 497 friend class ImplementationUtilities; |
| 496 }; | 498 }; |
| 497 | 499 |
| 498 | 500 |
| 499 // --- Special objects --- | 501 // --- Special objects --- |
| 500 | 502 |
| 501 | 503 |
| 502 /** | 504 /** |
| 503 * The superclass of values and API object templates. | 505 * The superclass of values and API object templates. |
| 504 */ | 506 */ |
| (...skipping 3969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4474 | 4476 |
| 4475 | 4477 |
| 4476 } // namespace v8 | 4478 } // namespace v8 |
| 4477 | 4479 |
| 4478 | 4480 |
| 4479 #undef V8EXPORT | 4481 #undef V8EXPORT |
| 4480 #undef TYPE_CHECK | 4482 #undef TYPE_CHECK |
| 4481 | 4483 |
| 4482 | 4484 |
| 4483 #endif // V8_H_ | 4485 #endif // V8_H_ |
| OLD | NEW |