Files
sdk/tests/lib/mirrors/relation_subclass_test.dart
T
karlklose@google.com b203f95355 Emit declarations for typedefs that are needed by reflection.
Typedefs are encoded like closure classes, but without a call-method and a superclass.

For example, the typedef `typedef int Foo(String s);` is emitted as:
  Foo: {'^': ':15'},
where `15` is the index into `init.metadata` at which the function type is emitted.

BUG= http://dartbug.com/16939
R=johnniwinther@google.com, floitsch@google.com, herhut@google.com

Committed: https://code.google.com/p/dart/source/detail?r=37814

Reverted in https://code.google.com/p/dart/source/detail?r=37848

Committed: https://code.google.com/p/dart/source/detail?r=37939

Reverted in https://code.google.com/p/dart/source/detail?r=37940

Committed: https://code.google.com/p/dart/source/detail?r=37945

Review URL: https://codereview.chromium.org//360493002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38891 260f80e4-7a28-3924-810f-c04153c831b5
2014-08-05 07:18:32 +00:00

111 lines
4.2 KiB
Dart

// Copyright (c) 2014, 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.relation_subclass;
import "dart:mirrors";
import "package:expect/expect.dart";
class Superclass {}
class Subclass1 extends Superclass {}
class Subclass2 extends Superclass {}
typedef bool NumberPredicate(num x);
typedef bool IntegerPredicate(int x);
typedef bool DoublePredicate(double x);
typedef num NumberGenerator();
typedef int IntegerGenerator();
typedef double DoubleGenerator();
test(MirrorSystem mirrors) {
LibraryMirror coreLibrary = mirrors.findLibrary(#dart.core);
LibraryMirror thisLibrary = mirrors.findLibrary(#test.relation_subclass);
ClassMirror Super = thisLibrary.declarations[#Superclass];
ClassMirror Sub1 = thisLibrary.declarations[#Subclass1];
ClassMirror Sub2 = thisLibrary.declarations[#Subclass2];
ClassMirror Obj = coreLibrary.declarations[#Object];
Expect.isTrue(Obj.isSubclassOf(Obj));
Expect.isTrue(Super.isSubclassOf(Super));
Expect.isTrue(Sub1.isSubclassOf(Sub1));
Expect.isTrue(Sub2.isSubclassOf(Sub2));
Expect.isTrue(Sub1.isSubclassOf(Super));
Expect.isFalse(Super.isSubclassOf(Sub1));
Expect.isTrue(Sub2.isSubclassOf(Super));
Expect.isFalse(Super.isSubclassOf(Sub2));
Expect.isFalse(Sub2.isSubclassOf(Sub1));
Expect.isFalse(Sub1.isSubclassOf(Sub2));
Expect.isTrue(Sub1.isSubclassOf(Obj));
Expect.isFalse(Obj.isSubclassOf(Sub1));
Expect.isTrue(Sub2.isSubclassOf(Obj));
Expect.isFalse(Obj.isSubclassOf(Sub2));
Expect.isTrue(Super.isSubclassOf(Obj));
Expect.isFalse(Obj.isSubclassOf(Super));
var Func = coreLibrary.declarations[#Function];
Expect.isTrue(Func.isSubclassOf(Obj));
Expect.isFalse(Obj.isSubclassOf(Func));
// Function typedef.
var NumPred = thisLibrary.declarations[#NumberPredicate];
var IntPred = thisLibrary.declarations[#IntegerPredicate];
var DubPred = thisLibrary.declarations[#DoublePredicate];
var NumGen = thisLibrary.declarations[#NumberGenerator];
var IntGen = thisLibrary.declarations[#IntegerGenerator];
var DubGen = thisLibrary.declarations[#DoubleGenerator];
isArgumentOrTypeError(e) => e is ArgumentError || e is TypeError;
Expect.throws(() => Func.isSubclassOf(NumPred), isArgumentOrTypeError);
Expect.throws(() => Func.isSubclassOf(IntPred), isArgumentOrTypeError);
Expect.throws(() => Func.isSubclassOf(DubPred), isArgumentOrTypeError);
Expect.throws(() => Func.isSubclassOf(NumGen), isArgumentOrTypeError);
Expect.throws(() => Func.isSubclassOf(IntGen), isArgumentOrTypeError);
Expect.throws(() => Func.isSubclassOf(DubGen), isArgumentOrTypeError);
isNoSuchMethodError(e) => e is NoSuchMethodError;
Expect.throws(() => NumPred.isSubclassOf(Func), isNoSuchMethodError);
Expect.throws(() => IntPred.isSubclassOf(Func), isNoSuchMethodError);
Expect.throws(() => DubPred.isSubclassOf(Func), isNoSuchMethodError);
Expect.throws(() => NumGen.isSubclassOf(Func), isNoSuchMethodError);
Expect.throws(() => IntGen.isSubclassOf(Func), isNoSuchMethodError);
Expect.throws(() => DubGen.isSubclassOf(Func), isNoSuchMethodError);
// Function type.
TypeMirror NumPredRef = (NumPred as TypedefMirror).referent;
TypeMirror IntPredRef = (IntPred as TypedefMirror).referent;
TypeMirror DubPredRef = (DubPred as TypedefMirror).referent;
TypeMirror NumGenRef = (NumGen as TypedefMirror).referent;
TypeMirror IntGenRef = (IntGen as TypedefMirror).referent;
TypeMirror DubGenRef = (DubGen as TypedefMirror).referent;
Expect.isFalse(Func.isSubclassOf(NumPredRef));
Expect.isFalse(Func.isSubclassOf(IntPredRef));
Expect.isFalse(Func.isSubclassOf(DubPredRef));
Expect.isFalse(Func.isSubclassOf(NumGenRef));
Expect.isFalse(Func.isSubclassOf(IntGenRef));
Expect.isFalse(Func.isSubclassOf(DubGenRef));
// The spec doesn't require these to be either value, only that they implement
// Function.
// NumPredRef.isSubclassOf(Func);
// IntPredRef.isSubclassOf(Func);
// DubPredRef.isSubclassOf(Func);
// NumGenRef.isSubclassOf(Func);
// IntGenRef.isSubclassOf(Func);
// DubGenRef.isSubclassOf(Func);
}
main() {
test(currentMirrorSystem());
}