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

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

Issue 3009593002: It's alive (first kernel inference test) (Closed)
Patch Set: Updated cf. comment Created 3 years, 4 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
« no previous file with comments | « pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart ('k') | tests/compiler/dart2js/inference/data/simple.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/inference/data/return.dart
diff --git a/tests/compiler/dart2js/inference/data/super_get.dart b/tests/compiler/dart2js/inference/data/return.dart
similarity index 55%
copy from tests/compiler/dart2js/inference/data/super_get.dart
copy to tests/compiler/dart2js/inference/data/return.dart
index 44e36fd9800177368adb023dc436a73f67df43ae..5d4ca1d5a716ff198f0dcc1b819c159a39f4f80a 100644
--- a/tests/compiler/dart2js/inference/data/super_get.dart
+++ b/tests/compiler/dart2js/inference/data/return.dart
@@ -2,17 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-class Super {
- /*Super.field:[exact=JSUInt31]*/
- var field = 42;
-}
-
-class Sub extends Super {
- /*Sub.method:[exact=JSUInt31]*/
- method() => super.field;
-}
-
/*main:[null]*/
main() {
- new Sub()./*[exact=Sub]*/method();
+ return null;
}
« no previous file with comments | « pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart ('k') | tests/compiler/dart2js/inference/data/simple.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698