summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/sca/container.js/src/test/resources/org/apache/tuscany/container/js/rhino/RhinoInvokerTestCase.js
diff options
context:
space:
mode:
Diffstat (limited to 'tags/java-stable-20060304/sca/container.js/src/test/resources/org/apache/tuscany/container/js/rhino/RhinoInvokerTestCase.js')
-rw-r--r--tags/java-stable-20060304/sca/container.js/src/test/resources/org/apache/tuscany/container/js/rhino/RhinoInvokerTestCase.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/tags/java-stable-20060304/sca/container.js/src/test/resources/org/apache/tuscany/container/js/rhino/RhinoInvokerTestCase.js b/tags/java-stable-20060304/sca/container.js/src/test/resources/org/apache/tuscany/container/js/rhino/RhinoInvokerTestCase.js
deleted file mode 100644
index 2de740d5f8..0000000000
--- a/tags/java-stable-20060304/sca/container.js/src/test/resources/org/apache/tuscany/container/js/rhino/RhinoInvokerTestCase.js
+++ /dev/null
@@ -1,22 +0,0 @@
-
-function echo(x) {
- return x;
-}
-
-function getA(x) {
- return a;
-}
-
-function setGlobalVarY(x) {
- y = x;
-}
-function setLocalVarY(x) {
- var y = x;
-}
-function getGlobalVarY(x) {
- return y;
-}
-
-function getInt(x) {
- return 42;
-}