| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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/dart.h" | 5 #include "vm/dart.h" |
| 6 | 6 |
| 7 #include "vm/code_index_table.h" | 7 #include "vm/code_index_table.h" |
| 8 #include "vm/flags.h" |
| 8 #include "vm/freelist.h" | 9 #include "vm/freelist.h" |
| 9 #include "vm/flags.h" | |
| 10 #include "vm/handles.h" | 10 #include "vm/handles.h" |
| 11 #include "vm/heap.h" | 11 #include "vm/heap.h" |
| 12 #include "vm/isolate.h" | 12 #include "vm/isolate.h" |
| 13 #include "vm/longjump.h" | 13 #include "vm/longjump.h" |
| 14 #include "vm/object.h" | 14 #include "vm/object.h" |
| 15 #include "vm/object_store.h" | 15 #include "vm/object_store.h" |
| 16 #include "vm/port.h" | 16 #include "vm/port.h" |
| 17 #include "vm/snapshot.h" | 17 #include "vm/snapshot.h" |
| 18 #include "vm/stub_code.h" | 18 #include "vm/stub_code.h" |
| 19 #include "vm/virtual_memory.h" | 19 #include "vm/virtual_memory.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 } | 89 } |
| 90 | 90 |
| 91 | 91 |
| 92 void Dart::ShutdownIsolate() { | 92 void Dart::ShutdownIsolate() { |
| 93 Isolate* isolate = Isolate::Current(); | 93 Isolate* isolate = Isolate::Current(); |
| 94 isolate->Shutdown(); | 94 isolate->Shutdown(); |
| 95 delete isolate; | 95 delete isolate; |
| 96 } | 96 } |
| 97 | 97 |
| 98 } // namespace dart | 98 } // namespace dart |
| OLD | NEW |