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

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

Issue 1132113002: Rename 'dart:debugger' to 'dart:developer' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_store.h" 5 #include "vm/object_store.h"
6 6
7 #include "vm/exceptions.h" 7 #include "vm/exceptions.h"
8 #include "vm/dart_entry.h" 8 #include "vm/dart_entry.h"
9 #include "vm/isolate.h" 9 #include "vm/isolate.h"
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 float64x2_class_(Class::null()), 55 float64x2_class_(Class::null()),
56 error_class_(Class::null()), 56 error_class_(Class::null()),
57 weak_property_class_(Class::null()), 57 weak_property_class_(Class::null()),
58 symbol_table_(Array::null()), 58 symbol_table_(Array::null()),
59 canonical_type_arguments_(Array::null()), 59 canonical_type_arguments_(Array::null()),
60 async_library_(Library::null()), 60 async_library_(Library::null()),
61 builtin_library_(Library::null()), 61 builtin_library_(Library::null()),
62 core_library_(Library::null()), 62 core_library_(Library::null()),
63 collection_library_(Library::null()), 63 collection_library_(Library::null()),
64 convert_library_(Library::null()), 64 convert_library_(Library::null()),
65 debugger_library_(Library::null()), 65 developer_library_(Library::null()),
66 internal_library_(Library::null()), 66 internal_library_(Library::null()),
67 isolate_library_(Library::null()), 67 isolate_library_(Library::null()),
68 math_library_(Library::null()), 68 math_library_(Library::null()),
69 mirrors_library_(Library::null()), 69 mirrors_library_(Library::null()),
70 native_wrappers_library_(Library::null()), 70 native_wrappers_library_(Library::null()),
71 profiler_library_(Library::null()), 71 profiler_library_(Library::null()),
72 root_library_(Library::null()), 72 root_library_(Library::null()),
73 typed_data_library_(Library::null()), 73 typed_data_library_(Library::null()),
74 libraries_(GrowableObjectArray::null()), 74 libraries_(GrowableObjectArray::null()),
75 pending_classes_(GrowableObjectArray::null()), 75 pending_classes_(GrowableObjectArray::null()),
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 cls = async_lib.LookupClass(Symbols::StreamIterator()); 190 cls = async_lib.LookupClass(Symbols::StreamIterator());
191 ASSERT(!cls.IsNull()); 191 ASSERT(!cls.IsNull());
192 set_stream_iterator_class(cls); 192 set_stream_iterator_class(cls);
193 193
194 const Library& internal_lib = Library::Handle(internal_library()); 194 const Library& internal_lib = Library::Handle(internal_library());
195 cls = internal_lib.LookupClass(Symbols::Symbol()); 195 cls = internal_lib.LookupClass(Symbols::Symbol());
196 set_symbol_class(cls); 196 set_symbol_class(cls);
197 } 197 }
198 198
199 } // namespace dart 199 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698