<!-- Thank you for reporting a possible bug in Node.js. Please fill in as much of the template below as you can. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify the affected core module name If possible, please provide code that demonstrates the problem, keeping it as simple and free of external dependencies as you can. --> * **Version**: 11.3.0 * **Platform**:win 7 (64) * **Subsystem**: <!-- Please provide more details below this comment. --> I just wondering if this lack of isolation is expected: ``` new Worker(`process.env.FOO = 123`, { eval: true }); new Worker(`console.log(process.env.FOO)`, { eval: true }); // prints 123 ```