Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: runtime/vm/object.cc

Issue 22632010: Added following dart API changes to enable more efficient access based (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/reusable_handles.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/reusable_handles.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698