9 // this is a bit twisted, but if you call Foo() you will then
10 // modify Foo(). This is kinda, sorta non-insane, because you
11 // would have to call Foo() 100% of the time to use Foo's methods
12 Foo
.prototype.methodOne
= function(bar
) {
17 Foo
.prototype.methodTwo
= function(bar2
) {
21 // and these are only executed if the enclosing function is actually called
22 // and who knows if that will ever happen?
26 Zop
.prototype.zap
= function(p
){
30 // but this is only visible inside Foo