blob: 739fdb7f81331074710e10dcf917717e458ada22 [file] [log] [blame]
/*
* Copyright (c) 2015, 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.
*/
/**
* @assertion Metadata can appear before ... factory ...
* @description Check that metadata is allowed before class factory
* @author a.semenov@unipro.ru
*/
import 'dart:mirrors';
import '../../Utils/expect.dart';
class A {
const A();
}
class B {
@A() factory B() {}
@A() factory B.b() {}
}
main() {
Symbol ctorName1 = MirrorSystem.getSymbol('B');
DeclarationMirror ctorMirror1 = reflectClass(B).declarations[ctorName1];
InstanceMirror aMirror1 = ctorMirror1.metadata[0];
Expect.equals('.A', MirrorSystem.getName(aMirror1.type.qualifiedName));
Symbol ctorName2 = MirrorSystem.getSymbol('B.b');
DeclarationMirror ctorMirror2 = reflectClass(B).declarations[ctorName2];
InstanceMirror aMirror2 = ctorMirror2.metadata[0];
Expect.equals('.A', MirrorSystem.getName(aMirror2.type.qualifiedName));
}