(isEq: boolean, rval: unknown)
| 195 | private _rvalTypeof: string; |
| 196 | private _rvalFloat: number; |
| 197 | constructor(isEq: boolean, rval: unknown) { |
| 198 | this._rval = rval; |
| 199 | this._isEQ = isEq; |
| 200 | this._rvalTypeof = typeof rval; |
| 201 | this._rvalFloat = numericToNumber(rval); |
| 202 | } |
| 203 | // Performance sensitive. |
| 204 | evaluate(lval: unknown): boolean { |
| 205 | let eqResult = lval === this._rval; |
nothing calls this directly
no test coverage detected