Sha256: 16f6bd53636814135705e8ff64e4538d0968c74cef868931aab3f770ed6e0b7a
Contents?: true
Size: 341 Bytes
Versions: 71
Compression:
Stored size: 341 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
71 entries across 71 versions & 2 rubygems