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

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

Issue 365713004: Adjust mirrors/regress_19731_test to avoid static warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 | « no previous file | 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
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 @metadata 5 @metadata
6 library regress_19731; 6 library regress_19731;
7 7
8 import 'dart:mirrors'; 8 import 'dart:mirrors';
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 10
11 @metadata 11 @metadata
12 const metadata = const Object(); 12 const metadata = const Object();
13 13
14 class OneField { 14 class OneField {
15 @metadata 15 @metadata
16 var onlyClassField; 16 var onlyClassField;
17 17
18 @metadata 18 @metadata
19 method() {} 19 method() {}
20 } 20 }
21 21
22 @metadata 22 @metadata
23 method() {} 23 method() {}
24 24
25 main() { 25 main() {
26 var classFieldNames = reflectType(OneField).declarations.values 26 var classMirror = reflectType(OneField);
27 var classFieldNames = classMirror.declarations.values
27 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList(); 28 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList();
28 Expect.setEquals([#onlyClassField], classFieldNames); 29 Expect.setEquals([#onlyClassField], classFieldNames);
29 30
30 var libraryFieldNames = reflectType(OneField).owner.declarations.values 31 var libraryMirror = classMirror.owner;
32 var libraryFieldNames = libraryMirror.declarations.values
31 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList(); 33 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList();
32 Expect.setEquals([#metadata], libraryFieldNames); 34 Expect.setEquals([#metadata], libraryFieldNames);
33 } 35 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698