| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 | 65 |
| 66 #define REUSABLE_HANDLE_LIST(V) \ | 66 #define REUSABLE_HANDLE_LIST(V) \ |
| 67 V(Object) \ | 67 V(Object) \ |
| 68 V(Array) \ | 68 V(Array) \ |
| 69 V(String) \ | 69 V(String) \ |
| 70 V(Instance) \ | 70 V(Instance) \ |
| 71 V(Function) \ | 71 V(Function) \ |
| 72 V(Field) \ | 72 V(Field) \ |
| 73 V(Class) \ | 73 V(Class) \ |
| 74 V(AbstractType) \ |
| 74 V(TypeParameter) \ | 75 V(TypeParameter) \ |
| 75 V(TypeArguments) \ | 76 V(TypeArguments) \ |
| 76 | 77 |
| 77 | 78 |
| 78 class IsolateVisitor { | 79 class IsolateVisitor { |
| 79 public: | 80 public: |
| 80 IsolateVisitor() {} | 81 IsolateVisitor() {} |
| 81 virtual ~IsolateVisitor() {} | 82 virtual ~IsolateVisitor() {} |
| 82 | 83 |
| 83 virtual void VisitIsolate(Isolate* isolate) = 0; | 84 virtual void VisitIsolate(Isolate* isolate) = 0; |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 char* script_url_; | 624 char* script_url_; |
| 624 char* library_url_; | 625 char* library_url_; |
| 625 char* class_name_; | 626 char* class_name_; |
| 626 char* function_name_; | 627 char* function_name_; |
| 627 char* exception_callback_name_; | 628 char* exception_callback_name_; |
| 628 }; | 629 }; |
| 629 | 630 |
| 630 } // namespace dart | 631 } // namespace dart |
| 631 | 632 |
| 632 #endif // VM_ISOLATE_H_ | 633 #endif // VM_ISOLATE_H_ |
| OLD | NEW |