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

Unified Diff: runtime/observatory/tests/ui/inspector.dart

Issue 1463123002: - Display a pseudo-receiver for static function activations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « runtime/observatory/lib/src/service/object.dart ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/tests/ui/inspector.dart
diff --git a/runtime/observatory/tests/ui/inspector.dart b/runtime/observatory/tests/ui/inspector.dart
index fd6d0c37884a8f4c37f7800658f39220e7e742b8..c34f2d958a05c8fd8c4990c07c167d07be386a02 100644
--- a/runtime/observatory/tests/ui/inspector.dart
+++ b/runtime/observatory/tests/ui/inspector.dart
@@ -24,6 +24,10 @@ extractPrivateField(obj, name) {
class A <T> {}
class B <S extends num> {}
+class S {}
+class M {}
+class MA extends S with M {}
+
class Node {
static var classField;
@@ -112,6 +116,10 @@ class Node {
return x;
}
+ static staticMain() {
+ node.main();
+ }
+
main() {
print("Started main");
@@ -240,7 +248,7 @@ main() {
Node.classField = 'Class field value';
typed = new Typed();
node = new Node();
- node.main();
+ Node.staticMain();
}
class C {
« no previous file with comments | « runtime/observatory/lib/src/service/object.dart ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698