dart-sdk/tests/language/private_access_lib.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

13 lines
307 B
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.
library private;
_function() {}
class _Class {}
class Class {
Class._constructor();
}