dart-sdk/tests/language/function_type_call_getter_test.dart
floitsch@google.com f336830ceb classes with call-methods were not recognized as Functions.
Also fixes similar issue (classes with 'call' getter were recognized as Function).

BUG= http://dartbug.com/16401
R=johnniwinther@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@32252 260f80e4-7a28-3924-810f-c04153c831b5
2014-02-03 17:45:01 +00:00

29 lines
604 B
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.
import "package:expect/expect.dart";
class A {
final call = null;
}
class B {
get call => null;
}
class C {
set call(x) {}
}
typedef int F(String str);
main() {
Expect.isFalse(new A() is Function);
Expect.isFalse(new B() is Function);
Expect.isFalse(new C() is Function);
Expect.isFalse(new A() is F);
Expect.isFalse(new B() is F);
Expect.isFalse(new C() is F);
}