()
| 122 | virtual: { |
| 123 | type: new DataTypes.VIRTUAL(DataTypes.BOOLEAN, ['num']), |
| 124 | get() { |
| 125 | return this.getDataValue('num') + 2; |
| 126 | }, |
| 127 | set(value: number) { |
| 128 | this.setDataValue('num', value - 2); |
| 129 | } |
nothing calls this directly
no test coverage detected