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

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

Issue 363473004: Hide synthetic metadata field exposed in r35926. (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 | « runtime/vm/parser.cc ('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) 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 classFieldNames = reflectType(OneField).declarations.values
27 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList();
28 Expect.setEquals([#onlyClassField], classFieldNames);
29
30 var libraryFieldNames = reflectType(OneField).owner.declarations.values
31 .where((v) => v is VariableMirror).map((v) => v.simpleName).toList();
32 Expect.setEquals([#metadata], libraryFieldNames);
33 }
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698