Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012, 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 #include "platform/assert.h" | 7 #include "platform/assert.h" |
| 9 #include "vm/bigint_store.h" | 8 #include "vm/bigint_store.h" |
| 10 #include "vm/code_index_table.h" | 9 #include "vm/code_index_table.h" |
| 11 #include "vm/compiler_stats.h" | 10 #include "vm/compiler_stats.h" |
| 12 #include "vm/dart_api_state.h" | 11 #include "vm/dart_api_state.h" |
| 13 #include "vm/dart_entry.h" | 12 #include "vm/dart_entry.h" |
| 14 #include "vm/debugger.h" | 13 #include "vm/debugger.h" |
| 15 #include "vm/debuginfo.h" | 14 #include "vm/debuginfo.h" |
| 16 #include "vm/heap.h" | 15 #include "vm/heap.h" |
| 16 #include "vm/isolate.h" | |
|
Mads Ager (google)
2012/01/16 11:38:47
Undo this change.
Søren Gjesse
2012/01/16 12:55:30
Done.
| |
| 17 #include "vm/message_queue.h" | 17 #include "vm/message_queue.h" |
| 18 #include "vm/object_store.h" | 18 #include "vm/object_store.h" |
| 19 #include "vm/parser.h" | 19 #include "vm/parser.h" |
| 20 #include "vm/port.h" | 20 #include "vm/port.h" |
| 21 #include "vm/random.h" | 21 #include "vm/random.h" |
| 22 #include "vm/stack_frame.h" | 22 #include "vm/stack_frame.h" |
| 23 #include "vm/stub_code.h" | 23 #include "vm/stub_code.h" |
| 24 #include "vm/thread.h" | 24 #include "vm/thread.h" |
| 25 #include "vm/timer.h" | 25 #include "vm/timer.h" |
| 26 #include "vm/visitor.h" | 26 #include "vm/visitor.h" |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 369 } | 369 } |
| 370 | 370 |
| 371 | 371 |
| 372 void Isolate::VisitWeakPersistentHandles(HandleVisitor* visitor) { | 372 void Isolate::VisitWeakPersistentHandles(HandleVisitor* visitor) { |
| 373 if (api_state() != NULL) { | 373 if (api_state() != NULL) { |
| 374 api_state()->VisitWeakHandles(visitor); | 374 api_state()->VisitWeakHandles(visitor); |
| 375 } | 375 } |
| 376 } | 376 } |
| 377 | 377 |
| 378 } // namespace dart | 378 } // namespace dart |
| OLD | NEW |