| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_ISOLATE_H_ | 5 #ifndef VM_ISOLATE_H_ |
| 6 #define VM_ISOLATE_H_ | 6 #define VM_ISOLATE_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "platform/thread.h" | 10 #include "platform/thread.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 class ObjectStore; | 41 class ObjectStore; |
| 42 class RawInstance; | 42 class RawInstance; |
| 43 class RawArray; | 43 class RawArray; |
| 44 class RawContext; | 44 class RawContext; |
| 45 class RawDouble; | 45 class RawDouble; |
| 46 class RawMint; | 46 class RawMint; |
| 47 class RawObject; | 47 class RawObject; |
| 48 class RawInteger; | 48 class RawInteger; |
| 49 class RawError; | 49 class RawError; |
| 50 class RawFloat32x4; | 50 class RawFloat32x4; |
| 51 class RawUint32x4; | 51 class RawInt32x4; |
| 52 class Simulator; | 52 class Simulator; |
| 53 class StackResource; | 53 class StackResource; |
| 54 class StackZone; | 54 class StackZone; |
| 55 class StubCode; | 55 class StubCode; |
| 56 class TypeArguments; | 56 class TypeArguments; |
| 57 class TypeParameter; | 57 class TypeParameter; |
| 58 class ObjectHistogram; | 58 class ObjectHistogram; |
| 59 class ObjectIdRing; | 59 class ObjectIdRing; |
| 60 | 60 |
| 61 | 61 |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 Isolate* isolate_; | 539 Isolate* isolate_; |
| 540 char* script_url_; | 540 char* script_url_; |
| 541 char* library_url_; | 541 char* library_url_; |
| 542 char* function_name_; | 542 char* function_name_; |
| 543 char* exception_callback_name_; | 543 char* exception_callback_name_; |
| 544 }; | 544 }; |
| 545 | 545 |
| 546 } // namespace dart | 546 } // namespace dart |
| 547 | 547 |
| 548 #endif // VM_ISOLATE_H_ | 548 #endif // VM_ISOLATE_H_ |
| OLD | NEW |