645f3acca7
Closes #41386 Change-Id: I1a5a4cdc35cef37c7a8ba6a6aecb99457789bcdc Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/144940 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
32 lines
986 B
Dart
32 lines
986 B
Dart
// 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_easier.dart' as declarations_model;
|
|
|
|
selectKeys<K, V>(Map<K, V> map, bool Function(V) predicate) {
|
|
return map.keys.where((K key) => predicate(map[key] as V));
|
|
}
|
|
|
|
main() {
|
|
ClassMirror cm = reflectClass(declarations_model.Class);
|
|
LibraryMirror lm = cm.owner as LibraryMirror;
|
|
|
|
Expect.setEquals([
|
|
#staticVariable,
|
|
const Symbol('staticVariable='),
|
|
#staticGetter,
|
|
const Symbol('staticSetter='),
|
|
#staticMethod,
|
|
], selectKeys(cm.staticMembers, (dm) => true));
|
|
|
|
Expect.setEquals([#staticVariable, const Symbol('staticVariable=')],
|
|
selectKeys(cm.staticMembers, (dynamic dm) => dm.isSynthetic));
|
|
}
|