|
Revision 1397, 1.0 kB
(checked in by jmaessen, 8 months ago)
|
Massive library reorganization:
- Most of ProjectFortress?/test_library[_native] has moved to Library.
- Libraries that really were just used for testing remain in
test_library. This includes the last lonely library in test_library_native.
- Builtin functionality, including hidden-from-the-user or
exposed-only-in-FortressLibrary types, can be found in
ProjectFortress/LibraryBuiltin?. This includes FortressBuiltin?.
- The libraries that used to be under StandardLibrary? may now be
found under Library/incomplete, along with two incomplete libraries
from test_library.
This all just worked, which is a testament to the path cleanup work
that happened a little while back.
|
| Line | |
|---|
| 1 |
(******************************************************************************* |
|---|
| 2 |
Copyright 2008 Sun Microsystems, Inc., |
|---|
| 3 |
4150 Network Circle, Santa Clara, California 95054, U.S.A. |
|---|
| 4 |
All rights reserved. |
|---|
| 5 |
|
|---|
| 6 |
U.S. Government Rights - Commercial software. |
|---|
| 7 |
Government users are subject to the Sun Microsystems, Inc. standard |
|---|
| 8 |
license agreement and applicable provisions of the FAR and its supplements. |
|---|
| 9 |
|
|---|
| 10 |
Use is subject to license terms. |
|---|
| 11 |
|
|---|
| 12 |
This distribution may include materials developed by third parties. |
|---|
| 13 |
|
|---|
| 14 |
Sun, Sun Microsystems, the Sun logo and Java are trademarks or registered |
|---|
| 15 |
trademarks of Sun Microsystems, Inc. in the U.S. and other countries. |
|---|
| 16 |
******************************************************************************) |
|---|
| 17 |
|
|---|
| 18 |
native component TestNative |
|---|
| 19 |
export TestNative |
|---|
| 20 |
|
|---|
| 21 |
language="java" |
|---|
| 22 |
package="com.sun.fortress.interpreter.glue.test" |
|---|
| 23 |
|
|---|
| 24 |
object TNFoo[\nat n\](s:String) |
|---|
| 25 |
bar():String = "" doit() |
|---|
| 26 |
doit():String = builtinPrimitive("com.sun.fortress.interpreter.glue.test.TNFoo$bar") |
|---|
| 27 |
end |
|---|
| 28 |
|
|---|
| 29 |
end |
|---|