(transformOptions: TransformOptions, transformOptionsKey: string)
| 405 | } |
| 406 | |
| 407 | _getCacheProps(transformOptions: TransformOptions, transformOptionsKey: string) { |
| 408 | const sourceCode = this._readSourceCode(); |
| 409 | const getTransformCacheKey = this._getTransformCacheKey; |
| 410 | return { |
| 411 | filePath: this.path, |
| 412 | sourceCode, |
| 413 | getTransformCacheKey, |
| 414 | transformOptions, |
| 415 | transformOptionsKey, |
| 416 | cacheOptions: { |
| 417 | resetCache: this._options.resetCache, |
| 418 | reporter: this._reporter, |
| 419 | }, |
| 420 | }; |
| 421 | } |
| 422 | |
| 423 | hash() { |
| 424 | return `Module : ${this.path}`; |
no test coverage detected