| Index: runtime/vm/object_store.cc
|
| ===================================================================
|
| --- runtime/vm/object_store.cc (revision 30276)
|
| +++ runtime/vm/object_store.cc (working copy)
|
| @@ -68,7 +68,6 @@
|
| stack_overflow_(Instance::null()),
|
| out_of_memory_(Instance::null()),
|
| preallocated_stack_trace_(Stacktrace::null()),
|
| - keyword_symbols_(Array::null()),
|
| receive_port_create_function_(Function::null()),
|
| lookup_receive_port_function_(Function::null()),
|
| handle_message_function_(Function::null()) {
|
| @@ -143,14 +142,4 @@
|
| return true;
|
| }
|
|
|
| -
|
| -void ObjectStore::InitKeywordTable() {
|
| - // Set up the keywords symbol array so that we can access it while scanning.
|
| - Array& keywords = Array::Handle(keyword_symbols());
|
| - ASSERT(keywords.IsNull());
|
| - keywords = Array::New(Token::numKeywords, Heap::kOld);
|
| - ASSERT(!keywords.IsError() && !keywords.IsNull());
|
| - set_keyword_symbols(keywords);
|
| -}
|
| -
|
| } // namespace dart
|
|
|