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

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

Issue 2999373002: Migrated test block 218 to Dart 2.0. (Closed)
Patch Set: Addressed Bob's 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 library test.class_location; 4 library test.class_location;
5 5
6 @MirrorsUsed(targets: "test.class_location") 6 @MirrorsUsed(targets: "test.class_location")
7 import "dart:mirrors"; 7 import "dart:mirrors";
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 9
10 part 'class_mirror_location_other.dart'; 10 part 'class_mirror_location_other.dart';
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 // Another part. 61 // Another part.
62 expectLocation(reflectClass(ClassInOtherFile), otherSuffix, 7, 1); 62 expectLocation(reflectClass(ClassInOtherFile), otherSuffix, 7, 1);
63 expectLocation(reflectClass(SpaceIndentedInOtherFile), otherSuffix, 9, 3); 63 expectLocation(reflectClass(SpaceIndentedInOtherFile), otherSuffix, 9, 3);
64 expectLocation(reflectClass(TabIndentedInOtherFile), otherSuffix, 11, 2); 64 expectLocation(reflectClass(TabIndentedInOtherFile), otherSuffix, 11, 2);
65 65
66 // Synthetic classes. 66 // Synthetic classes.
67 Expect.isNull(reflectClass(MA).superclass.location); 67 Expect.isNull(reflectClass(MA).superclass.location);
68 Expect.isNull((reflect(main) as ClosureMirror).type.location); 68 Expect.isNull((reflect(main) as ClosureMirror).type.location);
69 } 69 }
OLDNEW
« no previous file with comments | « tests/lib_2/mirrors/class_mirror_location_other.dart ('k') | tests/lib_2/mirrors/class_mirror_type_variables_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698