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