jdk/test/javax/script/Test4.js
author mchung
Mon, 27 Oct 2014 13:45:39 -0700
changeset 27260 8d82d0e9556b
parent 2 90ce3da70b43
permissions -rw-r--r--
8043277: Update jdk regression tests to extend the default security policy instead of override Reviewed-by: alanb, mullan, chegar, sla

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

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