(value)
| 189 | return this._prefix + this._code + this._suffix; |
| 190 | }, |
| 191 | set(value) { |
| 192 | const strNewCode = String(value); |
| 193 | if (strNewCode === this._code && this._prefix === '' && this._suffix === '') return; |
| 194 | this._code = strNewCode; |
| 195 | this._prefix = ''; |
| 196 | this._suffix = ''; |
| 197 | this._compiledVM = null; |
| 198 | this._compiledNodeVM = null; |
| 199 | this._compiledCode = null; |
| 200 | }, |
| 201 | enumerable: true |
| 202 | }, |
| 203 | filename: { |
no outgoing calls
no test coverage detected