Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 import 'dart:async'; | 4 import 'dart:async'; |
| 5 | 5 |
| 6 class Base { | 6 class Base { |
| 7 Future<int> method() async { | 7 Future<int> method() async { |
| 8 throw 'Should be unused'; | 8 throw 'Should be unused'; |
| 9 } | 9 } |
| 10 } | 10 } |
| 11 | 11 |
| 12 class Sub1 extends Base { | 12 class Sub1 extends Base { |
| 13 @override | 13 @override |
|
Lasse Reichstein Nielsen
2017/08/29 08:49:44
Remove @override. We don't use that in the platfor
jcollins
2017/08/29 17:39:11
Done.
| |
| 14 Future<int> method() async { | 14 Future<int> method() async { |
| 15 return 1; | 15 return 1; |
| 16 } | 16 } |
| 17 } | 17 } |
| 18 | 18 |
| 19 class Sub2 extends Base { | 19 class Sub2 extends Base { |
| 20 @override | 20 @override |
| 21 Future<int> method() async { | 21 Future<int> method() async { |
| 22 return 2; | 22 return 2; |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 | 25 |
| 26 help(Base object) async { | 26 help(Base object) async { |
| 27 print(await object.method()); | 27 print(await object.method()); |
| 28 } | 28 } |
| 29 | 29 |
| 30 main() async { | 30 main() async { |
| 31 await help(new Sub1()); | 31 await help(new Sub1()); |
| 32 await help(new Sub2()); | 32 await help(new Sub2()); |
| 33 } | 33 } |
| OLD | NEW |