| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 826d2cff8ece4d2cc50e5d2617ab106b2942d24b..c1b31428464d8f71ace98f290d306ceaae8d3b8f 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -2817,7 +2817,9 @@ static RawFunction* EvaluateHelper(const Class& cls,
|
| const String& func_src =
|
| String::Handle(BuildClosureSource(param_names, expr));
|
| Script& script = Script::Handle();
|
| - script = Script::New(Symbols::Empty(), func_src, RawScript::kSourceTag);
|
| + script = Script::New(Symbols::EvalSourceUri(),
|
| + func_src,
|
| + RawScript::kSourceTag);
|
| // In order to tokenize the source, we need to get the key to mangle
|
| // private names from the library from which the class originates.
|
| const Library& lib = Library::Handle(cls.library());
|
|
|