(model, name, isStatic)
| 64 | } |
| 65 | |
| 66 | _getMethodHandler(model, name, isStatic) { |
| 67 | console.log(`Getting method handler ${model}/${name} (${isStatic ? "static" : "instance"})`) |
| 68 | return this._getList(isStatic)[model][name]; |
| 69 | } |
| 70 | |
| 71 | _registerMethodHandler(model, name, isStatic, handler) { |
| 72 | if(!this._getList(isStatic)[model]) this._getList(isStatic)[model] = []; |
no test coverage detected