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

Side by Side Diff: tests/lib_2/mirrors/deferred_mirrors_metadata_test.dart

Issue 3003123002: Migrated test block 219 to Dart 2.0. (Closed)
Patch Set: Deleted files that were already merged. 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 4
5 @A(const B()) 5 @A(const B())
6 library main; 6 library main;
7 7
8 @B() 8 @B()
9 import 'package:async_helper/async_helper.dart'; 9 import 'package:async_helper/async_helper.dart';
10 import 'package:expect/expect.dart'; 10 import 'package:expect/expect.dart';
(...skipping 25 matching lines...) Expand all
36 36
37 void main() { 37 void main() {
38 asyncStart(); 38 asyncStart();
39 lib1.loadLibrary().then((_) { 39 lib1.loadLibrary().then((_) {
40 Expect.equals("ABCD", lib1.foo()); 40 Expect.equals("ABCD", lib1.foo());
41 new C(); 41 new C();
42 new D(); 42 new D();
43 asyncEnd(); 43 asyncEnd();
44 }); 44 });
45 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698