mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
08166cb99a
This is to ensure that it is evaluated the same way it would be if it were to be run by node or required. Before, the following would pass if run by node, but fail if run via the syntax check flag: if (true) { return; } Now, this will pass the syntax check PR-URL: https://github.com/nodejs/node/pull/3587 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
4 lines
24 B
JavaScript
4 lines
24 B
JavaScript
if (true) {
|
|
return;
|
|
}
|