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

Side by Side Diff: dart/tests/compiler/dart2js/mirrors_mixin_test.dart

Issue 64033002: Version 0.8.10.8 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 library mirrors_mixin_test; 5 library mirrors_mixin_test;
6 6
7 import 'package:expect/expect.dart'; 7 import 'package:expect/expect.dart';
8 import 'package:async_helper/async_helper.dart'; 8 import 'package:async_helper/async_helper.dart';
9 import 'mirror_system_helper.dart'; 9 import 'mirror_system_helper.dart';
10 10
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 Expect.isTrue(isSameDeclarationList([M2, M1], getAppliedMixins(H))); 231 Expect.isTrue(isSameDeclarationList([M2, M1], getAppliedMixins(H)));
232 Expect.isTrue(isSameDeclarationSet([A, M1], getExplicitInterfaces(H))); 232 Expect.isTrue(isSameDeclarationSet([A, M1], getExplicitInterfaces(H)));
233 233
234 // class H2 extends H {} 234 // class H2 extends H {}
235 var H2 = library.classes['H2']; 235 var H2 = library.classes['H2'];
236 Expect.isTrue(isSameDeclaration(H, getSuperclass(H2))); 236 Expect.isTrue(isSameDeclaration(H, getSuperclass(H2)));
237 Expect.isTrue(getAppliedMixins(H2).isEmpty); 237 Expect.isTrue(getAppliedMixins(H2).isEmpty);
238 Expect.isTrue(getExplicitInterfaces(H2).isEmpty); 238 Expect.isTrue(getExplicitInterfaces(H2).isEmpty);
239 })); 239 }));
240 } 240 }
OLDNEW
« no previous file with comments | « dart/tests/compiler/dart2js/mirrors_metadata_test.dart ('k') | dart/tests/language/language_analyzer.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698