blob: f1305d0f3e831f8adaeef74046ca97930a8a36b2 [file] [log] [blame]
// 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.
// @dart = 2.9
// No library declaration.
import 'dart:mirrors';
import 'package:expect/expect.dart';
class Class {}
main() {
ClassMirror cm = reflectClass(Class);
LibraryMirror lm = cm.owner as LibraryMirror;
Expect.equals('Class', MirrorSystem.getName(cm.simpleName));
Expect.equals('.Class', MirrorSystem.getName(cm.qualifiedName));
Expect.equals('', MirrorSystem.getName(lm.simpleName));
Expect.equals('', MirrorSystem.getName(lm.qualifiedName));
}