| Index: runtime/vm/debugger_api_impl.cc
|
| ===================================================================
|
| --- runtime/vm/debugger_api_impl.cc (revision 42490)
|
| +++ runtime/vm/debugger_api_impl.cc (working copy)
|
| @@ -374,7 +374,7 @@
|
| return Api::NewError("%s: breakpoint with id %" Pd " does not exist",
|
| CURRENT_FUNC, bp_id);
|
| }
|
| - return Api::NewHandle(isolate, bpt->SourceUrl());
|
| + return Api::NewHandle(isolate, bpt->url());
|
| }
|
|
|
|
|
| @@ -646,7 +646,7 @@
|
| return Api::NewError("%s: type in 'type_in' is not an instantiated type",
|
| CURRENT_FUNC);
|
| }
|
| - const Class& cls= Class::Handle(type.type_class());
|
| + const Class& cls = Class::Handle(type.type_class());
|
| if (cls.NumTypeParameters() == 0) {
|
| // The super type has no type parameters or it is already instantiated
|
| // just return it.
|
|
|