OLD | NEW |
---|---|
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #include "vm/isolate.h" | |
6 | 5 |
7 #include "include/dart_api.h" | 6 #include "include/dart_api.h" |
8 | 7 #include "platform/assert.h" |
9 #include "vm/assert.h" | |
10 #include "vm/bigint_store.h" | 8 #include "vm/bigint_store.h" |
11 #include "vm/code_index_table.h" | 9 #include "vm/code_index_table.h" |
12 #include "vm/compiler_stats.h" | 10 #include "vm/compiler_stats.h" |
13 #include "vm/dart_api_state.h" | 11 #include "vm/dart_api_state.h" |
14 #include "vm/dart_entry.h" | 12 #include "vm/dart_entry.h" |
15 #include "vm/debugger.h" | 13 #include "vm/debugger.h" |
16 #include "vm/debuginfo.h" | 14 #include "vm/debuginfo.h" |
17 #include "vm/heap.h" | 15 #include "vm/heap.h" |
16 #include "vm/isolate.h" | |
Ivan Posva
2012/01/13 23:22:06
First.
Søren Gjesse
2012/01/16 08:58:00
Done.
| |
18 #include "vm/message_queue.h" | 17 #include "vm/message_queue.h" |
19 #include "vm/object_store.h" | 18 #include "vm/object_store.h" |
20 #include "vm/parser.h" | 19 #include "vm/parser.h" |
21 #include "vm/port.h" | 20 #include "vm/port.h" |
22 #include "vm/random.h" | 21 #include "vm/random.h" |
23 #include "vm/stack_frame.h" | 22 #include "vm/stack_frame.h" |
24 #include "vm/stub_code.h" | 23 #include "vm/stub_code.h" |
25 #include "vm/thread.h" | 24 #include "vm/thread.h" |
26 #include "vm/timer.h" | 25 #include "vm/timer.h" |
27 #include "vm/visitor.h" | 26 #include "vm/visitor.h" |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
370 } | 369 } |
371 | 370 |
372 | 371 |
373 void Isolate::VisitWeakPersistentHandles(HandleVisitor* visitor) { | 372 void Isolate::VisitWeakPersistentHandles(HandleVisitor* visitor) { |
374 if (api_state() != NULL) { | 373 if (api_state() != NULL) { |
375 api_state()->VisitWeakHandles(visitor); | 374 api_state()->VisitWeakHandles(visitor); |
376 } | 375 } |
377 } | 376 } |
378 | 377 |
379 } // namespace dart | 378 } // namespace dart |
OLD | NEW |