| Index: runtime/observatory/lib/src/service/object.dart
|
| diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
|
| index 234e281dc3ae95f56e39a32721aa5897062772f2..aa042320288aee688ef48a6a189674583454d892 100644
|
| --- a/runtime/observatory/lib/src/service/object.dart
|
| +++ b/runtime/observatory/lib/src/service/object.dart
|
| @@ -1305,6 +1305,13 @@ class Isolate extends ServiceObjectOwner with Coverage {
|
| return invokeRpc('getInboundReferences', params);
|
| }
|
|
|
| + Future<ServiceObject> getTypeArgumentsList(bool onlyWithInstantiations) {
|
| + Map params = {
|
| + 'onlyWithInstantiations': onlyWithInstantiations,
|
| + };
|
| + return invokeRpc('getTypeArgumentsList', params);
|
| + }
|
| +
|
| Future<ServiceObject> getInstances(Class cls, var limit) {
|
| Map params = {
|
| 'classId': cls.id,
|
|
|