Sha256: e9f62f27c916f4dabb4f9e9b351cd5f323569807d544021c57b3c0f4e2493ad9
Contents?: true
Size: 337 Bytes
Versions: 71
Compression:
Stored size: 337 Bytes
Contents
// testing circular borrows /** @class @borrows Bar#zop as this.my_zop */ function Foo() { /** this is a zip. */ this.zip = function() {} this.my_zop = new Bar().zop; } /** @class @borrows Foo#zip as this.my_zip */ function Bar() { /** this is a zop. */ this.zop = function() {} this.my_zip = new Foo().zip; }
Version data entries
71 entries across 71 versions & 2 rubygems