| 12345678910111213 |
- function BinaryObjectReader() {
- Object.defineProperties(this, {
- 'success': { enumerable: true, configurable: true, get: BinaryObjectReader.prototype.__get_success, set: BinaryObjectReader.prototype.__set_success}
- })
- }
- BinaryObjectReader.prototype.__get_success = function() {
- return Polycode.BinaryObjectReader__get_success(this.__ptr)
- }
- BinaryObjectReader.prototype.__set_success = function(val) {
- Polycode.BinaryObjectReader__set_success(this.__ptr, val)
- }
|