| Index: runtime/vm/parser.cc
|
| diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
|
| index 3613166871cd1f5f83b92d16da9dbddc6c58c212..824c35ee45e173c6fb9709453c684cad24a55885 100644
|
| --- a/runtime/vm/parser.cc
|
| +++ b/runtime/vm/parser.cc
|
| @@ -5405,7 +5405,7 @@ void Parser::ParseTopLevelVariable(TopLevel* top_level,
|
| field = Field::New(var_name, is_static, is_final, is_const, is_reflectable,
|
| current_class(), name_pos);
|
| field.set_type(type);
|
| - field.set_value(Instance::Handle(Z, Instance::null()));
|
| + field.set_value(Object::null_instance());
|
| top_level->fields.Add(field);
|
| library_.AddObject(field, var_name);
|
| if (metadata_pos >= 0) {
|
|
|