dart-sdk/tests/language/private_access_test.dart
johnniwinther@google.com 796c130cdc Extract CallStructure from Selector.
This should be used for static invocation so that Selector is only for dynamic invocations.

BUG=
R=floitsch@google.com

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

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

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@44991 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-09 07:44:17 +00:00

21 lines
1.1 KiB
Dart

// 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.
import 'package:expect/expect.dart';
import 'private_access_lib.dart';
import 'private_access_lib.dart' as private;
main() {
Expect.throws(() => _function(), /// 01: static type warning
(e) => e is NoSuchMethodError); /// 01: continued
Expect.throws(() => private._function(), /// 02: static type warning
(e) => e is NoSuchMethodError); /// 02: continued
Expect.throws(() => new _Class()); /// 03: static type warning
Expect.throws(() => new private._Class()); /// 04: static type warning
Expect.throws(() => new Class._constructor(), /// 05: static type warning
(e) => e is NoSuchMethodError); /// 05: continued
Expect.throws(() => new private.Class._constructor(), /// 06: static type warning
(e) => e is NoSuchMethodError); /// 06: continued
}