blob: 40db84a0a9bfe3a7fa53492116189eb4400593a3 [file] [log] [blame]
function foo() {
}
print(foo.toString())
print(foo.__proto__)
print(foo.prototype)
//foo.prototype.xx = function() {
// print("got xx")
//}
//f = new foo
//f.xx()