Chromium Code Reviews

Side by Side Diff: test/codegen/lib/mirrors/regress_19731_test.dart

Issue 2265533002: Add mirrors tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 @metadata
6 library regress_19731;
7
8 import 'dart:mirrors';
9 import 'package:expect/expect.dart';
10
11 @metadata
12 const metadata = const Object();
13
14 class OneField {
15 @metadata
16 var onlyClassField;
17
18 @metadata
19 method() {}
20 }
21
22 @metadata
23 method() {}
24
25 main() {
26 var classMirror = reflectType(OneField);
27 var classFieldNames = classMirror.declarations.values
28 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList();
29 Expect.setEquals([#onlyClassField], classFieldNames);
30
31 var libraryMirror = classMirror.owner;
32 var libraryFieldNames = libraryMirror.declarations.values
33 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList();
34 Expect.setEquals([#metadata], libraryFieldNames);
35 }
OLDNEW
« no previous file with comments | « test/codegen/lib/mirrors/regress_16321_test.dart ('k') | test/codegen/lib/mirrors/regress_26187_test.dart » ('j') | no next file with comments »

Powered by Google App Engine