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

Unified Diff: tests/compiler/dart2js/inference/data/super_get.dart

Issue 3007903002: Support annotations on assignment and postfix operations (Closed)
Patch Set: Updated cf. comments Created 3 years, 3 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: tests/compiler/dart2js/inference/data/super_get.dart
diff --git a/tests/compiler/dart2js/inference/data/super_get.dart b/tests/compiler/dart2js/inference/data/super_get.dart
index 7cc747010d9dd4c8e12ef687ab0461b7a3a12bfd..992888047dd4f9f8c2478510e1949c21d68f3755 100644
--- a/tests/compiler/dart2js/inference/data/super_get.dart
+++ b/tests/compiler/dart2js/inference/data/super_get.dart
@@ -3,16 +3,16 @@
// BSD-style license that can be found in the LICENSE file.
class Super {
- /*Super.field:[exact=JSUInt31]*/
+ /*element: Super.field:[exact=JSUInt31]*/
var field = 42;
}
class Sub extends Super {
- /*Sub.method:[exact=JSUInt31]*/
+ /*element: Sub.method:[exact=JSUInt31]*/
method() => super.field;
}
-/*main:[null]*/
+/*element: main:[null]*/
main() {
- new Sub(). /*[exact=Sub]*/ method();
+ new Sub(). /*invoke: [exact=Sub]*/ method();
}
« no previous file with comments | « tests/compiler/dart2js/inference/data/simple.dart ('k') | tests/compiler/dart2js/inference/data/super_set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698