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

Side by Side Diff: runtime/vm/isolate.h

Issue 186673003: Fix dartbug.com/17261 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/object.h » ('j') | runtime/vm/object.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 66
67 #define REUSABLE_HANDLE_LIST(V) \ 67 #define REUSABLE_HANDLE_LIST(V) \
68 V(Object) \ 68 V(Object) \
69 V(Array) \ 69 V(Array) \
70 V(String) \ 70 V(String) \
71 V(Instance) \ 71 V(Instance) \
72 V(Function) \ 72 V(Function) \
73 V(Field) \ 73 V(Field) \
74 V(Class) \ 74 V(Class) \
75 V(AbstractType) \
76 V(TypeParameter) \ 75 V(TypeParameter) \
77 V(TypeArguments) \ 76 V(TypeArguments) \
78 77
79 78
80 class IsolateVisitor { 79 class IsolateVisitor {
81 public: 80 public:
82 IsolateVisitor() {} 81 IsolateVisitor() {}
83 virtual ~IsolateVisitor() {} 82 virtual ~IsolateVisitor() {}
84 83
85 virtual void VisitIsolate(Isolate* isolate) = 0; 84 virtual void VisitIsolate(Isolate* isolate) = 0;
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 char* script_url_; 625 char* script_url_;
627 char* library_url_; 626 char* library_url_;
628 char* class_name_; 627 char* class_name_;
629 char* function_name_; 628 char* function_name_;
630 char* exception_callback_name_; 629 char* exception_callback_name_;
631 }; 630 };
632 631
633 } // namespace dart 632 } // namespace dart
634 633
635 #endif // VM_ISOLATE_H_ 634 #endif // VM_ISOLATE_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/object.h » ('j') | runtime/vm/object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698