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

Side by Side Diff: tests/language_strong/unused_overridden_async_test.dart

Issue 2627723003: Improvements to the kernel tree shaker. (Closed)
Patch Set: Revert+Unrevert, and update status files Created 3 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 unified diff | Download patch
« no previous file with comments | « tests/language/language_kernel.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4 import 'dart:async';
5
6 class Base {
7 Future<int> method() async {
8 throw 'Should be unused';
9 }
10 }
11
12 class Sub1 extends Base {
13 @override
14 Future<int> method() async {
15 return 1;
16 }
17 }
18
19 class Sub2 extends Base {
20 @override
21 Future<int> method() async {
22 return 2;
23 }
24 }
25
26 help(Base object) async {
27 print(await object.method());
28 }
29
30 main() async {
31 await help(new Sub1());
32 await help(new Sub2());
33 }
OLDNEW
« no previous file with comments | « tests/language/language_kernel.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698