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 14576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14623 } | 14624 } |
14624 | 14625 |
14625 | 14626 |
14626 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { | 14627 void MirrorReference::PrintToJSONStream(JSONStream* stream, bool ref) const { |
14627 stream->OpenObject(); | 14628 stream->OpenObject(); |
14628 stream->CloseObject(); | 14629 stream->CloseObject(); |
14629 } | 14630 } |
14630 | 14631 |
14631 | 14632 |
14632 } // namespace dart | 14633 } // namespace dart |
OLD | NEW |