(childCtor, parentCtor)
| 132 | |
| 133 | |
| 134 | function Inherits(childCtor, parentCtor) { |
| 135 | function tempCtor() {}; |
| 136 | tempCtor.prototype = parentCtor.prototype; |
| 137 | childCtor.superClass_ = parentCtor.prototype; |
| 138 | childCtor.prototype = new tempCtor(); |
| 139 | childCtor.prototype.constructor = childCtor; |
| 140 | }; |
| 141 | |
| 142 | |
| 143 | (function testCallTreeBuilding() { |