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/object.h" | 5 #include "vm/object.h" |
6 | 6 |
7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
10 #include "vm/cpu.h" | 10 #include "vm/cpu.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "vm/exceptions.h" | 27 #include "vm/exceptions.h" |
28 #include "vm/flow_graph_builder.h" | 28 #include "vm/flow_graph_builder.h" |
29 #include "vm/growable_array.h" | 29 #include "vm/growable_array.h" |
30 #include "vm/heap.h" | 30 #include "vm/heap.h" |
31 #include "vm/intermediate_language.h" | 31 #include "vm/intermediate_language.h" |
32 #include "vm/intrinsifier.h" | 32 #include "vm/intrinsifier.h" |
33 #include "vm/longjump.h" | 33 #include "vm/longjump.h" |
34 #include "vm/object_id_ring.h" | 34 #include "vm/object_id_ring.h" |
35 #include "vm/object_store.h" | 35 #include "vm/object_store.h" |
36 #include "vm/parser.h" | 36 #include "vm/parser.h" |
| 37 #include "vm/reusable_handles.h" |
37 #include "vm/runtime_entry.h" | 38 #include "vm/runtime_entry.h" |
38 #include "vm/scopes.h" | 39 #include "vm/scopes.h" |
39 #include "vm/stack_frame.h" | 40 #include "vm/stack_frame.h" |
40 #include "vm/symbols.h" | 41 #include "vm/symbols.h" |
41 #include "vm/timer.h" | 42 #include "vm/timer.h" |
42 #include "vm/unicode.h" | 43 #include "vm/unicode.h" |
43 | 44 |
44 namespace dart { | 45 namespace dart { |
45 | 46 |
46 DEFINE_FLAG(bool, show_internal_names, false, | 47 DEFINE_FLAG(bool, show_internal_names, false, |
(...skipping 14539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14586 } | 14587 } |
14587 | 14588 |
14588 | 14589 |
14589 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 14590 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
14590 stream->OpenObject(); | 14591 stream->OpenObject(); |
14591 stream->CloseObject(); | 14592 stream->CloseObject(); |
14592 } | 14593 } |
14593 | 14594 |
14594 | 14595 |
14595 } // namespace dart | 14596 } // namespace dart |
OLD | NEW |