| Index: tests/lib/mirrors/static_members_test.dart | 
| diff --git a/tests/lib/mirrors/static_members_test.dart b/tests/lib/mirrors/static_members_test.dart | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..0bc9e20fbef2f7e5c4b0f820132e6a48b280026f | 
| --- /dev/null | 
| +++ b/tests/lib/mirrors/static_members_test.dart | 
| @@ -0,0 +1,39 @@ | 
| +// Copyright (c) 2013, the Dart project authors.  Please see the AUTHORS file | 
| +// for details. All rights reserved. Use of this source code is governed by a | 
| +// BSD-style license that can be found in the LICENSE file. | 
| + | 
| +library test.static_members; | 
| + | 
| +import 'dart:mirrors'; | 
| +import 'package:expect/expect.dart'; | 
| + | 
| +import 'stringify.dart'; | 
| +import 'declarations_model.dart' as declarations_model; | 
| + | 
| +selectKeys(map, predicate) { | 
| +  return map.keys.where((key) => predicate(map[key])); | 
| +} | 
| + | 
| +main() { | 
| +  ClassMirror cm = reflectClass(declarations_model.Class); | 
| + | 
| +  Expect.setEquals( | 
| +    [#staticVariable, | 
| +     const Symbol('staticVariable='), | 
| +     #staticGetter, | 
| +     const Symbol('staticSetter='), | 
| +     #staticMethod, | 
| +     #_staticVariable, | 
| +     const Symbol('_staticVariable='), | 
| +     #_staticGetter, | 
| +     const Symbol('_staticSetter='), | 
| +     #_staticMethod], | 
| +    selectKeys(cm.staticMembers, (dm) => true)); | 
| + | 
| +  Expect.setEquals( | 
| +    [#staticVariable, | 
| +     const Symbol('staticVariable='), | 
| +     #_staticVariable, | 
| +     const Symbol('_staticVariable=')], | 
| +    selectKeys(cm.staticMembers, (dm) => dm.isSynthetic)); | 
| +} | 
|  |