(...args)
| 16 | module.exports = (CLAView = (function () { |
| 17 | CLAView = class CLAView extends RootView { |
| 18 | constructor (...args) { |
| 19 | super(...args) |
| 20 | this.onAgreeSucceeded = this.onAgreeSucceeded.bind(this) |
| 21 | this.onAgreeFailed = this.onAgreeFailed.bind(this) |
| 22 | } |
| 23 | |
| 24 | static initClass () { |
| 25 | this.prototype.id = 'cla-view' |
nothing calls this directly
no outgoing calls
no test coverage detected