Closed taka2 closed 11 years ago
現在: Sub.prototype = Super.prototype
修正後: Sub.prototype = Object.create(Super.prototype); Sub.prototype.constructor = Sub;
上記の通り、継承方法を変更した。 対象: AdoAccessConnection AdoOdbcConnection AdoOracleConnection
現在: Sub.prototype = Super.prototype
修正後: Sub.prototype = Object.create(Super.prototype); Sub.prototype.constructor = Sub;