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

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

Issue 184653003: Support displaying of types in the observatory (back-end only for now): (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/isolate.cc » ('j') | runtime/vm/isolate.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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/isolate.cc » ('j') | runtime/vm/isolate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698