| Index: runtime/vm/parser.cc
|
| diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
|
| index b53e2dc7ec56c128858d7a4b198259cfb635c0c0..434d32c78b304d1406adda0641754bd74953af5e 100644
|
| --- a/runtime/vm/parser.cc
|
| +++ b/runtime/vm/parser.cc
|
| @@ -9806,9 +9806,9 @@ AstNode* Parser::ParseSymbolLiteral() {
|
| } else {
|
| ErrorMsg("illegal symbol literal");
|
| }
|
| - // Lookup class Symbol from collection_dev library and call the
|
| + // Lookup class Symbol from internal library and call the
|
| // constructor to create a symbol instance.
|
| - const Library& lib = Library::Handle(Library::CollectionDevLibrary());
|
| + const Library& lib = Library::Handle(Library::InternalLibrary());
|
| const Class& symbol_class = Class::Handle(lib.LookupClass(Symbols::Symbol()));
|
| ASSERT(!symbol_class.IsNull());
|
| ArgumentListNode* constr_args = new ArgumentListNode(symbol_pos);
|
|
|