Chromium Code Reviews| Index: language/src/DisablePrivacyTest.dart |
| =================================================================== |
| --- language/src/DisablePrivacyTest.dart (revision 0) |
| +++ language/src/DisablePrivacyTest.dart (revision 0) |
| @@ -0,0 +1,12 @@ |
| +// 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. |
| +// VMOptions=--disable_privacy |
|
ahe
2012/03/08 19:10:44
I don't think we should have VM specific options i
Siggi Cherem (dart-lang)
2012/03/08 19:28:37
This might be a problem of how we specify the opti
|
| +// |
| +// Dart test program checking that library privacy can be disabled. |
| + |
| +#import("DisablePrivacyLib.dart"); |
| + |
| +main() { |
| + Expect.equals(1, _fooForTesting); |
| +} |