Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1273)

Unified Diff: runtime/observatory/lib/src/service/object.dart

Issue 887413003: Port type arguments to new RPC protocol (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698