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

Side by Side Diff: vm/object_store.cc

Issue 10911025: Get rid of support for string interpolation in #import strings. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 3 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 | « vm/object_store.h ('k') | vm/parser.cc » ('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) 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/object_store.h" 5 #include "vm/object_store.h"
6 6
7 #include "vm/exceptions.h" 7 #include "vm/exceptions.h"
8 #include "vm/isolate.h" 8 #include "vm/isolate.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/raw_object.h" 10 #include "vm/raw_object.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 canonical_type_arguments_(Array::null()), 65 canonical_type_arguments_(Array::null()),
66 core_library_(Library::null()), 66 core_library_(Library::null()),
67 core_impl_library_(Library::null()), 67 core_impl_library_(Library::null()),
68 math_library_(Library::null()), 68 math_library_(Library::null()),
69 isolate_library_(Library::null()), 69 isolate_library_(Library::null()),
70 mirrors_library_(Library::null()), 70 mirrors_library_(Library::null()),
71 native_wrappers_library_(Library::null()), 71 native_wrappers_library_(Library::null()),
72 builtin_library_(Library::null()), 72 builtin_library_(Library::null()),
73 root_library_(Library::null()), 73 root_library_(Library::null()),
74 libraries_(GrowableObjectArray::null()), 74 libraries_(GrowableObjectArray::null()),
75 import_map_(Array::null()),
76 pending_classes_(GrowableObjectArray::null()), 75 pending_classes_(GrowableObjectArray::null()),
77 sticky_error_(Error::null()), 76 sticky_error_(Error::null()),
78 empty_context_(Context::null()), 77 empty_context_(Context::null()),
79 stack_overflow_(Instance::null()), 78 stack_overflow_(Instance::null()),
80 out_of_memory_(Instance::null()), 79 out_of_memory_(Instance::null()),
81 keyword_symbols_(Array::null()) { 80 keyword_symbols_(Array::null()) {
82 } 81 }
83 82
84 83
85 ObjectStore::~ObjectStore() { 84 ObjectStore::~ObjectStore() {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 void ObjectStore::InitKeywordTable() { 128 void ObjectStore::InitKeywordTable() {
130 // Set up the keywords symbol array so that we can access it while scanning. 129 // Set up the keywords symbol array so that we can access it while scanning.
131 Array& keywords = Array::Handle(keyword_symbols()); 130 Array& keywords = Array::Handle(keyword_symbols());
132 ASSERT(keywords.IsNull()); 131 ASSERT(keywords.IsNull());
133 keywords = Array::New(Token::numKeywords, Heap::kOld); 132 keywords = Array::New(Token::numKeywords, Heap::kOld);
134 ASSERT(!keywords.IsError() && !keywords.IsNull()); 133 ASSERT(!keywords.IsError() && !keywords.IsNull());
135 set_keyword_symbols(keywords); 134 set_keyword_symbols(keywords);
136 } 135 }
137 136
138 } // namespace dart 137 } // namespace dart
OLDNEW
« no previous file with comments | « vm/object_store.h ('k') | vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698