ed814958fc
BUG= http://dartbug.com/3011 Committed: https://code.google.com/p/dart/source/detail?r=30300 R=iposva@google.com Review URL: https://codereview.chromium.org//68813002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@30442 260f80e4-7a28-3924-810f-c04153c831b5
28 lines
905 B
Dart
28 lines
905 B
Dart
// Copyright (c) 2012, 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 static_function_testlib;
|
|
import "dart:isolate" show SendPort;
|
|
|
|
// Used by static_function_test.dart.
|
|
|
|
void function(port) { port.send("LIBTOP"); }
|
|
void _function(port) { port.send("_LIBTOP"); }
|
|
|
|
Function get privateFunction => _function;
|
|
|
|
class C {
|
|
static void function(SendPort port) { port.send("LIB"); }
|
|
static void _function(SendPort port) { port.send("LIBPRIVATE"); }
|
|
static Function get privateFunction => _function;
|
|
}
|
|
|
|
Function get privateClassFunction => _C.function;
|
|
Function get privateClassAndFunction => _C._function;
|
|
|
|
class _C {
|
|
static void function(SendPort port) { port.send("_LIB"); }
|
|
static void _function(SendPort port) { port.send("_LIBPRIVATE"); }
|
|
}
|