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

Side by Side Diff: tests/lib/mirrors/toplevel_members_test.dart

Issue 164823006: Remove LibraryMirror.topLevelMembers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: sync Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « tests/lib/mirrors/synthetic_accessor_properties_test.dart ('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) 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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library test.toplevel_members;
6
7 import 'dart:mirrors';
8 import 'package:expect/expect.dart';
9
10 import 'stringify.dart';
11 import 'declarations_model.dart' as declarations_model;
12
13 selectKeys(map, predicate) {
14 return map.keys.where((key) => predicate(map[key]));
15 }
16
17 main() {
18 LibraryMirror lm =
19 currentMirrorSystem().findLibrary(#test.declarations_model);
20
21 Expect.setEquals(
22 [#libraryVariable,
23 const Symbol('libraryVariable='),
24 #libraryGetter,
25 const Symbol('librarySetter='),
26 #libraryMethod,
27 MirrorSystem.getSymbol('_libraryVariable', lm),
28 MirrorSystem.getSymbol('_libraryVariable=', lm),
29 MirrorSystem.getSymbol('_libraryGetter', lm),
30 MirrorSystem.getSymbol('_librarySetter=', lm),
31 MirrorSystem.getSymbol('_libraryMethod', lm),
32 #Predicate, /// 01: ok
33 #Superclass, /// 01: continued
34 #Interface, /// 01: continued
35 #Mixin, /// 01: continued
36 #Class, /// 01: continued
37 MirrorSystem.getSymbol('_PrivateClass', lm), /// 01: continued
38 #ConcreteClass /// 01: continued
39 ],
40 selectKeys(lm.topLevelMembers, (dm) => true));
41
42 Expect.setEquals(
43 [#libraryVariable,
44 const Symbol('libraryVariable='),
45 MirrorSystem.getSymbol('_libraryVariable', lm),
46 MirrorSystem.getSymbol('_libraryVariable=', lm),
47 #Predicate, /// 01: continued
48 #Superclass, /// 01: continued
49 #Interface, /// 01: continued
50 #Mixin, /// 01: continued
51 #Class, /// 01: continued
52 MirrorSystem.getSymbol('_PrivateClass', lm), /// 01: continued
53 #ConcreteClass /// 01: continued
54 ],
55 selectKeys(lm.topLevelMembers, (dm) => dm.isSynthetic));
56 }
OLDNEW
« no previous file with comments | « tests/lib/mirrors/synthetic_accessor_properties_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698