jdk/test/javax/script/Test4.js
author ohair
Mon, 04 Jan 2010 15:45:30 -0800
changeset 4660 913e357c2e08
parent 2 90ce3da70b43
permissions -rw-r--r--
6911112: Tests do not work with CYGWIN: javax/imageio/, javax/script/, and sun/misc/ Reviewed-by: tbell, alanb

function run() {
    print("global run method");
}

var intfObj = {
    run: function() { print("object run method"); }
};